input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "THUS, THAT FIRE WARMED A MAN, MADE LEAD FLUID, AND CHANGED THE COLOUR OR CONSISTENCY IN WOOD OR CHARCOAL;", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/12240.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6f5f5444-1422-495f-81ef-24cefd61ed2c", "queryName" : "Password Without Reuse Prevention", "severity" : "MEDIUM", "category" : "Best Practices", "descriptionText" : "Password policy `password_reuse_prevention` doesn't exist or is equal to 0", "descriptionUrl" : "https://docs.ansible.com/ansible/latest/collections/community/aws/iam_password_policy_module.html#parameter-pw_reuse_prevent", "platform" : "Ansible"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required": ["method", "path", "handler", "config"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"routes" : [{"method" : "GET", "path" : "/product-kinds", "handler" : "product-kind.find", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/product-kinds/count", "handler" : "product-kind.count", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/product-kinds/:id", "handler" : "product-kind.findOne", "config" : {"policies" : []}}, {"method" : "POST", "path" : "/product-kinds", "handler" : "product-kind.create", "config" : {"policies" : []}}, {"method" : "PUT", "path" : "/product-kinds/:id", "handler" : "product-kind.update", "config" : {"policies" : []}}, {"method" : "DELETE", "path" : "/product-kinds/:id", "handler" : "product-kind.delete", "config" : {"policies" : []}}]} | json_instruct | {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required": ["method", "path", "handler", "config"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"date": {"type": "string"}, "server": {"type": "string"}, "upgrade": {"type": "string"}, "connection": {"type": "string"}, "last-modified": {"type": "string"}, "etag": {"type": "string"}, "accept-ranges": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["date", "server", "upgrade", "connection", "last-modified", "etag", "accept-ranges", "content-length", "content-type"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200822347919000, "key" : "create-remote-file-node-https://www.financial-talk.com/wp-content/uploads/2019/05/favicon.ico", "val" : {"date" : "Wed, 04 Sep 2019 14:23:54 GMT", "server" : "Apache/2.4.39 (cPanel) OpenSSL/1.0.2r mod_bwlimited/1.4 Phusion_Passenger/5.3.7", "upgrade" : "h2,h2c", "connection" : "Upgrade, close", "last-modified" : "Tue, 28 May 2019 05:28:00 GMT", "etag" : "\"35408e6-47e-589ebed9e87c7\"", "accept-ranges" : "bytes", "content-length" : "1150", "content-type" : "image/x-icon"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"date": {"type": "string"}, "server": {"type": "string"}, "upgrade": {"type": "string"}, "connection": {"type": "string"}, "last-modified": {"type": "string"}, "etag": {"type": "string"}, "accept-ranges": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["date", "server", "upgrade", "connection", "last-modified", "etag", "accept-ranges", "content-length", "content-type"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3207211008", "district_id" : "3207211", "name" : "JELAT"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"p": {"type": "string"}}, "required": ["p"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : {"0" : {"p" : "\u0627\u0632 \u0645\u0631\u062f \u062f\u0632\u062f \u0647\u06cc\u0686 \u0686\u06cc\u0632 \u0645\u06af\u06cc\u0631 \u0648 \u0645\u062f\u0647 \u0648 \u0627\u06cc\u0634\u0627\u0646 \u0631\u0627 \u0633\u062a\u0648\u0647 \u0645\u06a9\u0646."}, "1" : {"m1" : "\u0645\u06a9\u0646 \u0647\u06cc\u0686 \u0628\u0627 \u062f\u0632\u062f \u062f\u0627\u062f \u0648 \u0633\u062a\u062f", "m2" : "\u06a9\u0632\u06cc\u0646 \u062f\u0627\u062f \u0648 \u0627\u0633\u062a\u062f \u062a\u0631\u0627 \u0628\u062f \u0631\u0633\u062f"}, "2" : {"m1" : "\u0632 \u0628\u06cc\u062f\u0627\u062f \u06a9\u0648\u062a\u0627\u0647 \u06a9\u0646 \u062f\u0633\u062a \u062f\u0632\u062f", "m2" : "\u0686\u0646\u06cc\u0646 \u0627\u0633\u062a \u0641\u0631\u0645\u0648\u062f\u0647\u0654 \u0627\u0648\u0631\u0645\u0632\u062f"}}} | json_instruct | {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"p": {"type": "string"}}, "required": ["p"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1", "2"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1190603, "stationGroupId" : 1161237, "name" : "\u9580\u53f8", "lineId" : 11906, "zipCode" : "800-0039", "pref" : "\u798f\u5ca1\u770c", "city" : "\u5317\u4e5d\u5dde\u5e02\u9580\u53f8\u533a", "town" : "\u4e2d\u753a", "longitude" : 130.933438, "latitude" : 33.904309, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Name" : "samsung_browser_sop_bypass.rb", "Title" : "Samsung Internet Browser SOP Bypass", "Description" : "This module takes advantage of a Same-Origin Policy (SOP) bypass vulnerability in the Samsung Internet Browser, a popular mobile browser shipping with Samsung Android devices. By default, it initiates a redirect to a child tab, and rewrites the innerHTML to gather credentials via a fake pop-up.", "CveIDs" : ["CVE-2017-17692"], "References" : ["http://fr.0day.today/exploit/description/28434", "https://github.com/rapid7/metasploit-framework/blob/master/modules/auxiliary/gather/samsung_browser_sop_bypass.rb"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"RescueIntroduction": {"type": "array", "items": {"type": "string"}}}, "required": ["RescueIntroduction"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"RescueIntroduction" : ["EstablishingCharacterMoment", "RescueRomance", "RecruitmentByRescue", "ComeWithMeIfYouWantToLive", "TheCavalry", "BigDamnHeroes", "BridalCarry", "PlayedForLaughs", "RunningGag", "BookEnds", "JapaneseDelinquents", "EstablishingCharacterMoment", "GentleGiant", "CatchPhrase", "QuicksandSucks", "ItMakesSenseInContext", "NewOldFlame", "DefrostingIceQueen", "BoxedCrook", "PeopleJars", "GunshipRescue", "TheMole", "PlayerCharacter", "RecruitmentByRescue", "UndyingLoyalty", "ComplainingAboutRescuesTheyDontLike", "RescueRomance", "RescueRomance", "TakeOverTheWorld", "ParachuteInATree", "RetGone", "SpaceTimeEater", "BoxedCrook", "PeopleJars", "GunshipRescue", "TheMole", "PlayerCharacter", "RecruitmentByRescue", "UndyingLoyalty", "ComplainingAboutRescuesTheyDontLike", "BoyfriendBluff", "DynamicEntry", "ComplainingAboutRescuesTheyDontLike", "BigDamnHeroes", "AntiHero"]} | json_instruct | {"type": "object", "properties": {"RescueIntroduction": {"type": "array", "items": {"type": "string"}}}, "required": ["RescueIntroduction"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "B\u00e9thelainville", "circ" : "2\u00e8me circonscription", "dpt" : "Meuse", "inscrits" : 156, "abs" : 92, "votants" : 64, "blancs" : 5, "nuls" : 3, "exp" : 56, "res" : [{"nuance" : "REM", "nom" : "Mme Emilie CARIOU", "voix" : 28}, {"nuance" : "FN", "nom" : "M. Eric VILAIN", "voix" : 28}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "This module is designed for doing a general survey on chosen topics in Chinese Literature depending on the specialty of the instructor. Most likely the topic will change from year to year.", "title" : "Topics in Chinese Literature 1", "department" : "Chinese Studies", "faculty" : "Arts and Social Science", "workload" : [2, 1, 0, 2, 5], "prerequisite" : "Must obtain:\n1) at least a B4 for (a) Higher Chinese at GCE \u2018O\u2019 level, or (b) Chinese Language at GCE \u2018AO\u2019 level (at GCE \u2018A\u2019 level examination); OR\n2) at least a pass for (a) Chinese at GCE \u2018A\u2019 level, or (b) Higher Chinese at GCE \u2018A\u2019 level; OR\n3) at least C grade for Chinese Language (H1CL) at GCE \u2018A\u2019 level; OR\n4) at least a pass for (a) Chinese Language and Literature (H2CLL) at GCE \u2018A\u2019 level, or (b) Chinese Language and Literature (H3CLL) at GCE \u2018A\u2019 level.\n5) Equivalent qualifications may be accepted.", "moduleCredit" : "4", "moduleCode" : "CH3881", "semesterData" : []} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "string"}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "semesterData": {"type": "array", "items": {}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "prerequisite", "moduleCredit", "moduleCode", "semesterData"], "$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#"}
| [[1890, 6], [1898, 7], [1899, 6], [1904, 5], [1905, 5], [1906, 6], [1908, 5], [1909, 8], [1910, 6], [1912, 6], [1913, 18], [1914, 18], [1915, 10], [1916, 15], [1917, 17], [1918, 14], [1919, 16], [1920, 22], [1921, 10], [1922, 19], [1923, 9], [1924, 22], [1925, 20], [1926, 12], [1927, 15], [1928, 14], [1929, 23], [1930, 12], [1931, 16], [1932, 9], [1933, 13], [1934, 14], [1935, 6], [1936, 6], [1937, 10], [1938, 6], [1939, 7], [1940, 9], [1942, 9], [1943, 11], [1944, 5], [1945, 5], [1948, 5], [1949, 5], [1950, 6], [1955, 5], [1956, 5]] | 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": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Treize-Septiers", "circ" : "4\u00e8me circonscription", "dpt" : "Vend\u00e9e", "inscrits" : 2316, "abs" : 1115, "votants" : 1201, "blancs" : 27, "nuls" : 15, "exp" : 1159, "res" : [{"nuance" : "REM", "nom" : "Mme Martine LEGUILLE-BALLOY", "voix" : 480}, {"nuance" : "UDI", "nom" : "M. Wilfrid MONTASSIER", "voix" : 366}, {"nuance" : "FN", "nom" : "Mme Denise VICENT\u00c9", "voix" : 103}, {"nuance" : "FI", "nom" : "Mme Anita LAVERGNE", "voix" : 95}, {"nuance" : "ECO", "nom" : "Mme Claudine GOICHON", "voix" : 41}, {"nuance" : "COM", "nom" : "Mme Marie-Fran\u00e7oise MICHENAUD", "voix" : 35}, {"nuance" : "DVD", "nom" : "Mme Caroline ROUILLIER", "voix" : 17}, {"nuance" : "DIV", "nom" : "Mme Tiphaine PERRIER", "voix" : 12}, {"nuance" : "EXG", "nom" : "Mme Claude BOUR", "voix" : 10}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"an1.140:0.1": {"type": "string"}, "an1.140:0.2": {"type": "string"}, "an1.140:0.3": {"type": "string"}, "an1.140:1.0": {"type": "string"}, "an1.140:1.1": {"type": "string"}, "an1.140:1.2": {"type": "string"}, "an1.140:1.3": {"type": "string"}, "an1.141:1.0": {"type": "string"}, "an1.141:1.1": {"type": "string"}, "an1.141:1.2": {"type": "string"}, "an1.141:1.3": {"type": "string"}, "an1.142-149:1.0": {"type": "string"}, "an1.142-149:1.1": {"type": "string"}, "an1.142-149:1.2": {"type": "string"}, "an1.142-149:1.3": {"type": "string"}, "an1.142-149:1.4": {"type": "string"}, "an1.142-149:1.5": {"type": "string"}}, "required": ["an1.140:0.1", "an1.140:0.2", "an1.140:0.3", "an1.140:1.0", "an1.140:1.1", "an1.140:1.2", "an1.140:1.3", "an1.141:1.0", "an1.141:1.1", "an1.141:1.2", "an1.141:1.3", "an1.142-149:1.0", "an1.142-149:1.1", "an1.142-149:1.2", "an1.142-149:1.3", "an1.142-149:1.4", "an1.142-149:1.5"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an1.140:0.1" : "<section class='range' id='140-149'><header><ul><li class='division'>{}</li>", "an1.140:0.2" : "<li>{}</li></ul>", "an1.140:0.3" : "<h1 class='range-title'>{}</h1></header>", "an1.140:1.0" : "<article id='an1.140'><h2 class='sutta-title'>{}</h2>", "an1.140:1.1" : "<p>{}", "an1.140:1.2" : "{}</p>", "an1.140:1.3" : "<p class='endsection'>{}</p></article>", "an1.141:1.0" : "<article id='an1.141'><h2 class='sutta-title'>{}</h2>", "an1.141:1.1" : "<p>{}", "an1.141:1.2" : "{}</p>", "an1.141:1.3" : "<p class='endsection'>{}</p></article>", "an1.142-149:1.0" : "<article id='an1.142-149'><h2 class='sutta-title'>{}</h2>", "an1.142-149:1.1" : "<p>{}", "an1.142-149:1.2" : "{}", "an1.142-149:1.3" : "{}</p>", "an1.142-149:1.4" : "<p class='endsection'>{}</p>", "an1.142-149:1.5" : "<p class='endsection'>{}</p></article></section>"} | json_instruct | {"type": "object", "properties": {"an1.140:0.1": {"type": "string"}, "an1.140:0.2": {"type": "string"}, "an1.140:0.3": {"type": "string"}, "an1.140:1.0": {"type": "string"}, "an1.140:1.1": {"type": "string"}, "an1.140:1.2": {"type": "string"}, "an1.140:1.3": {"type": "string"}, "an1.141:1.0": {"type": "string"}, "an1.141:1.1": {"type": "string"}, "an1.141:1.2": {"type": "string"}, "an1.141:1.3": {"type": "string"}, "an1.142-149:1.0": {"type": "string"}, "an1.142-149:1.1": {"type": "string"}, "an1.142-149:1.2": {"type": "string"}, "an1.142-149:1.3": {"type": "string"}, "an1.142-149:1.4": {"type": "string"}, "an1.142-149:1.5": {"type": "string"}}, "required": ["an1.140:0.1", "an1.140:0.2", "an1.140:0.3", "an1.140:1.0", "an1.140:1.1", "an1.140:1.2", "an1.140:1.3", "an1.141:1.0", "an1.141:1.1", "an1.141:1.2", "an1.141:1.3", "an1.142-149:1.0", "an1.142-149:1.1", "an1.142-149:1.2", "an1.142-149:1.3", "an1.142-149:1.4", "an1.142-149:1.5"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "logo": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id", "links", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "INPA Coin", "type" : "BEP20", "symbol" : "INPA", "decimals" : 18, "website" : "https://inpacoin.com/", "description" : "INPA Coin (International Non-Fungible permanent asset) is an Autonomous yield and Liquidity generation protocol", "explorer" : "https://bscscan.com/token/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0", "status" : "active", "id" : "0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0", "links" : [{"name" : "twitter", "url" : "https://twitter.com/inpacoin2021"}, {"name" : "telegram", "url" : "https://t.me/inpacoinofficial"}, {"name" : "facebook", "url" : "https://facebook.com/inpacoinofficial"}, {"name" : "github", "url" : "https://github.com/INPACOINOfficial"}], "logo" : "ipfs://QmVwPKfaYTWqcAVcTbVNMvc6arvq82cQoTCHd5xfQR87Vu/smartchain/assets/0xD9CBc18e554Aec0d99E9D99324dECC9b4b473af0/logo.png"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}, "logo": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id", "links", "logo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/marble_brick_capital_down_flat"} | 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": "object", "properties": {"1508279-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "years"]}, "1508281-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "years"]}}, "required": ["1508279-a", "1508281-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"1508279-a" : {"width" : 434, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/1508279-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/1508279-a.jpg", "title" : "68th Street (East) #35", "date" : "", "text" : null, "folder" : "68th Street (East) #35, Manhattan, NY", "height" : 600, "years" : [""]}, "1508281-a" : {"width" : 489, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/1508281-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/1508281-a.jpg", "title" : "68th Street (East) #45-49", "date" : "", "text" : null, "folder" : "68th Street (East) #45-49, Manhattan, NY", "height" : 600, "years" : [""]}} | json_instruct | {"type": "object", "properties": {"1508279-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "years"]}, "1508281-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "null"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "years"]}}, "required": ["1508279-a", "1508281-a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "comment": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["tslib", "typescript"]}}, "required": ["description", "comment", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Package versions used by schematics.", "comment" : "This file is needed so that depedencies are synced by Renovate.", "private" : true, "dependencies" : {"tslib" : "^2.3.1", "typescript" : "^4.4.3"}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "comment": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"tslib": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["tslib", "typescript"]}}, "required": ["description", "comment", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"1": {"type": "object", "properties": {"cell": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "ctime": {"type": "number"}, "masses": {"type": "array", "items": {"type": "number"}}, "mtime": {"type": "number"}, "numbers": {"type": "array", "items": {"type": "integer"}}, "pbc": {"type": "array", "items": {"type": "boolean"}}, "positions": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "tags": {"type": "array", "items": {"type": "integer"}}, "unique_id": {"type": "string"}, "user": {"type": "string"}}, "required": ["cell", "ctime", "masses", "mtime", "numbers", "pbc", "positions", "tags", "unique_id", "user"]}, "ids": {"type": "array", "items": {"type": "integer"}}, "nextid": {"type": "integer"}}, "required": ["1", "ids", "nextid"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"1" : {"cell" : [[4.134616409248544, 0.0, 0.0], [2.067308195529848, 3.580682840062568, 0.0], [0.0, 0.0, 26.036738999999997]], "ctime" : 18.214253371612795, "masses" : [138.90547, 138.90547, 79.904, 79.904], "mtime" : 18.214253371612795, "numbers" : [57, 57, 35, 35], "pbc" : [true, true, false], "positions" : [[2.067308511679565, 1.193560791559333, -1.495422509246406], [4.134616093148821, 2.3871220485898297, 1.4954231009660495], [5.446833421047532e-24, 3.6734198463196485e-40, 3.4317957380556696], [1.5562381202992968e-24, 9.183549615799121e-41, -3.4317963297753127]], "tags" : [1, 2, 1, 2], "unique_id" : "7963b3968b65018b8a19b7cecc7efba9", "user" : "mounet"}, "ids" : [1], "nextid" : 2} | json_instruct | {"type": "object", "properties": {"1": {"type": "object", "properties": {"cell": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "ctime": {"type": "number"}, "masses": {"type": "array", "items": {"type": "number"}}, "mtime": {"type": "number"}, "numbers": {"type": "array", "items": {"type": "integer"}}, "pbc": {"type": "array", "items": {"type": "boolean"}}, "positions": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "tags": {"type": "array", "items": {"type": "integer"}}, "unique_id": {"type": "string"}, "user": {"type": "string"}}, "required": ["cell", "ctime", "masses", "mtime", "numbers", "pbc", "positions", "tags", "unique_id", "user"]}, "ids": {"type": "array", "items": {"type": "integer"}}, "nextid": {"type": "integer"}}, "required": ["1", "ids", "nextid"], "$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": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x4a176c0072a7e1b9414405e300de4b75fc9788f5c32af45c7e1e8a7788cf65ff", "parentHash" : "0x4d6de052bb99ded1a3a90bc803dceca888cba615b18d1ba93399e5892bf26f65", "number" : 65561, "timestamp" : 1439239127, "nonce" : "0xc5ab0e49267b2f75", "difficulty" : 1948261412326, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x6f2d"}, "miner" : "0x580992B51e3925e23280EfB93d3047C82f17E038", "extraData" : "0x476574682f76312e302e312f6c696e75782f676f312e342e32", "transactions" : [{"hash" : "0x4d7cd828b90a66f5995a8bd43865d12f3bb56b67804ee79946ac670ced1c0b4e", "blockHash" : "0x4a176c0072a7e1b9414405e300de4b75fc9788f5c32af45c7e1e8a7788cf65ff", "blockNumber" : 65561, "transactionIndex" : 0, "confirmations" : null, "from" : "0x976349705b839e2F5719387Fb27D2519d519da03", "gasPrice" : {"_hex" : "0xd34fd09e7"}, "gasLimit" : {"_hex" : "0x15f90"}, "to" : "0x125B606C67E8066Da65069652b656c19717745Fa", "value" : {"_hex" : "0x133d275819a559e"}, "nonce" : 2, "data" : "0xa55526db", "r" : "0x2e546e3987db05a96e00210e6f02fee2b2afd0698405404276754bcce0af3cf3", "s" : "0x61570f3e2b4fb47458324182929290a5fc4748fd6cf6bf65d761445284a65f3a", "v" : 28, "creates" : null, "raw" : "0xf87102850d34fd09e783015f9094125b606c67e8066da65069652b656c19717745fa880133d275819a559e84a55526db1ca02e546e3987db05a96e00210e6f02fee2b2afd0698405404276754bcce0af3cf3a061570f3e2b4fb47458324182929290a5fc4748fd6cf6bf65d761445284a65f3a", "networkId" : 0, "chainId" : 0}]} | 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": {"type": "object", "properties": {"hash": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "transactionIndex": {"type": "integer"}, "confirmations": {"type": "null"}, "from": {"type": "string"}, "gasPrice": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "nonce": {"type": "integer"}, "data": {"type": "string"}, "r": {"type": "string"}, "s": {"type": "string"}, "v": {"type": "integer"}, "creates": {"type": "null"}, "raw": {"type": "string"}, "networkId": {"type": "integer"}, "chainId": {"type": "integer"}}, "required": ["hash", "blockHash", "blockNumber", "transactionIndex", "confirmations", "from", "gasPrice", "gasLimit", "to", "value", "nonce", "data", "r", "s", "v", "creates", "raw", "networkId", "chainId"]}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "4414_cam-image_array_.jpg", "user/angle" : -0.186, "user/throttle" : 0.538, "user/mode" : "user", "pos/pos_x" : 48.146, "pos/pos_y" : 0.5554629, "pos/pos_z" : 38.26663, "pos/speed" : 10.87672, "pos/cte" : -1.22722, "milliseconds" : 236298} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"initiation_time": {"type": "string"}, "status": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "resource": {"type": "object", "properties": {"transaction_reference": {"type": "string"}, "origination_time": {"type": "string"}, "sender_msisdn": {"type": "string"}, "amount": {"type": "string"}, "currency": {"type": "string"}, "till_identifier": {"type": "string"}, "system": {"type": "string"}, "status": {"type": "string"}, "sender_first_name": {"type": "string"}, "sender_middle_name": {"type": "string"}, "sender_last_name": {"type": "string"}}, "required": ["transaction_reference", "origination_time", "sender_msisdn", "amount", "currency", "till_identifier", "system", "status", "sender_first_name", "sender_middle_name", "sender_last_name"]}, "errors": {"type": "array", "items": {}}}, "required": ["type", "resource", "errors"]}, "meta_data": {"type": "object", "properties": {"notes": {"type": "string"}, "reference": {"type": "string"}, "customer_id": {"type": "string"}}, "required": ["notes", "reference", "customer_id"]}, "_links": {"type": "object", "properties": {"callback_url": {"type": "string"}, "self": {"type": "string"}}, "required": ["callback_url", "self"]}}, "required": ["initiation_time", "status", "event", "meta_data", "_links"]}}, "required": ["id", "type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"id" : "d66d7354-19b6-4fd0-b917-df6c1bd44545", "type" : "incoming_payment", "attributes" : {"initiation_time" : "2020-02-03T13:32:33.515+03:00", "status" : "Received", "event" : {"type" : "Buygoods Transaction", "resource" : {"transaction_reference" : "1580725953", "origination_time" : "2020-02-03T13:32:33.899+03:00", "sender_msisdn" : "+254999999999", "amount" : "20000.0", "currency" : "KES", "till_identifier" : "444555", "system" : "Lipa Na MPESA", "status" : "Received", "sender_first_name" : "Joe", "sender_middle_name" : "null", "sender_last_name" : "Buyer"}, "errors" : []}, "meta_data" : {"notes" : "Payment for invoice 12345", "reference" : "123456", "customer_id" : "123456789"}, "_links" : {"callback_url" : "https://webhook.site/fa3645c6-7199-426a-8efa-98e7b754babb", "self" : "http://localhost:3000/api/v1/incoming_payments/d66d7354-19b6-4fd0-b917-df6c1bd44545"}}}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "attributes": {"type": "object", "properties": {"initiation_time": {"type": "string"}, "status": {"type": "string"}, "event": {"type": "object", "properties": {"type": {"type": "string"}, "resource": {"type": "object", "properties": {"transaction_reference": {"type": "string"}, "origination_time": {"type": "string"}, "sender_msisdn": {"type": "string"}, "amount": {"type": "string"}, "currency": {"type": "string"}, "till_identifier": {"type": "string"}, "system": {"type": "string"}, "status": {"type": "string"}, "sender_first_name": {"type": "string"}, "sender_middle_name": {"type": "string"}, "sender_last_name": {"type": "string"}}, "required": ["transaction_reference", "origination_time", "sender_msisdn", "amount", "currency", "till_identifier", "system", "status", "sender_first_name", "sender_middle_name", "sender_last_name"]}, "errors": {"type": "array", "items": {}}}, "required": ["type", "resource", "errors"]}, "meta_data": {"type": "object", "properties": {"notes": {"type": "string"}, "reference": {"type": "string"}, "customer_id": {"type": "string"}}, "required": ["notes", "reference", "customer_id"]}, "_links": {"type": "object", "properties": {"callback_url": {"type": "string"}, "self": {"type": "string"}}, "required": ["callback_url", "self"]}}, "required": ["initiation_time", "status", "event", "meta_data", "_links"]}}, "required": ["id", "type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"solution_size" : 4990, "ok" : true, "resemblance" : 0.662643, "problem_id" : 3369, "solution_spec_hash" : "6fc666295f4e236d8fc9114cbf62cf4b72d06a61"} | json_instruct | {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "english": {"type": "string"}, "his_relations": {"type": "object", "properties": {"bo": {"type": "integer"}, "hs1": {"type": "integer"}, "cw1": {"type": "integer"}, "hs2": {"type": "integer"}, "cw2": {"type": "integer"}}, "required": ["bo", "hs1", "cw1", "hs2", "cw2"]}, "my_relations": {"type": "array", "items": {"type": "object", "properties": {"member": {"type": "integer"}, "relation": {"type": "string"}}, "required": ["member", "relation"]}}, "variants": {"type": "array", "items": {"type": "object", "properties": {"hanji": {"type": "string"}, "imji": {"type": "string"}, "poj": {"type": "string"}, "taiji": {"type": "string"}}, "required": ["hanji", "imji", "poj", "taiji"]}}}, "required": ["id", "english", "his_relations", "my_relations", "variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 46, "english" : "mother's sister's husband", "his_relations" : {"bo" : 15, "hs1" : 47, "cw1" : 48, "hs2" : 49, "cw2" : 50}, "my_relations" : [{"member" : 1, "relation" : "ma"}, {"member" : 3, "relation" : "cm"}, {"member" : 15, "relation" : "ang"}], "variants" : [{"hanji" : "\u59e8\u4e08", "imji" : "\uc774\u02c6\u1103\u1167\u11eb-", "poj" : "\u00ee-ti\u014d\u0358\u207f", "taiji" : "ee3tnio33"}, {"hanji" : "\u59e8\u4e08", "imji" : "\uc774\u02c6\u1103\u11a4\u11eb-", "poj" : "\u00ee-ti\u0101u\u207f", "taiji" : "ee3tniau33"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "english": {"type": "string"}, "his_relations": {"type": "object", "properties": {"bo": {"type": "integer"}, "hs1": {"type": "integer"}, "cw1": {"type": "integer"}, "hs2": {"type": "integer"}, "cw2": {"type": "integer"}}, "required": ["bo", "hs1", "cw1", "hs2", "cw2"]}, "my_relations": {"type": "array", "items": {"type": "object", "properties": {"member": {"type": "integer"}, "relation": {"type": "string"}}, "required": ["member", "relation"]}}, "variants": {"type": "array", "items": {"type": "object", "properties": {"hanji": {"type": "string"}, "imji": {"type": "string"}, "poj": {"type": "string"}, "taiji": {"type": "string"}}, "required": ["hanji", "imji", "poj", "taiji"]}}}, "required": ["id", "english", "his_relations", "my_relations", "variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-05-29T19:00:00Z", "Temp" : 21.4, "RelHum" : 77, "WindSpeed" : 2, "WindDir" : 338} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["130927100000", "\u5357\u76ae\u9547", "4", "1"], ["130927101000", "\u51af\u5bb6\u53e3\u9547", "4", "1"], ["130927102000", "\u5be8\u5b50\u9547", "4", "1"], ["130927103000", "\u9c8d\u5b98\u5c6f\u9547", "4", "1"], ["130927104000", "\u738b\u5bfa\u9547", "4", "1"], ["130927105000", "\u4e4c\u9a6c\u8425\u9547", "4", "1"], ["130927200000", "\u5927\u6d6a\u6dc0\u4e61", "4", "1"], ["130927201000", "\u5218\u516b\u91cc\u4e61", "4", "1"], ["130927202000", "\u6f5e\u704c\u4e61", "4", "1"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"bigssh": {"type": "object", "properties": {"label": {"type": "object", "properties": {"nodelabel": {"type": "string"}, "name": {"type": "string"}, "deletelabel": {"type": "string"}, "nopayload": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "user": {"type": "string"}, "privateKey": {"type": "string"}, "passphrase": {"type": "string"}, "commandLine": {"type": "string"}, "generator": {"type": "string"}, "credentials": {"type": "string"}, "noStdin": {"type": "string"}, "payloadIsArg": {"type": "string"}, "minError": {"type": "string"}, "minWarning": {"type": "string"}, "minWarningWM": {"type": "string"}, "minErrorWM": {"type": "string"}, "format": {"type": "string"}, "line_encoding": {"type": "string"}, "line_encoding_utf8": {"type": "string"}, "line_encoding_ascii": {"type": "string"}, "line_encoding_base64": {"type": "string"}, "line_encoding_binary": {"type": "string"}, "line_encoding_hex": {"type": "string"}, "line_encoding_ucs2": {"type": "string"}}, "required": ["nodelabel", "name", "deletelabel", "nopayload", "host", "port", "user", "privateKey", "passphrase", "commandLine", "generator", "credentials", "noStdin", "payloadIsArg", "minError", "minWarning", "minWarningWM", "minErrorWM", "format", "line_encoding", "line_encoding_utf8", "line_encoding_ascii", "line_encoding_base64", "line_encoding_binary", "line_encoding_hex", "line_encoding_ucs2"]}}, "required": ["label"]}}, "required": ["bigssh"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bigssh" : {"label" : {"nodelabel" : "Big SSH", "name" : "Name", "deletelabel" : "delete __file__", "nopayload" : "Payload is never a filename", "host" : "Host", "port" : "Port", "user" : "Username", "privateKey" : "Private Key Path", "passphrase" : "Pass phrase, if any", "commandLine" : "Command", "generator" : "Stdin from a file", "credentials" : "Credentials", "noStdin" : "Do not send payload to the command", "payloadIsArg" : "Payload is an argument", "minError" : "Min error code", "minWarning" : "Min warning code", "minWarningWM" : "warn", "minErrorWM" : "error", "format" : "Consider stdout as", "line_encoding" : "encoding", "line_encoding_utf8" : "utf8", "line_encoding_ascii" : "ascii", "line_encoding_base64" : "base64", "line_encoding_binary" : "binary (latin-1)", "line_encoding_hex" : "hex (hexadecimal)", "line_encoding_ucs2" : "ucs2 (= uft16le)"}}} | json_instruct | {"type": "object", "properties": {"bigssh": {"type": "object", "properties": {"label": {"type": "object", "properties": {"nodelabel": {"type": "string"}, "name": {"type": "string"}, "deletelabel": {"type": "string"}, "nopayload": {"type": "string"}, "host": {"type": "string"}, "port": {"type": "string"}, "user": {"type": "string"}, "privateKey": {"type": "string"}, "passphrase": {"type": "string"}, "commandLine": {"type": "string"}, "generator": {"type": "string"}, "credentials": {"type": "string"}, "noStdin": {"type": "string"}, "payloadIsArg": {"type": "string"}, "minError": {"type": "string"}, "minWarning": {"type": "string"}, "minWarningWM": {"type": "string"}, "minErrorWM": {"type": "string"}, "format": {"type": "string"}, "line_encoding": {"type": "string"}, "line_encoding_utf8": {"type": "string"}, "line_encoding_ascii": {"type": "string"}, "line_encoding_base64": {"type": "string"}, "line_encoding_binary": {"type": "string"}, "line_encoding_hex": {"type": "string"}, "line_encoding_ucs2": {"type": "string"}}, "required": ["nodelabel", "name", "deletelabel", "nopayload", "host", "port", "user", "privateKey", "passphrase", "commandLine", "generator", "credentials", "noStdin", "payloadIsArg", "minError", "minWarning", "minWarningWM", "minErrorWM", "format", "line_encoding", "line_encoding_utf8", "line_encoding_ascii", "line_encoding_base64", "line_encoding_binary", "line_encoding_hex", "line_encoding_ucs2"]}}, "required": ["label"]}}, "required": ["bigssh"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"queryName" : "Log Profile Incorrect Category", "severity" : "MEDIUM", "line" : 22, "fileName" : "positive1.json"}, {"queryName" : "Log Profile Incorrect Category", "severity" : "MEDIUM", "line" : 24, "fileName" : "positive2.json"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Place the sun-dried tomatoes and white wine into a blender; puree until smooth, then pour into a saucepan. Stir in the barbeque sauce, sesame oil, hot pepper sauce, soy sauce, vinegar, honey, and cornstarch. Bring to a simmer over medium-high heat, then reduce heat to medium-low, and simmer for several minutes until thickened. Remove from heat, and allow to cool.", "While the marinade is cooling, pierce the chicken wings using a fork, and place into a mixing bowl. Toss the chicken wings with the garlic, chili powder, salt, and pepper. Pour the cooled marinade over the wings, and stir to coat. Cover, and refrigerate at least 2 hours.", "Preheat an outdoor grill for medium heat, and lightly oil the grate.", "Remove the chicken wings from the marinade, and shake off excess. Discard the remaining marinade. Cook the wings on the preheated grill until no longer pink at the bone, about 20 minutes. Turn the wings frequently as they cook to ensure even cooking. Place the cooked wings on a serving platter; squeeze the lime wedges over the wings, and sprinkle with sesame seeds to serve."], "ingredients" : ["2 sun-dried tomatoes", "1/4 cup white wine", "1/4 cup barbeque sauce", "1 teaspoon sesame oil", "1 tablespoon hot pepper sauce", "2 tablespoons soy sauce", "1 tablespoon distilled white vinegar", "1 tablespoon honey", "1 tablespoon cornstarch", "20 chicken wings", "2 teaspoons minced garlic", "1 teaspoon chili powder", "salt and pepper to taste", "1 lime, cut into wedges", "1 1/2 teaspoons sesame seeds"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Asian Twist Chicken Wings", "url" : "http://allrecipes.com/recipe/162598/asian-twist-chicken-wings/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"migrate": {"type": "string"}}, "required": ["migrate"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "pg-connection-string": {"type": "string"}, "postgres-migrations": {"type": "string"}}, "required": ["dotenv", "pg-connection-string", "postgres-migrations"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "forms-postgres-migrations", "version" : "0.1.0", "description" : "", "main" : "index.js", "scripts" : {"migrate" : "node index.js"}, "keywords" : [], "author" : "Bethany Dunfield", "dependencies" : {"dotenv" : "^10.0.0", "pg-connection-string" : "^2.5.0", "postgres-migrations" : "^5.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"migrate": {"type": "string"}}, "required": ["migrate"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "pg-connection-string": {"type": "string"}, "postgres-migrations": {"type": "string"}}, "required": ["dotenv", "pg-connection-string", "postgres-migrations"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"build.css": {"type": "string"}}, "required": ["build.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"build.css" : "sha256-39DoBDa4V3eZnPq+DB4WyBGxCzYQTQ8/wzM9tizzoX0="} | json_instruct | {"type": "object", "properties": {"build.css": {"type": "string"}}, "required": ["build.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"hue-button": {"type": "object", "properties": {"node": {"type": "object", "properties": {"not-configured": {"type": "string"}, "waiting": {"type": "string"}}, "required": ["not-configured", "waiting"]}}, "required": ["node"]}}, "required": ["hue-button"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hue-button" : {"node" : {"not-configured" : "not configured", "waiting" : "waiting\u2026"}}} | json_instruct | {"type": "object", "properties": {"hue-button": {"type": "object", "properties": {"node": {"type": "object", "properties": {"not-configured": {"type": "string"}, "waiting": {"type": "string"}}, "required": ["not-configured", "waiting"]}}, "required": ["node"]}}, "required": ["hue-button"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"azimuth": {"type": "string"}, "declination": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "modules power": {"type": "string"}, "name": {"type": "string"}}, "required": ["azimuth", "declination", "latitude", "longitude", "modules power", "name"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["user"]}}, "required": ["step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "azimuth": {"type": "string"}, "damping": {"type": "string"}, "declination": {"type": "string"}, "modules power": {"type": "string"}}, "required": ["api_key", "azimuth", "damping", "declination", "modules power"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"step" : {"user" : {"data" : {"azimuth" : "Azymut (360 stopni, 0 = P\u00f3\u0142noc, 90 = Wsch\u00f3d, 180 = Po\u0142udnie, 270 = Zach\u00f3d)", "declination" : "Deklinacja (0 = Poziomo, 90 = Pionowo)", "latitude" : "Szeroko\u015b\u0107 geograficzna", "longitude" : "D\u0142ugo\u015b\u0107 geograficzna", "modules power" : "Ca\u0142kowita moc szczytowa modu\u0142\u00f3w fotowoltaicznych w watach", "name" : "Nazwa"}, "description" : "Wpisz dane swoich paneli s\u0142onecznych. Prosz\u0119 zapozna\u0107 si\u0119 z dokumentacj\u0105, je\u015bli pole jest niejasne."}}}, "options" : {"step" : {"init" : {"data" : {"api_key" : "Klucz API dla Forecast.Solar (opcjonalnie)", "azimuth" : "Azymut (360 stopni, 0 = P\u00f3\u0142noc, 90 = Wsch\u00f3d, 180 = Po\u0142udnie, 270 = Zach\u00f3d)", "damping" : "Wsp\u00f3\u0142czynnik t\u0142umienia: dostosowuje wyniki rano i wieczorem", "declination" : "Deklinacja (0 = Poziomo, 90 = Pionowo)", "modules power" : "Ca\u0142kowita moc szczytowa modu\u0142\u00f3w fotowoltaicznych w watach"}, "description" : "Te warto\u015bci pozwalaj\u0105 dostosowa\u0107 wyniki dla Solar.Forecast. Prosz\u0119 zapozna\u0107 si\u0119 z dokumentacj\u0105, je\u015bli pole jest niejasne."}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"data": {"type": "object", "properties": {"azimuth": {"type": "string"}, "declination": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "modules power": {"type": "string"}, "name": {"type": "string"}}, "required": ["azimuth", "declination", "latitude", "longitude", "modules power", "name"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["user"]}}, "required": ["step"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"data": {"type": "object", "properties": {"api_key": {"type": "string"}, "azimuth": {"type": "string"}, "damping": {"type": "string"}, "declination": {"type": "string"}, "modules power": {"type": "string"}}, "required": ["api_key", "azimuth", "damping", "declination", "modules power"]}, "description": {"type": "string"}}, "required": ["data", "description"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : "gun_world9[2] (33)10196512", "IsStatic" : false, "useGravity" : false, "randomRotation" : false, "Position" : {"x" : -153.588013, "y" : -0.112, "z" : -74.9259949}, "Rotation" : {"x" : 8.53773656e-07, "y" : 345.980682, "z" : 270.1928}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "5ea2d1e386f7740d683933e3", "Items" : [{"_id" : "5ea2d1e386f7740d683933e3", "_tpl" : "59e6152586f77473dc057aa1"}, {"_id" : "5ea2d1e386f7740d683933e4", "_tpl" : "59e649f986f77411d949b246", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_gas_block"}, {"_id" : "5ea2d1e386f7740d683933e5", "_tpl" : "59e6284f86f77440d569536f", "parentId" : "5ea2d1e386f7740d683933e4", "slotId" : "mod_handguard"}, {"_id" : "5ea2d1e386f7740d683933e6", "_tpl" : "59e61eb386f77440d64f5daf", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_muzzle"}, {"_id" : "5ea2d1e386f7740d683933e7", "_tpl" : "59e6318286f77444dd62c4cc", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_pistol_grip"}, {"_id" : "5ea2d1e386f7740d683933e8", "_tpl" : "59e6449086f7746c9f75e822", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_reciever"}, {"_id" : "5ea2d1e386f7740d683933e9", "_tpl" : "59d650cf86f7741b846413a4", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_sight_rear"}, {"_id" : "5ea2d1e386f7740d683933ea", "_tpl" : "59e6227d86f77440d64f5dc2", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_stock"}, {"_id" : "5ea2d1e386f7740d683933eb", "_tpl" : "59d625f086f774661516605d", "parentId" : "5ea2d1e386f7740d683933e3", "slotId" : "mod_magazine"}, {"_id" : "5ea2d1e386f7740d683933ec", "_tpl" : "5656d7c34bdc2d9d198b4587", "parentId" : "5ea2d1e386f7740d683933eb", "slotId" : "cartridges", "upd" : {"StackObjectsCount" : 16}}]} | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "Rotation": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "IsGroupPosition": {"type": "boolean"}, "GroupPositions": {"type": "array", "items": {}}, "Root": {"type": "string"}, "Items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}}, "required": ["_id", "_tpl"]}}}, "required": ["Id", "IsStatic", "useGravity", "randomRotation", "Position", "Rotation", "IsGroupPosition", "GroupPositions", "Root", "Items"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "ignore", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular-filereader", "homepage" : "https://github.com/Siqu/angular-filereader", "authors" : ["Sebastian Paulmichl <[email protected]>"], "description" : "Wrapper for the FileReader API.", "main" : "./dist/angular-filereader.min.js", "moduleType" : ["angular"], "keywords" : ["angular", "FileReader"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"angular" : "~1.5.2"}, "devDependencies" : {"angular-mocks" : "^1.5.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}}, "required": ["angular"]}, "devDependencies": {"type": "object", "properties": {"angular-mocks": {"type": "string"}}, "required": ["angular-mocks"]}}, "required": ["name", "homepage", "authors", "description", "main", "moduleType", "keywords", "license", "ignore", "dependencies", "devDependencies"], "$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"}, "version": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "icon": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "main": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"antlr4ts": {"type": "string"}, "apex-parser": {"type": "string"}, "vf-parser": {"type": "string"}, "@xmldom/xmldom": {"type": "string"}}, "required": ["antlr4ts", "apex-parser", "vf-parser", "@xmldom/xmldom"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "fs-monkey": {"type": "string"}, "jest": {"type": "string"}, "memfs": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "fs-monkey", "jest", "memfs", "ts-jest", "typescript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "publisher", "repository", "author", "license", "bugs", "icon", "scripts", "main", "typings", "files", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pkgforce", "version" : "2.3.0", "description" : "Salesforce Metadata Management Utility Library", "publisher" : "KevinJones", "repository" : "nawforce/pkgforce", "author" : "Kevin Jones <[email protected]> (https://github.com/nawforce)", "license" : "BSD-3-Clause", "bugs" : "https://github.com/nawforce/pkgforce/issues", "icon" : "logo.png", "scripts" : {"build" : "tsc", "test" : "jest --config jestconfig.json lib"}, "main" : "lib/pkgforce.js", "typings" : "src/pkgforce.d.ts", "files" : ["src/pkgforce.d.ts"], "dependencies" : {"antlr4ts" : "0.5.0-alpha.4", "apex-parser" : "2.11.0", "vf-parser" : "1.0.0", "@xmldom/xmldom" : "0.7.5"}, "devDependencies" : {"@types/jest" : "^27.0.2", "fs-monkey" : "0.3.3", "jest" : "^27.2.5", "memfs" : "3.2.0", "ts-jest" : "^27.0.5", "typescript" : "^4.4.4"}, "engines" : {"node" : ">=8.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "string"}, "icon": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "main": {"type": "string"}, "typings": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"antlr4ts": {"type": "string"}, "apex-parser": {"type": "string"}, "vf-parser": {"type": "string"}, "@xmldom/xmldom": {"type": "string"}}, "required": ["antlr4ts", "apex-parser", "vf-parser", "@xmldom/xmldom"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "fs-monkey": {"type": "string"}, "jest": {"type": "string"}, "memfs": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "fs-monkey", "jest", "memfs", "ts-jest", "typescript"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "publisher", "repository", "author", "license", "bugs", "icon", "scripts", "main", "typings", "files", "dependencies", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "a37f3b332b7e7548a0a13511a0edf527536fed49"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"schematics": {"type": "object", "properties": {"rxjs-migration-01": {"type": "object", "properties": {"description": {"type": "string"}, "version": {"type": "string"}, "factory": {"type": "string"}}, "required": ["description", "version", "factory"]}}, "required": ["rxjs-migration-01"]}}, "required": ["schematics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schematics" : {"rxjs-migration-01" : {"description" : "Adds rxjs-compat package to the project to ensure compatability with RxJS 5", "version" : "6.0.0-rc.0", "factory" : "./update-6_0_0/index#rxjsV6MigrationSchematic"}}} | json_instruct | {"type": "object", "properties": {"schematics": {"type": "object", "properties": {"rxjs-migration-01": {"type": "object", "properties": {"description": {"type": "string"}, "version": {"type": "string"}, "factory": {"type": "string"}}, "required": ["description", "version", "factory"]}}, "required": ["rxjs-migration-01"]}}, "required": ["schematics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"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", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "title" : "\u2018Comeli magus\u2019", "id" : "383626", "bbox" : [9.224705, 45.043908, 9.224705, 45.043908], "description" : "An ancient place, cited: BAtlas 39 E3 \u2018Comeli magus\u2019", "connectsWith" : ["788760849"], "names" : ["Comeli magus", "Cameliomagus"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [9.224705, 45.043908]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [9.224705, 45.043908]}, "id" : "darmc-location-8024", "type" : "Feature", "properties" : {"description" : "500K scale point location", "location_precision" : "precise", "title" : "DARMC location 8024", "link" : "http://pleiades.stoa.org/places/383626/darmc-location-8024"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"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", "connectsWith", "names", "features"], "$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": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "CELINETTE", "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "morgan", "definition" : "One of a celebrated breed of American trotting horses; -- so called from the name of the stud from which the breed originated in Vermont."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : [422.078, 209.35, 0.860379, 462.521, 256.32, 0.805573, 432.57, 256.303, 0.878728, 423.429, 325.487, 0.71352, 412.901, 380.321, 0.876343, 487.338, 256.368, 0.761699, 495.151, 337.221, 0.741512, 474.217, 403.832, 0.776507, 433.826, 409.023, 0.58515, 0, 0, 0, 0, 0, 0, 479.5, 411.636, 0.499446, 0, 0, 0, 0, 0, 0, 422.069, 202.803, 0.330283, 429.914, 201.518, 0.871948, 0, 0, 0, 456.022, 202.759, 0.902324], "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" : []}, {"pose_keypoints_2d" : [142.77, 183.201, 0.936606, 108.886, 234.06, 0.907567, 67.0913, 230.21, 0.75112, 47.4584, 308.577, 0.84039, 90.5466, 352.888, 0.871987, 150.589, 234.163, 0.864916, 171.49, 291.534, 0.803262, 185.813, 321.555, 0.792172, 90.5642, 392.077, 0.549718, 0, 0, 0, 0, 0, 0, 149.312, 386.818, 0.633624, 0, 0, 0, 0, 0, 0, 133.646, 172.794, 0.886456, 147.953, 172.826, 0.663509, 102.284, 172.829, 0.851705, 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#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Emigrant", "state_name" : "Montana", "state_abbrv" : "MT", "lat" : "45.2708", "long" : "-110.7921"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"CORS": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "loginOrigin": {"type": "array", "items": {"type": "string"}}, "headers": {"type": "array", "items": {"type": "string"}}, "maxAge": {"type": "integer"}}, "required": ["origin", "loginOrigin", "headers", "maxAge"]}, "databases": {"type": "object", "properties": {"sample": {"type": "object", "properties": {"server": {"type": "string"}, "bucket": {"type": "string"}, "users": {"type": "object", "properties": {"alice": {"type": "object", "properties": {"disabled": {"type": "boolean"}, "password": {"type": "string"}, "admin_channels": {"type": "array", "items": {"type": "string"}}}, "required": ["disabled", "password", "admin_channels"]}, "bob": {"type": "object", "properties": {"disabled": {"type": "boolean"}, "password": {"type": "string"}, "admin_channels": {"type": "array", "items": {"type": "string"}}}, "required": ["disabled", "password", "admin_channels"]}}, "required": ["alice", "bob"]}}, "required": ["server", "bucket", "users"]}}, "required": ["sample"]}}, "required": ["CORS", "databases"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CORS" : {"origin" : ["*"], "loginOrigin" : ["*"], "headers" : ["Content-Type"], "maxAge" : 1728000}, "databases" : {"sample" : {"server" : "walrus:", "bucket" : "sample-sync", "users" : {"alice" : {"disabled" : false, "password" : "password", "admin_channels" : ["*"]}, "bob" : {"disabled" : false, "password" : "password", "admin_channels" : ["*"]}}}}} | json_instruct | {"type": "object", "properties": {"CORS": {"type": "object", "properties": {"origin": {"type": "array", "items": {"type": "string"}}, "loginOrigin": {"type": "array", "items": {"type": "string"}}, "headers": {"type": "array", "items": {"type": "string"}}, "maxAge": {"type": "integer"}}, "required": ["origin", "loginOrigin", "headers", "maxAge"]}, "databases": {"type": "object", "properties": {"sample": {"type": "object", "properties": {"server": {"type": "string"}, "bucket": {"type": "string"}, "users": {"type": "object", "properties": {"alice": {"type": "object", "properties": {"disabled": {"type": "boolean"}, "password": {"type": "string"}, "admin_channels": {"type": "array", "items": {"type": "string"}}}, "required": ["disabled", "password", "admin_channels"]}, "bob": {"type": "object", "properties": {"disabled": {"type": "boolean"}, "password": {"type": "string"}, "admin_channels": {"type": "array", "items": {"type": "string"}}}, "required": ["disabled", "password", "admin_channels"]}}, "required": ["alice", "bob"]}}, "required": ["server", "bucket", "users"]}}, "required": ["sample"]}}, "required": ["CORS", "databases"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}, "triggered=true": {"type": "string"}, "triggered=false": {"type": "string"}}, "required": ["all", "triggered=true", "triggered=false"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/cube_all", "textures" : {"all" : "survivalcommandblocks:blocks/command_block_firetick", "triggered=true" : "survivalcommandblocks:blocks/command_block_firetick", "triggered=false" : "survivalcommandblocks:blocks/command_block_firetick"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}, "triggered=true": {"type": "string"}, "triggered=false": {"type": "string"}}, "required": ["all", "triggered=true", "triggered=false"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "f8bef9657d1519a176c2", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Yemen, Rep. - Urban Development", "downloads" : 170, "tags" : ["development", "hxl", "indicators", "Yemen"], "hxl" : 1, "org" : "World Bank Group", "id" : "259a6bd8-15c2-4375-a4e8-5cea5ce55b84", "resources" : [{"update_date" : "2021-02-01T01:31:28.923250", "link" : "https://data.humdata.org/dataset/259a6bd8-15c2-4375-a4e8-5cea5ce55b84/resource/6666029d-0139-492e-a26d-6f9bab585e78/download/urban-development_yem.csv"}, {"update_date" : "2021-02-01T01:31:28.923250", "link" : "https://data.humdata.org/dataset/259a6bd8-15c2-4375-a4e8-5cea5ce55b84/resource/5ebad38d-3c8a-46cb-9745-7c985fc3a229/download/qc_urban-development_yem.csv"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"14859": {"type": "string"}, "14861": {"type": "string"}}, "required": ["14859", "14861"]}, "timeto": {"type": "object", "properties": {"14859": {"type": "number"}, "14861": {"type": "number"}}, "required": ["14859", "14861"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 14860, "title" : ["[Halcyon Hills, Fieldstone Steps]"], "description" : ["The trail ends at the foot of a tall course of weathered fieldstone steps, which winds up the bluff accompanied by large hostas and ferns. High above, a dense company of trees crowns the head of the precipice, bolstered by an impassable jumble of huge boulders and tangled blackberry thickets stretching down the incline."], "paths" : ["Obvious paths: south"], "location" : "Wehnimer's Landing", "wayto" : {"14859" : "south", "14861" : "go steps"}, "timeto" : {"14859" : 0.2, "14861" : 0.2}, "image" : "wl-halcyon_hills-1485363326.png", "image_coords" : [421, 169, 489, 218]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"14859": {"type": "string"}, "14861": {"type": "string"}}, "required": ["14859", "14861"]}, "timeto": {"type": "object", "properties": {"14859": {"type": "number"}, "14861": {"type": "number"}}, "required": ["14859", "14861"]}, "image": {"type": "string"}, "image_coords": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "description", "paths", "location", "wayto", "timeto", "image", "image_coords"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"votes" : {"diff" : 5714, "dem" : 7881, "tot" : 22514, "gop" : 13595}, "for" : "WI/Barron County/55005", "pct" : {"dem" : 35.0, "per_point_diff" : 25.38, "gop" : 60.38}} | json_instruct | {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "number"}, "per_point_diff": {"type": "number"}, "gop": {"type": "number"}}, "required": ["dem", "per_point_diff", "gop"]}}, "required": ["votes", "for", "pct"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "browser-router": {"type": "string"}, "formik": {"type": "string"}, "jose-jwe-jws": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "router": {"type": "string"}, "yup": {"type": "string"}}, "required": ["@material-ui/core", "@material-ui/icons", "browser-router", "formik", "jose-jwe-jws", "react", "react-dom", "react-router-dom", "router", "yup"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"@material-ui/core" : "^4.12.3", "@material-ui/icons" : "^4.11.2", "browser-router" : "^0.2.0", "formik" : "^2.2.9", "jose-jwe-jws" : "^0.2.2", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-router-dom" : "^5.2.1", "router" : "^1.3.5", "yup" : "^0.32.9"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"@material-ui/core": {"type": "string"}, "@material-ui/icons": {"type": "string"}, "browser-router": {"type": "string"}, "formik": {"type": "string"}, "jose-jwe-jws": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "router": {"type": "string"}, "yup": {"type": "string"}}, "required": ["@material-ui/core", "@material-ui/icons", "browser-router", "formik", "jose-jwe-jws", "react", "react-dom", "react-router-dom", "router", "yup"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"appsettings": {"type": "string"}, "changesite": {"type": "string"}, "help": {"type": "string"}, "logout": {"type": "string"}, "mycourses": {"type": "string"}, "togglemenu": {"type": "string"}, "website": {"type": "string"}}, "required": ["appsettings", "changesite", "help", "logout", "mycourses", "togglemenu", "website"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appsettings" : "Pode\u0161avanja aplikacije", "changesite" : "Promeni sajt", "help" : "Pomo\u0107", "logout" : "Odjava", "mycourses" : "Moji kursevi", "togglemenu" : "Uklju\u010di/isklju\u010di meni", "website" : "Veb sajt"} | json_instruct | {"type": "object", "properties": {"appsettings": {"type": "string"}, "changesite": {"type": "string"}, "help": {"type": "string"}, "logout": {"type": "string"}, "mycourses": {"type": "string"}, "togglemenu": {"type": "string"}, "website": {"type": "string"}}, "required": ["appsettings", "changesite", "help", "logout", "mycourses", "togglemenu", "website"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timestamp" : "2020-11-12T23:08:14Z", "data" : [{"data_type" : "pm10", "value" : "1.21", "max" : "3.00", "min" : "0.00", "sd" : "0.89"}, {"data_type" : "pm2.5", "value" : "0.79", "max" : "3.00", "min" : "0.00", "sd" : "0.97"}, {"data_type" : "pm1", "value" : "0.07", "max" : "1.00", "min" : "0.00", "sd" : "0.27"}, {"data_type" : "pm10", "value" : "1.00", "max" : "1.00", "min" : "1.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm2.5", "value" : "1.00", "max" : "1.00", "min" : "1.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "pm1", "value" : "1.00", "max" : "1.00", "min" : "1.00", "sd" : "0.00", "sensor" : 2}, {"data_type" : "noise", "value" : "34.21", "max" : "44.00", "min" : "28.92", "sd" : "1.50"}, {"data_type" : "illuminance", "value" : "119.05", "max" : "120.00", "min" : "118.00", "sd" : "0.37"}, {"data_type" : "irradiance", "value" : "0.00", "max" : "0.00", "min" : "0.00", "sd" : "0.00"}, {"data_type" : "temperature", "value" : "10.47", "max" : "10.49", "min" : "10.45", "sd" : "0.06"}, {"data_type" : "humidity", "value" : "85.01", "max" : "85.31", "min" : "84.78", "sd" : "0.26"}, {"data_type" : "presure", "value" : "690.93", "max" : "691.10", "min" : "690.82", "sd" : "0.15"}, {"data_type" : "voltage", "value" : "5.04", "max" : "5.04", "min" : "5.04", "sd" : "0.00"}, {"data_type" : "batery", "value" : "4.22", "max" : "4.23", "min" : "4.22", "sd" : "0.03"}, {"data_type" : "panel", "value" : "0.00", "max" : "0.01", "min" : "0.00", "sd" : "0.07"}]} | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max", "min", "sd"]}}}, "required": ["timestamp", "data"], "$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"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "6302040014", "district_id" : "6302040", "name" : "TELUK GOSONG"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [], "doi" : "", "publication_date" : "", "id" : "EU101409", "url" : "", "source" : "Wikipedia", "source_url" : "https://eu.wikipedia.org/", "licence" : "CC-BY", "language" : "eu", "type" : "other", "description" : "Annual conferences", "text" : "Amnesia.\n| Gaixotasun infotaula |izena = Amnesia |irudia = |oina = |DiseasesDB = |GNS10 = F04,.\nGNS10|R|41|3|r|40.\n|GNS9 =.\nGNS9|294.0.\n,.\nGNS9|780.9.\n,.\nGNS9|780.93.\n|GNSO = |OMIM = |MedlinePlus = 003257 |eMedicineSubj = |eMedicineTopic = |MeshID = D000647.\nAmnesia (.\nlang-el|\u1f00\u03bc\u03bd\u03ae\u03c3\u03b9\u03c2.\n, eusk: 'ahanztura') memoria galdu edo era nabarmenean ahultzea da.\nAmnesia anterogrado|Anterogradoa, une jakin baten ondoren gertatutakoari dagokiona; Amnesia erretrogrado|erretrogradoa, berriz une hori baino lehenagoko gertakizunei dagokiena.\nErabatekoa edo zatikakoa izan daiteke, eta bertan eragina duten psikologiazko mekanismoen arabera, bi mota daude: barneratuta dagoen oroitzapen bat oharmenera ekarri ezina bata, eta finkapenezkoa bestea, gertaerek oroitzapenik sortu ez dutenekoa.\nGaitz hau, eritasun psikiatriko gehienetan nozitzen da uneren batean edo bestean.\n== Erreferentziak ==.\nlur|data=2016-9-7.\nKategoria:Gaixotasun neurologikoak Kategoria:Oroimena.\nTxantiloi:OMIM.\nMendelian Inheritance in Man|Online 'Mendelian Inheritance in Man' (OMIM) [http://omim.org/entry/.\n{1.\n}.\n#if:.\n{2|.\n}."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"crypto": {"type": "string"}, "json5": {"type": "string"}}, "required": ["crypto", "json5"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fe-config-loader", "version" : "1.1.2", "description" : "load configuration dynamically at runtime for front end (vue or react) application", "main" : "index.js", "keywords" : ["config-loader", "vue", "react", "JavaScript", "node", "docker", "kubernetes", "k8s", "container", "config", "config-map", "runtime"], "author" : "[email protected]", "license" : "MIT", "dependencies" : {"crypto" : "^1.0.1", "json5" : "^2.2.0"}, "repository" : {"type" : "git", "url" : "https://github.com/EddyPan/fe-config-loader.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"crypto": {"type": "string"}, "json5": {"type": "string"}}, "required": ["crypto", "json5"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Prior to entering into any marketing agreement with any prospective retail dealer, a distributor shall disclose the information set forth in this section to such prospective retail dealer in writing. Prior to transferring any marketing agreement or interest therein to any prospective transferee, a retail dealer shall disclose the information set forth in this section to such prospective transferee in writing:", "historical" : "Prior Codifications\n\n1981 Ed., \u00a7 10-222.\n\n1973 Ed., \u00a7 10-222.\n\nLegislative History of Laws\n\nFor legislative history of D.C. Law 1-123, see Historical and Statutory Notes following \u00a7 36-301.01.\n\nDC CODE \u00a7 36-303.02\n\nCurrent through December 11, 2012", "credits" : "(Apr. 19, 1977, D.C. Law 1-123, \u00a7 4-202, 24 DCR 2371.)", "sections" : [{"prefix" : "1", "text" : " The name and last known address of the previous retail dealer or dealers for the immediately prior 3-year period or for the entire period during which the distributor has either sold or distributed motor fuels or petroleum products to or through such retail service station location or owned, leased, or otherwise controlled such location, whichever period is shorter, and the grounds or reasons for the termination of, cancellation of, or failure to renew each marketing agreement with such previous retail dealer or dealers; and"}, {"prefix" : "2", "text" : " The existence of any present commitments, negotiations, or plans for the future sale, demolition, or other disposition of such location."}], "division" : {"identifier" : "V", "text" : "Local Business Affairs"}, "title" : {"identifier" : "36", "text" : "Trade Practices. (Refs & Annos)"}, "chapter" : {"identifier" : "3", "text" : "Retail Service Stations."}, "subchapter" : {"identifier" : "III", "text" : "Marketing Agreements."}, "heading" : {"title" : "36", "chaptersection" : "303", "identifier" : "36-303.02", "catch_text" : "Disclosures to prospective retail dealers."}} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "historical": {"type": "string"}, "credits": {"type": "string"}, "sections": {"type": "array", "items": {"type": "object", "properties": {"prefix": {"type": "string"}, "text": {"type": "string"}}, "required": ["prefix", "text"]}}, "division": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "title": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "chapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "subchapter": {"type": "object", "properties": {"identifier": {"type": "string"}, "text": {"type": "string"}}, "required": ["identifier", "text"]}, "heading": {"type": "object", "properties": {"title": {"type": "string"}, "chaptersection": {"type": "string"}, "identifier": {"type": "string"}, "catch_text": {"type": "string"}}, "required": ["title", "chaptersection", "identifier", "catch_text"]}}, "required": ["text", "historical", "credits", "sections", "division", "title", "chapter", "subchapter", "heading"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 2, "pts" : 140, "connections" : 10557, "capacity" : 509065, "investments" : 698667}, {"tech" : 3, "pts" : 25, "connections" : 1512, "capacity" : 109172, "investments" : 600458}, {"tech" : 4, "pts" : 145, "connections" : 22884, "capacity" : 1103526, "investments" : 4248761}, {"tech" : 1, "pts" : 159, "connections" : 177497, "capacity" : 7650897, "investments" : 40365800}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"image": {"type": "object", "properties": {"updated": {"type": "string"}, "metadata": {"type": "object", "properties": {"_sahara_tag_vanilla": {"type": "boolean"}, "_sahara_description": {"type": "string"}, "_sahara_username": {"type": "string"}, "_sahara_tag_some_other_tag": {"type": "boolean"}, "_sahara_tag_2.7.1": {"type": "boolean"}}, "required": ["_sahara_tag_vanilla", "_sahara_description", "_sahara_username", "_sahara_tag_some_other_tag", "_sahara_tag_2.7.1"]}, "id": {"type": "string"}, "minDisk": {"type": "integer"}, "status": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minRam": {"type": "integer"}, "progress": {"type": "integer"}, "username": {"type": "string"}, "created": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "OS-EXT-IMG-SIZE:size": {"type": "integer"}}, "required": ["updated", "metadata", "id", "minDisk", "status", "tags", "minRam", "progress", "username", "created", "name", "description", "OS-EXT-IMG-SIZE:size"]}}, "required": ["image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : {"updated" : "2015-03-24T10:18:33Z", "metadata" : {"_sahara_tag_vanilla" : true, "_sahara_description" : "Ubuntu image for Hadoop 2.7.1", "_sahara_username" : "ubuntu", "_sahara_tag_some_other_tag" : true, "_sahara_tag_2.7.1" : true}, "id" : "bb8d12b5-f9bb-49f0-aecb-739b8a9bec89", "minDisk" : 0, "status" : "ACTIVE", "tags" : ["vanilla", "some_other_tag", "2.7.1"], "minRam" : 0, "progress" : 100, "username" : "ubuntu", "created" : "2015-02-03T10:28:39Z", "name" : "sahara-vanilla-2.6.0-ubuntu-14.04", "description" : "Ubuntu image for Hadoop 2.7.1", "OS-EXT-IMG-SIZE:size" : 1101856768}} | json_instruct | {"type": "object", "properties": {"image": {"type": "object", "properties": {"updated": {"type": "string"}, "metadata": {"type": "object", "properties": {"_sahara_tag_vanilla": {"type": "boolean"}, "_sahara_description": {"type": "string"}, "_sahara_username": {"type": "string"}, "_sahara_tag_some_other_tag": {"type": "boolean"}, "_sahara_tag_2.7.1": {"type": "boolean"}}, "required": ["_sahara_tag_vanilla", "_sahara_description", "_sahara_username", "_sahara_tag_some_other_tag", "_sahara_tag_2.7.1"]}, "id": {"type": "string"}, "minDisk": {"type": "integer"}, "status": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "minRam": {"type": "integer"}, "progress": {"type": "integer"}, "username": {"type": "string"}, "created": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "OS-EXT-IMG-SIZE:size": {"type": "integer"}}, "required": ["updated", "metadata", "id", "minDisk", "status", "tags", "minRam", "progress", "username", "created", "name", "description", "OS-EXT-IMG-SIZE:size"]}}, "required": ["image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["1045503", "1045504", "1045505", "1045506", "1045501", "1045502"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "depcheck": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "test", "depcheck", "format", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "chai": {"type": "string"}, "depcheck": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "chai", "depcheck", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "mocha", "prettier"]}, "dependencies": {"type": "object", "properties": {"ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ts-utils", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "tsc", "test" : "mocha --require ts-node/register test/**/*.spec.ts", "depcheck" : "depcheck | tee depcheck.txt", "format" : "prettier --write .", "lint" : "eslint . --ext .ts"}, "keywords" : ["TypeScript", "Utils", "Utilities", "SoftAssert"], "author" : "Dan Rusu", "license" : "ISC", "devDependencies" : {"@types/chai" : "^4.3.0", "@types/mocha" : "^9.1.0", "@typescript-eslint/eslint-plugin" : "^5.16.0", "@typescript-eslint/parser" : "^5.16.0", "chai" : "^4.3.6", "depcheck" : "^1.4.3", "eslint" : "^8.11.0", "eslint-config-prettier" : "^8.5.0", "eslint-plugin-prettier" : "^4.0.0", "mocha" : "^9.2.2", "prettier" : "2.6.0"}, "dependencies" : {"ts-node" : "^10.7.0", "typescript" : "^4.6.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "depcheck": {"type": "string"}, "format": {"type": "string"}, "lint": {"type": "string"}}, "required": ["build", "test", "depcheck", "format", "lint"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "chai": {"type": "string"}, "depcheck": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "mocha": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "chai", "depcheck", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "mocha", "prettier"]}, "dependencies": {"type": "object", "properties": {"ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["ts-node", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/ro/quador/bizplace/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/ro/quador/bizplace/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"project_name" : "coffee4all/jhiptest2", "files" : {"/src/main/java/ro/quador/bizplace/service/util/RandomUtil.java" : 2}, "pull_request" : "https://github.com/coffee4all/jhiptest2/pull/1", "report" : {"files_fixed" : 1, "vulnerabilities_fixed" : 2}} | json_instruct | {"type": "object", "properties": {"project_name": {"type": "string"}, "files": {"type": "object", "properties": {"/src/main/java/ro/quador/bizplace/service/util/RandomUtil.java": {"type": "integer"}}, "required": ["/src/main/java/ro/quador/bizplace/service/util/RandomUtil.java"]}, "pull_request": {"type": "string"}, "report": {"type": "object", "properties": {"files_fixed": {"type": "integer"}, "vulnerabilities_fixed": {"type": "integer"}}, "required": ["files_fixed", "vulnerabilities_fixed"]}}, "required": ["project_name", "files", "pull_request", "report"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"timelineTag": {"type": "string"}, "sortDirection": {"type": "boolean"}}, "required": ["timelineTag", "sortDirection"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"timelineTag" : "weekly", "sortDirection" : true} | json_instruct | {"type": "object", "properties": {"timelineTag": {"type": "string"}, "sortDirection": {"type": "boolean"}}, "required": ["timelineTag", "sortDirection"], "$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": {"test": {"type": "string"}, "semantic-release": {"type": "string"}}, "required": ["test", "semantic-release"]}, "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"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "semantic-release": {"type": "string"}, "semantic-release-cli": {"type": "string"}}, "required": ["eslint", "semantic-release", "semantic-release-cli"]}, "dependencies": {"type": "object", "properties": {"@react-native-community/eslint-config": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@react-native-community/eslint-config", "eslint-plugin-import", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "eslint-config-react-native-httol", "version" : "0.0.6-development", "description" : "", "main" : "index.js", "scripts" : {"test" : "eslint -c index.js tests/*.tsx --fix", "semantic-release" : "semantic-release"}, "repository" : {"type" : "git", "url" : "https://github.com/httol/eslint-config-react-native-httol.git"}, "author" : "William Candillon <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/httol/eslint-config-react-native-httol/issues"}, "homepage" : "https://github.com/httol/eslint-config-react-native-httol#readme", "devDependencies" : {"eslint" : "^7.8.1", "semantic-release" : "^17.1.1", "semantic-release-cli" : "^5.2.3"}, "dependencies" : {"@react-native-community/eslint-config" : "2.0.0", "eslint-plugin-import" : "^2.22.0", "typescript" : "^4.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "semantic-release": {"type": "string"}}, "required": ["test", "semantic-release"]}, "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"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "semantic-release": {"type": "string"}, "semantic-release-cli": {"type": "string"}}, "required": ["eslint", "semantic-release", "semantic-release-cli"]}, "dependencies": {"type": "object", "properties": {"@react-native-community/eslint-config": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@react-native-community/eslint-config", "eslint-plugin-import", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"defaultCommandTimeout": {"type": "integer"}}, "required": ["defaultCommandTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"defaultCommandTimeout" : 10000} | json_instruct | {"type": "object", "properties": {"defaultCommandTimeout": {"type": "integer"}}, "required": ["defaultCommandTimeout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "jsnext:main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:lib": {"type": "string"}, "check": {"type": "string"}, "lint": {"type": "string"}, "preversion": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build:lib", "check", "lint", "preversion", "version", "postversion", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-runtime": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-runtime", "eslint"]}}, "required": ["name", "version", "description", "main", "files", "jsnext:main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "redux-ducks", "version" : "0.2.0", "description" : "Redux toolset for isolating state as defined by ducks-modular-redux proposal.", "main" : "lib/index.js", "files" : ["lib", "src"], "jsnext:main" : "src/index.js", "scripts" : {"build:lib" : "./node_modules/.bin/babel src --out-dir lib", "check" : "npm run lint", "lint" : "./node_modules/.bin/eslint src/", "preversion" : "npm run check", "version" : "npm run build:lib", "postversion" : "git push && git push --tags", "prepublish" : "npm run build:lib"}, "repository" : {"type" : "git", "url" : "git+https://github.com/salsita/redux-ducks.git"}, "keywords" : ["redux", "ducks-modular-redux", "ducks", "local", "state"], "author" : "Tomas Weiss <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/salsita/redux-ducks/issues"}, "homepage" : "https://github.com/salsita/redux-ducks#readme", "devDependencies" : {"babel" : "^5.8.23", "babel-core" : "^5.8.25", "babel-eslint" : "^4.1.3", "babel-runtime" : "^5.8.25", "eslint" : "^1.9.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "jsnext:main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build:lib": {"type": "string"}, "check": {"type": "string"}, "lint": {"type": "string"}, "preversion": {"type": "string"}, "version": {"type": "string"}, "postversion": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["build:lib", "check", "lint", "preversion", "version", "postversion", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-runtime": {"type": "string"}, "eslint": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-runtime", "eslint"]}}, "required": ["name", "version", "description", "main", "files", "jsnext:main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"swig.js": {"type": "string"}, "swig.min.js": {"type": "string"}}, "required": ["swig.js", "swig.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"swig.js" : "sha256-f64vMGnTJ/nlXRosBsTq4lY72cVEhRc+giF/LrLIj+w=", "swig.min.js" : "sha256-lpcP8e7qJurcDb3xFaTUxk0K5KuibIyCpjpdiv/FPHc="} | json_instruct | {"type": "object", "properties": {"swig.js": {"type": "string"}, "swig.min.js": {"type": "string"}}, "required": ["swig.js", "swig.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "moreInformation": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "authorizedUserIds": {"type": "array", "items": {}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "licenseText": {"type": "null"}}, "required": ["type", "licenseText"]}, "dependencies": {"type": "object", "properties": {"BasicVector": {"type": "integer"}}, "required": ["BasicVector"]}}, "required": ["description", "moreInformation", "tags", "authorizedUserIds", "authors", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Implements core 3D vector mathematical functionality.", "moreInformation" : "http://napack.net/api/BasicVector_Core", "tags" : ["vector", "geometry", "math"], "authorizedUserIds" : [], "authors" : ["Gustave Granroth"], "license" : {"type" : "MIT", "licenseText" : null}, "dependencies" : {"BasicVector" : 1}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "moreInformation": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "authorizedUserIds": {"type": "array", "items": {}}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "licenseText": {"type": "null"}}, "required": ["type", "licenseText"]}, "dependencies": {"type": "object", "properties": {"BasicVector": {"type": "integer"}}, "required": ["BasicVector"]}}, "required": ["description", "moreInformation", "tags", "authorizedUserIds", "authors", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "5e43d0493691760b01d0", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7109052004", "district_id" : "7109052", "name" : "TOMBATU DUA UTARA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "airflow", "username" : "airflow_admin", "password" : "av8Q#8wwoWv28"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}}, "required": ["id", "username", "password"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}}, "required": ["dev", "build", "start", "lint"]}, "dependencies": {"type": "object", "properties": {"@walletconnect/web3-provider": {"type": "string"}, "bootstrap": {"type": "string"}, "next": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reactstrap": {"type": "string"}, "sass": {"type": "string"}, "web3": {"type": "string"}, "web3modal": {"type": "string"}}, "required": ["@walletconnect/web3-provider", "bootstrap", "next", "prop-types", "react", "react-dom", "reactstrap", "sass", "web3", "web3modal"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-next": {"type": "string"}}, "required": ["eslint", "eslint-config-next"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "wrapkitfree", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "next dev", "build" : "next build", "start" : "next start", "lint" : "next lint"}, "dependencies" : {"@walletconnect/web3-provider" : "^1.7.1", "bootstrap" : "4.6.0", "next" : "11.1.2", "prop-types" : "15.7.2", "react" : "17.0.2", "react-dom" : "17.0.2", "reactstrap" : "8.10.0", "sass" : "^1.29.0", "web3" : "^1.6.0", "web3modal" : "^1.9.5"}, "devDependencies" : {"eslint" : "7.32.0", "eslint-config-next" : "11.1.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}}, "required": ["dev", "build", "start", "lint"]}, "dependencies": {"type": "object", "properties": {"@walletconnect/web3-provider": {"type": "string"}, "bootstrap": {"type": "string"}, "next": {"type": "string"}, "prop-types": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "reactstrap": {"type": "string"}, "sass": {"type": "string"}, "web3": {"type": "string"}, "web3modal": {"type": "string"}}, "required": ["@walletconnect/web3-provider", "bootstrap", "next", "prop-types", "react", "react-dom", "reactstrap", "sass", "web3", "web3modal"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-next": {"type": "string"}}, "required": ["eslint", "eslint-config-next"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1979, "sex" : "M", "n" : 5, "prop" : 2.79e-06}, {"year" : 1991, "sex" : "M", "n" : 5, "prop" : 2.36e-06}, {"year" : 2006, "sex" : "M", "n" : 5, "prop" : 2.28e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"94402\"": {"type": "string"}}, "required": ["\"94402\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"94402\"" : "Aizpute"}, "hits" : "3464"} | json_instruct | {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"94402\"": {"type": "string"}}, "required": ["\"94402\""]}, "hits": {"type": "string"}}, "required": ["status", "tp", "msg", "result", "hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "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" : 404360269, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "772f84232efe1c85711875988058c7ee", "wof:id" : 404360269, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [5.74552299145046, 48.23115422848313, 5.82795570489314, 48.26117730560988], "geometry" : {"coordinates" : [[[5.77482054715604, 48.23752061501794], [5.75942566772564, 48.23126381210288], [5.74983889677695, 48.23115422848313], [5.74552299145046, 48.24014070000512], [5.77107137715542, 48.24388383698923], [5.77373902997817, 48.24693635070602], [5.7967494395093, 48.26117730560988], [5.81004570238639, 48.25716163592126], [5.82462483608202, 48.25775047065289], [5.82795570489314, 48.25550102144555], [5.82183381553754, 48.2436458731524], [5.81355001729363, 48.23845038392319], [5.79954365258886, 48.24296062045295], [5.77482054715604, 48.23752061501794]]], "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:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Prepare the cornbread according to package instructions. Once cornbread is cooled, crumble it into a large bowl. Stir in the bread crumbs.", "Preheat oven to 350 degrees F (175 degrees C).", "In a large pot, saute sausage in margarine with the onion, garlic, green bell pepper and celery until tender. Stir parsley, poultry seasoning, sage and salt into the mixture. Pour broth, eggs and cornbread/breadcrumbs into the mixture; mix until the ingredients stick together easily. Transfer to a 9x13 inch pan.", "Bake covered in a preheated 350 degrees F (175 degrees C) oven for 30 minutes."], "ingredients" : ["4 (6.5 ounce) packages dry corn bread mix", "6 cups dry bread crumbs", "1 pound sausage", "1/2 cup margarine", "2 cups chopped onion", "4 cloves garlic", "1/3 cup chopped green bell pepper", "3 cups chopped celery", "2/3 cup chopped fresh parsley", "2 tablespoons poultry seasoning", "1 teaspoon dried sage", "1 teaspoon salt", "8 cups chicken broth", "2 eggs, beaten"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Mama's Cornbread and Sausage Turkey Dressing", "url" : "http://allrecipes.com/recipe/18515/mamas-cornbread-and-sausage-turkey-d/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$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" : "quadrinodal", "definition" : "Possessing four nodes; as, quadrinodal curves."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"limit" : 1000, "name" : "Mystic fire staff", "value" : 42500, "highalch" : 25500, "id" : 1401, "lowalch" : 17000, "name_pt" : "Cajado m\u00edstico do fogo", "price" : 23525, "last" : 23525} | json_instruct | {"type": "object", "properties": {"limit": {"type": "integer"}, "name": {"type": "string"}, "value": {"type": "integer"}, "highalch": {"type": "integer"}, "id": {"type": "integer"}, "lowalch": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["limit", "name", "value", "highalch", "id", "lowalch", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "parameter": {"type": "string"}, "value": {"type": "integer"}, "units": {"type": "string"}}, "required": ["id", "parameter", "value", "units"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 0, "parameter" : "Water Temperature", "value" : 88, "units" : "C"}, {"id" : 1, "parameter" : "Brew Volume", "value" : 50, "units" : "ml"}, {"id" : 2, "parameter" : "Extraction Time", "value" : 25, "units" : "s"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "parameter": {"type": "string"}, "value": {"type": "integer"}, "units": {"type": "string"}}, "required": ["id", "parameter", "value", "units"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "0xa416f44a78792c27c21dfdc095f1deff6628d499a068885bbfe4e249a8d860d5", "parentHash" : "0x3d7d23e581cbb4426d9cd5639b2a97b4bd3e7678695e81d017c6f5b9789a35af", "number" : 5940, "timestamp" : 1438293178, "nonce" : "0xd4153d7f1b186c56", "difficulty" : 248124042844, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xdd2F1e6e498202e86D8f5442Af596580A4f03c2C", "extraData" : "0x476574682f76312e302e302d30636463373634372f6c696e75782f676f312e34", "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.0, "people" : [{"pose_keypoints" : [360.757, 138.871, 0.957779, 346.378, 162.358, 0.881452, 332.01, 161.067, 0.901028, 320.301, 197.585, 0.84905, 359.423, 201.501, 0.834079, 359.427, 163.662, 0.838981, 356.833, 197.561, 0.491308, 372.455, 204.137, 0.709856, 339.911, 234.155, 0.816222, 348.914, 288.921, 0.901279, 338.579, 341.139, 0.870455, 363.318, 234.062, 0.795246, 380.239, 286.316, 0.910932, 378.953, 345.088, 0.796573, 358.071, 132.318, 0.899847, 363.359, 132.372, 0.82728, 341.202, 133.64, 0.88351, 0, 0, 0], "face_keypoints" : [], "hand_left_keypoints" : [], "hand_right_keypoints" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints": {"type": "array", "items": {"type": "number"}}, "face_keypoints": {"type": "array", "items": {}}, "hand_left_keypoints": {"type": "array", "items": {}}, "hand_right_keypoints": {"type": "array", "items": {}}}, "required": ["pose_keypoints", "face_keypoints", "hand_left_keypoints", "hand_right_keypoints"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "icon": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "fullName": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "license", "author", "version", "homepage", "icon", "dependencies", "fullName", "id", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pts-knappen", "license" : "MPL 2.0", "author" : "DFRI", "version" : "0.8.5", "homepage" : "https://www.dfri.se/pts-knappen", "icon" : "data/favicon.ico", "dependencies" : ["toolbar-button-complete", "api-utils", "addon-kit"], "fullName" : "pts-knappen", "id" : "jid1-PA0kK7d1bvHpUg", "description" : "Rapporterar tillsyns\u00e4renden till PTS"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "icon": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "fullName": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "license", "author", "version", "homepage", "icon", "dependencies", "fullName", "id", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Cambodia - Climate Change", "downloads" : 220, "tags" : ["hxl", "indicators", "weather and climate", "Cambodia"], "hxl" : 1, "org" : "World Bank Group", "id" : "bc5699c0-6c1b-46e7-bcab-05ffec9b2e59", "resources" : [{"update_date" : "2021-01-28T12:03:23.060690", "link" : "https://data.humdata.org/dataset/bc5699c0-6c1b-46e7-bcab-05ffec9b2e59/resource/bf75c1a6-544a-48b3-8fcd-8cfb6d94167c/download/climate-change_khm.csv"}, {"update_date" : "2021-01-28T12:03:23.060690", "link" : "https://data.humdata.org/dataset/bc5699c0-6c1b-46e7-bcab-05ffec9b2e59/resource/21424013-2674-4f24-a31a-d574a893bc72/download/qc_climate-change_khm.csv"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$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"}, "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" : "DevoToken", "symbol" : "DEVO", "address" : "0xB989B5EE24185aDBA2A0Ac5aA24Ea28CccED8BFD", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200894520743000, "key" : "/static/c1695ad846d1d65c5f306770737d5567/3033f/Donate.jpg", "val" : "2873736f2694c024c718b3c8bb74bf18"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "shortclothes", "definition" : "Coverings for the legs of men or boys, consisting of trousers which reach only to the knees, -- worn with long stockings."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"categories" : ["Debugging and Troubleshooting", "Management", "Operating Systems"], "desc" : " Find out how to isolate, understand, and solve problems encountered when managing users and PCs on Windows. Learn from a Microsoft MVP with many years\u2019 experience supporting Windows users with their Group Policy issues. This book will help you face the complexity of real world hardware and software systems and the unpredictability of user behavior, so you can get to the heart of the problem and set it right.", "details" : {"authors" : "Kapil Arya, Andrew Bettany", "format" : "pdf", "isbn-10" : "148421885X", "isbn-13" : "978-1484218853", "pages" : "212 pages", "publication date" : "November 3, 2016", "publisher" : "Apress", "size" : "14.00Mb"}, "img" : "http://23.95.221.108/covers/fc/fcfbce7ed0ab85aa68599108bcfa3906.jpg", "link" : "https://rapidhosting.info/files/a1l", "title" : "Windows Group Policy Troubleshooting: A Best Practice Guide for Managing Users and PCs Through Group Policy"} | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"}, "publication date": {"type": "string"}, "publisher": {"type": "string"}, "size": {"type": "string"}}, "required": ["authors", "format", "isbn-10", "isbn-13", "pages", "publication date", "publisher", "size"]}, "img": {"type": "string"}, "link": {"type": "string"}, "title": {"type": "string"}}, "required": ["categories", "desc", "details", "img", "link", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1995, 6], [2000, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 2002, "sex" : "M", "n" : 5, "prop" : 2.42e-06}, {"year" : 2006, "sex" : "M", "n" : 6, "prop" : 2.74e-06}, {"year" : 2007, "sex" : "M", "n" : 7, "prop" : 3.16e-06}, {"year" : 2008, "sex" : "M", "n" : 10, "prop" : 4.59e-06}, {"year" : 2009, "sex" : "M", "n" : 7, "prop" : 3.3e-06}, {"year" : 2010, "sex" : "M", "n" : 10, "prop" : 4.87e-06}, {"year" : 2011, "sex" : "M", "n" : 11, "prop" : 5.42e-06}, {"year" : 2012, "sex" : "M", "n" : 5, "prop" : 2.47e-06}, {"year" : 2014, "sex" : "M", "n" : 9, "prop" : 4.4e-06}, {"year" : 2015, "sex" : "M", "n" : 5, "prop" : 2.45e-06}, {"year" : 2016, "sex" : "M", "n" : 20, "prop" : 9.91e-06}, {"year" : 2017, "sex" : "M", "n" : 8, "prop" : 4.07e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"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" : [[[138.25, 36.666666666666664], [138.25, 36.75], [138.375, 36.75], [138.375, 36.666666666666664], [138.25, 36.666666666666664]]]}, "properties" : {"code" : 553802, "url" : "http://madefor.github.io/0410/api/v1/553802.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/553802.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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"SettlingTheFrontier": {"type": "array", "items": {"type": "string"}}}, "required": ["SettlingTheFrontier"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SettlingTheFrontier" : ["BoldExplorer", "PenalColony", "ThisMeansWar", "CultColony", "LostColony", "PenalColony", "InjunCountry", "ColonizedSolarSystem", "TheMigration", "ThePioneer", "DeterminedHomesteader", "TheFederation", "ReconguistaInG", "TheFederation", "ReconguistaInG", "RealLife", "InjunCountry", "ThirstyDesert", "EagleLand", "GenerationShip", "TheOlderImmortal", "DeathWorld", "HumanPopsicle", "SuperSpeed", "UpliftedAnimal", "AscendToAHigherPlaneOfExistence", "FasterThanLightTravel", "DeathWorld", "ThePlague", "SleeperStarship", "SubspaceOrHyperspace", "LostColony", "SubspaceAnsible", "LostColony", "FTLTravel", "MegaCorp", "TheFederation", "BrainUploading", "HumanAlien", "ImmortalityImmorality", "TheAgeless", "BizarreAlienBiology", "FasterThanLightTravel", "EarthThatWas", "SpacePirate", "TheAlliance", "OneNationUnderCopyright", "ColonizedSolarSystem", "GenerationShip", "TheOlderImmortal", "DeathWorld", "FasterThanLightTravel", "DeathWorld", "ThePlague", "MegaCorp", "TheFederation", "BrainUploading", "HumanAlien", "ImmortalityImmorality", "EarthThatWas", "InjunCountry", "AfterTheEnd", "PortalNetwork", "EuroGame", "ExactlyWhatItSaysOnTheTin", "FourX", "Terraforming", "SpiritualSuccessor", "PortalNetwork", "BeePeople", "StarfishAliens", "IntelligentGerbil", "RealLife", "TropesInSpace", "FourX", "RealTimeStrategy", "TurnBasedStrategy", "UnwinnableByMistake", "SleeperStarship", "SleeperStarship", "EagleLand", "Wutai", "FightingForAHomeland", "DeathWorld", "SufficientlyAdvancedAlien", "BadassNormal", "SuperPersistentPredator", "SpiritualSuccessor", "PortalNetwork", "BeePeople", "StarfishAliens", "IntelligentGerbil", "RealLife", "TropesInSpace", "UnwinnableByMistake", "SciFi", "Western"]} | json_instruct | {"type": "object", "properties": {"SettlingTheFrontier": {"type": "array", "items": {"type": "string"}}}, "required": ["SettlingTheFrontier"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "421126456598", "text" : "\u8572\u6625\u53bf\u4ed9\u4eba\u53f0\u8336\u5382\u865a\u62df\u751f\u6d3b\u533a"}] | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"towns" : [{"name" : "Nanping", "url" : "nanping"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "karapo'i", "h" : [{"d" : [{"f" : "\u611b\u751f\u6c23\u3001\u767c\u6012\u3002", "s" : ["`karafirang~", "`karaketer~"]}]}], "stem" : "po'i"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"payment_channel_storage_server": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "SERVICE_ID": {"type": "string"}, "ORGANIZATION_ID": {"type": "string"}, "DAEMON_END_POINT": {"type": "string"}, "ETHEREUM_JSON_RPC_ENDPOINT": {"type": "string"}, "PASSTHROUGH_ENABLED": {"type": "boolean"}, "PASSTHROUGH_ENDPOINT": {"type": "string"}, "IPFS_END_POINT": {"type": "string"}, "REGISTRY_ADDRESS_KEY": {"type": "string"}, "pvt_key_for_metering": {"type": "string"}, "metering_end_point": {"type": "string"}, "free_call_signer_address": {"type": "string"}, "log": {"type": "object", "properties": {"level": {"type": "string"}, "output": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["level", "output"]}}, "required": ["payment_channel_storage_server", "SERVICE_ID", "ORGANIZATION_ID", "DAEMON_END_POINT", "ETHEREUM_JSON_RPC_ENDPOINT", "PASSTHROUGH_ENABLED", "PASSTHROUGH_ENDPOINT", "IPFS_END_POINT", "REGISTRY_ADDRESS_KEY", "pvt_key_for_metering", "metering_end_point", "free_call_signer_address", "log"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"payment_channel_storage_server" : {"enabled" : true}, "SERVICE_ID" : "test_service", "ORGANIZATION_ID" : "test_org", "DAEMON_END_POINT" : "localhost:5051", "ETHEREUM_JSON_RPC_ENDPOINT" : "http://localhost:8545", "PASSTHROUGH_ENABLED" : true, "PASSTHROUGH_ENDPOINT" : "http://localhost:7003", "IPFS_END_POINT" : "http://localhost:5002", "REGISTRY_ADDRESS_KEY" : "0x4e74fefa82e83e0964f0d9f53c68e03f7298a8b2", "pvt_key_for_metering" : "efed2ea91d5ace7f9f7bd91e21223cfded31a6e3f1a746bc52821659e0c94e17", "metering_end_point" : "http://demo8325345.mockable.io", "free_call_signer_address" : "0x7DF35C98f41F3Af0df1dc4c7F7D4C19a71Dd059F", "log" : {"level" : "debug", "output" : {"type" : "stdout"}}} | json_instruct | {"type": "object", "properties": {"payment_channel_storage_server": {"type": "object", "properties": {"enabled": {"type": "boolean"}}, "required": ["enabled"]}, "SERVICE_ID": {"type": "string"}, "ORGANIZATION_ID": {"type": "string"}, "DAEMON_END_POINT": {"type": "string"}, "ETHEREUM_JSON_RPC_ENDPOINT": {"type": "string"}, "PASSTHROUGH_ENABLED": {"type": "boolean"}, "PASSTHROUGH_ENDPOINT": {"type": "string"}, "IPFS_END_POINT": {"type": "string"}, "REGISTRY_ADDRESS_KEY": {"type": "string"}, "pvt_key_for_metering": {"type": "string"}, "metering_end_point": {"type": "string"}, "free_call_signer_address": {"type": "string"}, "log": {"type": "object", "properties": {"level": {"type": "string"}, "output": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["level", "output"]}}, "required": ["payment_channel_storage_server", "SERVICE_ID", "ORGANIZATION_ID", "DAEMON_END_POINT", "ETHEREUM_JSON_RPC_ENDPOINT", "PASSTHROUGH_ENABLED", "PASSTHROUGH_ENDPOINT", "IPFS_END_POINT", "REGISTRY_ADDRESS_KEY", "pvt_key_for_metering", "metering_end_point", "free_call_signer_address", "log"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"checks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["checks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"checks" : [{"name" : "prod-active-directory", "url" : "checking/test5.json"}]} | json_instruct | {"type": "object", "properties": {"checks": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["checks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"siteId" : "cb674dc0-cfbd-47f2-a16c-bbf9c90ca39e"} | json_instruct | {"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$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": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2004, 7], [2006, 11], [2007, 6], [2011, 5]] | 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": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "ext-json": {"type": "string"}}, "required": ["illuminate/support", "guzzlehttp/guzzle", "ext-json"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RensPhilipsen\\NSApi\\": {"type": "string"}}, "required": ["RensPhilipsen\\NSApi\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {"NSApi": {"type": "string"}}, "required": ["NSApi"]}}, "required": ["providers", "aliases"]}}, "required": ["laravel"]}}, "required": ["name", "description", "license", "authors", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rensphilipsen/laravel-ns-api", "description" : "A Laravel wrapper for the Nederlandse Spoorwegen (NS) API", "license" : "MIT", "authors" : [{"name" : "Rens Philipsen", "email" : "[email protected]", "role" : "Developer"}], "require" : {"illuminate/support" : "^8.0", "guzzlehttp/guzzle" : "^7.0", "ext-json" : "*"}, "autoload" : {"psr-4" : {"RensPhilipsen\\NSApi\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["RensPhilipsen\\NSApi\\NSApiServiceProvider"], "aliases" : {"NSApi" : "RensPhilipsen\\NSApi\\Facade"}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "role"]}}, "require": {"type": "object", "properties": {"illuminate/support": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}, "ext-json": {"type": "string"}}, "required": ["illuminate/support", "guzzlehttp/guzzle", "ext-json"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"RensPhilipsen\\NSApi\\": {"type": "string"}}, "required": ["RensPhilipsen\\NSApi\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {"NSApi": {"type": "string"}}, "required": ["NSApi"]}}, "required": ["providers", "aliases"]}}, "required": ["laravel"]}}, "required": ["name", "description", "license", "authors", "require", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"params": {"type": "object", "properties": {"id": {"type": "string"}, "layer": {"type": "string"}, "method": {"type": "string"}}, "required": ["id", "layer", "method"]}, "query": {"type": "object", "properties": {"geometryType": {"type": "string"}, "spatialRel": {"type": "string"}, "extension": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"spatialReference": {"type": "object", "properties": {"wkid": {"type": "integer"}}, "required": ["wkid"]}, "type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["spatialReference", "type", "coordinates"]}}, "required": ["geometry"]}}, "required": ["geometryType", "spatialRel", "extension"]}}, "required": ["params", "query"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"params" : {"id" : "GDeltGKG", "layer" : "3", "method" : "query"}, "query" : {"geometryType" : "esriGeometryPolygon", "spatialRel" : "esrispatialreloverlaps", "extension" : {"geometry" : {"spatialReference" : {"wkid" : 4326}, "type" : "Polygon", "coordinates" : [[[-122.23766326904297, 37.507410910479315], [-122.23766326904297, 37.513810842731], [-122.23551750183105, 37.513810842731], [-122.23551750183105, 37.507410910479315], [-122.23766326904297, 37.507410910479315]]]}}}} | json_instruct | {"type": "object", "properties": {"params": {"type": "object", "properties": {"id": {"type": "string"}, "layer": {"type": "string"}, "method": {"type": "string"}}, "required": ["id", "layer", "method"]}, "query": {"type": "object", "properties": {"geometryType": {"type": "string"}, "spatialRel": {"type": "string"}, "extension": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"spatialReference": {"type": "object", "properties": {"wkid": {"type": "integer"}}, "required": ["wkid"]}, "type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["spatialReference", "type", "coordinates"]}}, "required": ["geometry"]}}, "required": ["geometryType", "spatialRel", "extension"]}}, "required": ["params", "query"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "1.4.0.20210127.165413"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.