input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 15645, "citation_title" : "The Great Recession and the Great Depression", "citation_author" : ["Peter Temin"], "citation_publication_date" : "2010-01-14", "issue_date" : "2010-01-14", "revision_date" : "2011-12-05", "topics" : ["Macroeconomics", "Business Cycles", "Fiscal Policy", "History", "Macroeconomic History"], "program" : ["Development of the American Economy", "Economic Fluctuations and Growth", "Monetary Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThis paper discusses parallels between our current recession and the Great Depression for the intelligent general public. It stresses the role of economic models and ideas in public policy and argues that gold-standard mentality still holds sway today. The parallels are greatest in the generation of the crises, and they also illuminate the policy choices being made today. We have escaped a repeat of the Depression, but we appear to have lost the opportunity for significant financial reform.\n\n", "acknowledgement" : "\nThe views expressed herein are those of the author and do not necessarily reflect the views of the National Bureau of Economic Research.\n\n\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "62c962b1-99f8-4884-9dce-746116805a42", "name" : "Perryfields Primary School", "code" : "R", "address" : {"addressLine1" : "Apsley Road", "addressLine2" : "Oldbury", "postcode" : "B68 0QY"}, "organisation" : {"id" : "e06166f7-f57d-4f6c-bf5d-a12c0beb7526", "code" : "142", "name" : "Crocketts Community Primary School"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode"]}, "organisation": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "code", "name"]}}, "required": ["id", "name", "code", "address", "organisation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pathname": {"type": "string"}, "provides": {"type": "object", "properties": {"Data::Dump::Trace::Call": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump::Filtered": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump": {"type": "object", "properties": {"file": {"type": "string"}, "version": {"type": "string"}}, "required": ["file", "version"]}, "Data::Dump::FilterContext": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump::Trace": {"type": "object", "properties": {"file": {"type": "string"}, "version": {"type": "string"}}, "required": ["file", "version"]}, "Data::Dump::Trace::Wrapper": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}}, "required": ["Data::Dump::Trace::Call", "Data::Dump::Filtered", "Data::Dump", "Data::Dump::FilterContext", "Data::Dump::Trace", "Data::Dump::Trace::Wrapper"]}, "name": {"type": "string"}, "target": {"type": "string"}, "dist": {"type": "string"}, "version": {"type": "string"}}, "required": ["pathname", "provides", "name", "target", "dist", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pathname" : "G/GA/GAAS/Data-Dump-1.23.tar.gz", "provides" : {"Data::Dump::Trace::Call" : {"file" : "Data/Dump/Trace.pm"}, "Data::Dump::Filtered" : {"file" : "Data/Dump/Filtered.pm"}, "Data::Dump" : {"file" : "Data/Dump.pm", "version" : "1.23"}, "Data::Dump::FilterContext" : {"file" : "Data/Dump/FilterContext.pm"}, "Data::Dump::Trace" : {"file" : "Data/Dump/Trace.pm", "version" : "0.02"}, "Data::Dump::Trace::Wrapper" : {"file" : "Data/Dump/Trace.pm"}}, "name" : "Data::Dump", "target" : "Data::Dump", "dist" : "Data-Dump-1.23", "version" : "1.23"} | json_instruct | {"type": "object", "properties": {"pathname": {"type": "string"}, "provides": {"type": "object", "properties": {"Data::Dump::Trace::Call": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump::Filtered": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump": {"type": "object", "properties": {"file": {"type": "string"}, "version": {"type": "string"}}, "required": ["file", "version"]}, "Data::Dump::FilterContext": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}, "Data::Dump::Trace": {"type": "object", "properties": {"file": {"type": "string"}, "version": {"type": "string"}}, "required": ["file", "version"]}, "Data::Dump::Trace::Wrapper": {"type": "object", "properties": {"file": {"type": "string"}}, "required": ["file"]}}, "required": ["Data::Dump::Trace::Call", "Data::Dump::Filtered", "Data::Dump", "Data::Dump::FilterContext", "Data::Dump::Trace", "Data::Dump::Trace::Wrapper"]}, "name": {"type": "string"}, "target": {"type": "string"}, "dist": {"type": "string"}, "version": {"type": "string"}}, "required": ["pathname", "provides", "name", "target", "dist", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 3471140, "parent" : 3471, "name" : "TEGALREJO", "latitude" : "-7.7804180345599", "longitude" : "110.35908571887", "postal" : [55241, 55242, 55243, 55244], "children" : [3471140001, 3471140002, 3471140003, 3471140004]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Similarity" : "0.883", "Title" : "Novice to Expert continuum may affect System Response Time", "Year" : 2017}, {"Similarity" : "0.878", "Title" : "Nudging Problematic Smartphone Use to a Lower Level", "Year" : 2017}, {"Similarity" : "0.863", "Title" : "Executive control in analogical reasoning Beyond interference resolution", "Year" : 2009}, {"Similarity" : "0.858", "Title" : "Event Reasoning as a Function of Working Memory Capacity and Long Term Working Memory Skill", "Year" : 2003}, {"Similarity" : "0.857", "Title" : "Relating Personality and Physiological Measurements to Task Performance Quality", "Year" : 2009}, {"Similarity" : "0.848", "Title" : "Effects of Working Memory Capacity on a Remote Associates Task", "Year" : 2006}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"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" : "7603071001", "district_id" : "7603071", "name" : "TAWALIAN TIMUR"}, {"id" : "7603071002", "district_id" : "7603071", "name" : "KARIANGO"}, {"id" : "7603071003", "district_id" : "7603071", "name" : "TAWALIAN"}, {"id" : "7603071004", "district_id" : "7603071", "name" : "RANTETANGNGA"}] | json_instruct | {"type": "array", "items": {"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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "var subState={loading:false,error:null,subscription:null,authenticated:false,currentUser:null};export{subState};", "map" : {"version" : 3, "sources" : ["C:/Users/Usuario/reactProjects/findYourHouse/app/src/reducers/initialState.js"], "names" : ["subState", "loading", "error", "subscription", "authenticated", "currentUser"], "mappings" : "AAAA,GAAMA,CAAAA,QAAQ,CAAG,CACfC,OAAO,CAAE,KADM,CAEfC,KAAK,CAAE,IAFQ,CAGfC,YAAY,CAAE,IAHC,CAIfC,aAAa,CAAE,KAJA,CAKfC,WAAW,CAAE,IALE,CAAjB,CAQA,OAASL,QAAT", "sourcesContent" : ["const subState = {\n loading: false,\n error: null,\n subscription: null,\n authenticated: false,\n currentUser: null,\n};\n\nexport { subState };\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "6391", "name" : "\u9060\u5dde\u4e2d\u592e\u8fb2\u5354", "name_kana" : "\uff74\uff9d\uff7c\uff95\uff73\uff81\uff95\uff73\uff75\uff73\uff89\uff73\uff77\uff96\uff73"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"], "$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"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"ljc": {"type": "string"}}, "required": ["ljc"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"TRWebImage": {"type": "array", "items": {"type": "string"}}, "SVProgressHUD": {"type": "array", "items": {"type": "string"}}, "YLGIFImage": {"type": "array", "items": {"type": "string"}}}, "required": ["TRWebImage", "SVProgressHUD", "YLGIFImage"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "resources", "requires_arc", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "TRMJPhotoBrowser", "version" : "1.0.3", "summary" : "The easiest lightest way to use PhotoBrowser, enhanced by ljc.", "homepage" : "https://github.com/PodRepo/MJPhotoBrowser.git", "license" : "MIT", "authors" : {"ljc" : "http://lijinchao.sinaapp.com"}, "platforms" : {"ios" : "7.0"}, "source" : {"git" : "https://github.com/PodRepo/MJPhotoBrowser.git", "tag" : "1.0.3"}, "source_files" : "MJPhotoBrowser/MJPhotoBrowser/*.{h,m}", "resources" : "MJPhotoBrowser/MJPhotoBrowser/*.bundle", "requires_arc" : true, "dependencies" : {"TRWebImage" : ["0.4"], "SVProgressHUD" : ["~> 1.1.3"], "YLGIFImage" : ["~> 0.11"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"ljc": {"type": "string"}}, "required": ["ljc"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "string"}, "resources": {"type": "string"}, "requires_arc": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"TRWebImage": {"type": "array", "items": {"type": "string"}}, "SVProgressHUD": {"type": "array", "items": {"type": "string"}}, "YLGIFImage": {"type": "array", "items": {"type": "string"}}}, "required": ["TRWebImage", "SVProgressHUD", "YLGIFImage"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "platforms", "source", "source_files", "resources", "requires_arc", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"access": {"type": "object", "properties": {"accounts": {"type": "array", "items": {"type": "object", "properties": {"aspspAccountId": {"type": "string"}, "resourceId": {"type": "string"}, "iban": {"type": "string"}, "bban": {"type": "string"}, "pan": {"type": "string"}, "maskedPan": {"type": "string"}, "msisdn": {"type": "string"}, "currency": {"type": "string"}}, "required": ["aspspAccountId", "resourceId", "iban", "bban", "pan", "maskedPan", "msisdn", "currency"]}}, "balances": {"type": "array", "items": {}}, "transactions": {"type": "array", "items": {}}, "additionalInformationAccess": {"type": "object", "properties": {"ownerAddress": {"type": "array", "items": {"type": "object", "properties": {"iban": {"type": "string"}}, "required": ["iban"]}}}, "required": ["ownerAddress"]}}, "required": ["accounts", "balances", "transactions", "additionalInformationAccess"]}, "frequencyPerDay": {"type": "string"}, "recurringIndicator": {"type": "string"}, "validUntil": {"type": "string"}, "tppRedirectUri": {"type": "object", "properties": {"uri": {"type": "string"}, "nokUri": {"type": "string"}}, "required": ["uri", "nokUri"]}}, "required": ["access", "frequencyPerDay", "recurringIndicator", "validUntil", "tppRedirectUri"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"access" : {"accounts" : [{"aspspAccountId" : "3278921mxl-n2131-13nw", "resourceId" : "accountId", "iban" : "Test IBAN", "bban" : "Test BBAN", "pan" : "Test PAN", "maskedPan" : "Test MASKED_PAN", "msisdn" : "Test MSISDN", "currency" : "EUR"}], "balances" : [], "transactions" : [], "additionalInformationAccess" : {"ownerAddress" : [{"iban" : "Test IBAN"}]}}, "frequencyPerDay" : "1", "recurringIndicator" : "false", "validUntil" : "2017-08-06", "tppRedirectUri" : {"uri" : "ok.url", "nokUri" : "nok.url"}} | json_instruct | {"type": "object", "properties": {"access": {"type": "object", "properties": {"accounts": {"type": "array", "items": {"type": "object", "properties": {"aspspAccountId": {"type": "string"}, "resourceId": {"type": "string"}, "iban": {"type": "string"}, "bban": {"type": "string"}, "pan": {"type": "string"}, "maskedPan": {"type": "string"}, "msisdn": {"type": "string"}, "currency": {"type": "string"}}, "required": ["aspspAccountId", "resourceId", "iban", "bban", "pan", "maskedPan", "msisdn", "currency"]}}, "balances": {"type": "array", "items": {}}, "transactions": {"type": "array", "items": {}}, "additionalInformationAccess": {"type": "object", "properties": {"ownerAddress": {"type": "array", "items": {"type": "object", "properties": {"iban": {"type": "string"}}, "required": ["iban"]}}}, "required": ["ownerAddress"]}}, "required": ["accounts", "balances", "transactions", "additionalInformationAccess"]}, "frequencyPerDay": {"type": "string"}, "recurringIndicator": {"type": "string"}, "validUntil": {"type": "string"}, "tppRedirectUri": {"type": "object", "properties": {"uri": {"type": "string"}, "nokUri": {"type": "string"}}, "required": ["uri", "nokUri"]}}, "required": ["access", "frequencyPerDay", "recurringIndicator", "validUntil", "tppRedirectUri"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "f96fe1255a724381f0e2", "c" : {}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {}, "required": []}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"json": {"type": "object", "properties": {"card_data": {"type": "object", "properties": {"card_type": {"type": "string"}}, "required": ["card_type"]}}, "required": ["card_data"]}}, "required": ["json"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"json" : {"card_data" : {"card_type" : "VISA"}}} | json_instruct | {"type": "object", "properties": {"json": {"type": "object", "properties": {"card_data": {"type": "object", "properties": {"card_type": {"type": "string"}}, "required": ["card_type"]}}, "required": ["card_data"]}}, "required": ["json"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"electorateName": {"type": "string"}, "electorateShortName": {"type": "string"}, "area": {"type": "number"}, "state": {"type": "null"}}, "required": ["electorateName", "electorateShortName", "area", "state"]}, "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"]}, "bbox": {"type": "array", "items": {"type": "number"}}}, "required": ["properties", "type", "geometry", "bbox"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"properties" : {"electorateName" : "Scullin", "electorateShortName" : "scullin", "area" : 116.35, "state" : null}, "type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.10354, -37.682943], [145.084496, -37.676567], [145.103321, -37.661361], [145.11624, -37.617721], [145.104953, -37.601684], [145.08197, -37.598964], [145.079541, -37.613529], [144.952624, -37.60034], [144.958548, -37.63442], [144.976277, -37.650083], [144.972061, -37.690999], [145.058219, -37.699983], [145.068238, -37.686063], [145.099642, -37.689468], [145.10354, -37.682943]]]}, "bbox" : [144.952624, -37.699983, 145.11624, -37.598964]}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"electorateName": {"type": "string"}, "electorateShortName": {"type": "string"}, "area": {"type": "number"}, "state": {"type": "null"}}, "required": ["electorateName", "electorateShortName", "area", "state"]}, "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"]}, "bbox": {"type": "array", "items": {"type": "number"}}}, "required": ["properties", "type", "geometry", "bbox"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "AL-QADEER", "frequency" : 1, "males" : "100.0 %", "females" : "0.0 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "snippet": {"type": "string"}, "props": {"type": "array", "items": {}}}, "required": ["id", "displayName", "snippet", "props"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "managedRadioButtonField", "displayName" : "ManagedRadioButtonField", "snippet" : "<ManagedRadioButtonField> </ManagedRadioButtonField>", "props" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "displayName": {"type": "string"}, "snippet": {"type": "string"}, "props": {"type": "array", "items": {}}}, "required": ["id", "displayName", "snippet", "props"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"failure_rate": {"type": "number"}, "num_node_expansions": {"type": "number"}, "num_node_expansions_std": {"type": "number"}, "plan_length": {"type": "number"}, "plan_length_std": {"type": "number"}, "search_time": {"type": "number"}, "search_time_std": {"type": "number"}, "success_rate": {"type": "number"}, "timeout_rate": {"type": "number"}, "total_time": {"type": "number"}, "total_time_std": {"type": "number"}}, "required": ["failure_rate", "num_node_expansions", "num_node_expansions_std", "plan_length", "plan_length_std", "search_time", "search_time_std", "success_rate", "timeout_rate", "total_time", "total_time_std"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"failure_rate" : 0.0, "num_node_expansions" : 596.2857142857143, "num_node_expansions_std" : 202.53351112655827, "plan_length" : 130.52380952380952, "plan_length_std" : 13.16061602125664, "search_time" : 0.42040799999999995, "search_time_std" : 0.25151032701698445, "success_rate" : 0.12209302325581395, "timeout_rate" : 0.877906976744186, "total_time" : 1.9278679047619047, "total_time_std" : 0.9894244473207598} | json_instruct | {"type": "object", "properties": {"failure_rate": {"type": "number"}, "num_node_expansions": {"type": "number"}, "num_node_expansions_std": {"type": "number"}, "plan_length": {"type": "number"}, "plan_length_std": {"type": "number"}, "search_time": {"type": "number"}, "search_time_std": {"type": "number"}, "success_rate": {"type": "number"}, "timeout_rate": {"type": "number"}, "total_time": {"type": "number"}, "total_time_std": {"type": "number"}}, "required": ["failure_rate", "num_node_expansions", "num_node_expansions_std", "plan_length", "plan_length_std", "search_time", "search_time_std", "success_rate", "timeout_rate", "total_time", "total_time_std"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"station" : [{"pref_cd" : 35, "line_cd" : 11612, "line_name" : "JR\u5c71\u967d\u672c\u7dda(\u5ca9\u56fd\uff5e\u9580\u53f8)", "station_cd" : 1161215, "station_g_cd" : 1161215, "station_name" : "\u6adb\u30b1\u6d5c", "lon" : 131.829079, "lat" : 34.031002}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["pref_cd", "line_cd", "line_name", "station_cd", "station_g_cd", "station_name", "lon", "lat"]}}}, "required": ["station"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "activationEvents": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "contributes": {"type": "object", "properties": {"snippets": {"type": "array", "items": {"type": "object", "properties": {"language": {"type": "string"}, "path": {"type": "string"}}, "required": ["language", "path"]}}}, "required": ["snippets"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "test": {"type": "string"}}, "required": ["postinstall", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "eslint": {"type": "string"}, "typescript": {"type": "string"}, "vscode": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "eslint", "typescript", "vscode"]}}, "required": ["name", "displayName", "description", "version", "publisher", "icon", "license", "repository", "galleryBanner", "engines", "keywords", "categories", "activationEvents", "main", "contributes", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "firebase-firestore-snippets", "displayName" : "Firebase/Firestore Snippets", "description" : "Snippets for both Firebase and Firestore!", "version" : "0.0.8", "publisher" : "PeterHdd", "icon" : "images/firebase.png", "license" : "SEE LICENSE IN LICENSE.md", "repository" : {"type" : "git", "url" : "https://github.com/PeterHdd/firebase-firestore-snippets"}, "galleryBanner" : {"color" : "#ed9421", "theme" : "dark"}, "engines" : {"vscode" : "^1.20.0"}, "keywords" : ["firestore", "firebase", "firebase and firebase snippets", "snippets"], "categories" : ["Snippets"], "activationEvents" : ["onCommand:extension.sayHello"], "main" : "./extension", "contributes" : {"snippets" : [{"language" : "javascript", "path" : "./snippets/snippets.json"}, {"language" : "html", "path" : "./snippets/snippets.json"}, {"language" : "vue", "path" : "./snippets/snippets.json"}, {"language" : "typescript", "path" : "./snippets/snippets.json"}, {"language" : "javascriptreact", "path" : "./snippets/snippets.json"}, {"language" : "typescriptreact", "path" : "./snippets/snippets.json"}]}, "scripts" : {"postinstall" : "node ./node_modules/vscode/bin/install", "test" : "node ./node_modules/vscode/bin/test"}, "devDependencies" : {"@types/mocha" : "^2.2.42", "@types/node" : "^7.0.43", "eslint" : "^4.11.0", "typescript" : "^2.6.1", "vscode" : "^1.1.36"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "publisher": {"type": "string"}, "icon": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "galleryBanner": {"type": "object", "properties": {"color": {"type": "string"}, "theme": {"type": "string"}}, "required": ["color", "theme"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "categories": {"type": "array", "items": {"type": "string"}}, "activationEvents": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "contributes": {"type": "object", "properties": {"snippets": {"type": "array", "items": {"type": "object", "properties": {"language": {"type": "string"}, "path": {"type": "string"}}, "required": ["language", "path"]}}}, "required": ["snippets"]}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}, "test": {"type": "string"}}, "required": ["postinstall", "test"]}, "devDependencies": {"type": "object", "properties": {"@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "eslint": {"type": "string"}, "typescript": {"type": "string"}, "vscode": {"type": "string"}}, "required": ["@types/mocha", "@types/node", "eslint", "typescript", "vscode"]}}, "required": ["name", "displayName", "description", "version", "publisher", "icon", "license", "repository", "galleryBanner", "engines", "keywords", "categories", "activationEvents", "main", "contributes", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-UA-Compatible": {"type": "string"}}, "required": ["Cache-Control", "Content-Length", "Content-Type", "Date", "Server", "Set-Cookie", "X-Frame-Options", "X-UA-Compatible"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "1.048", "endpoint-url" : "https://www.islington.gov.uk/-/media/sharepoint-lists/public-records/planningandbuildingcontrol/publicity/publicnotices/20182019/20181220islingtonbrownfieldregister20181219rev2.csv?la=en&hash=BD4AF465F4359F72EC98432F08F7A510EF32A002", "entry-date" : "2021-02-21T00:11:21.901460", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "Cookie" : "ARRAffinity=5c7ba63390f30ae002fc64bf502bc32ea0ecfc78698edd90318f24cedc9fe41b; ARRAffinitySameSite=5c7ba63390f30ae002fc64bf502bc32ea0ecfc78698edd90318f24cedc9fe41b", "User-Agent" : "Digital Land"}, "response-headers" : {"Cache-Control" : "private", "Content-Length" : "26853", "Content-Type" : "text/html; charset=utf-8", "Date" : "Sun, 21 Feb 2021 00:18:36 GMT", "Server" : "Microsoft-IIS/10.0", "Set-Cookie" : "{05DAD3A3-7484-411E-9233-D9F052219632}-CurrentCycle=Cycle=0; path=/, ASP.NET_SessionId=3pldw0qd4xahrey12fjcbfmf; path=/; HttpOnly; SameSite=Lax, {05DAD3A3-7484-411E-9233-D9F052219632}-CurrentCycle=Cycle=0; path=/, ASP.NET_SessionId=3pldw0qd4xahrey12fjcbfmf; path=/; HttpOnly; SameSite=Lax, __RequestVerificationToken=egvQb-U8DDYxLqViVkcHY5D-_d0VObrJm2O_zL9xp02qOHoVc4hoW0QnpIW1vzHGwNSBMLiK1sEoPaWq2r_T5m8PR5UGj_9AK0gjiTaT3P81; path=/; HttpOnly", "X-Frame-Options" : "SAMEORIGIN", "X-UA-Compatible" : "IE=edge"}, "ssl-verify" : true, "status" : "404"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "Cookie": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "Cookie", "User-Agent"]}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "Server": {"type": "string"}, "Set-Cookie": {"type": "string"}, "X-Frame-Options": {"type": "string"}, "X-UA-Compatible": {"type": "string"}}, "required": ["Cache-Control", "Content-Length", "Content-Type", "Date", "Server", "Set-Cookie", "X-Frame-Options", "X-UA-Compatible"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "request-headers", "response-headers", "ssl-verify", "status"], "$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"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "bundle", "id" : "bundle--299d4c68-9752-435c-a327-de7526646ce1", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "malware--e2d34c63-6f5a-41f5-86a2-e2380f27f858", "target_ref" : "attack-pattern--df8b2a25-8bdf-4856-953c-a04372b1c161", "external_references" : [{"source_name" : "CISA AppleJeus Feb 2021", "url" : "https://us-cert.cisa.gov/ncas/alerts/aa21-048a", "description" : "Cybersecurity and Infrastructure Security Agency. (2021, February 21). AppleJeus: Analysis of North Korea\u2019s Cryptocurrency Malware. Retrieved March 1, 2021."}], "description" : "[AppleJeus](https://attack.mitre.org/software/S0584) has sent data to its C2 server via <code>POST</code> requests.(Citation: CISA AppleJeus Feb 2021)", "relationship_type" : "uses", "id" : "relationship--438d3e9d-2a1d-48ba-b615-8ccb502dd15e", "type" : "relationship", "modified" : "2021-03-03T21:21:26.836Z", "created" : "2021-03-02T18:16:41.018Z"}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {"type": "string"}, "target_ref": {"type": "string"}, "external_references": {"type": "array", "items": {"type": "object", "properties": {"source_name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}}, "required": ["source_name", "url", "description"]}}, "description": {"type": "string"}, "relationship_type": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "modified": {"type": "string"}, "created": {"type": "string"}}, "required": ["created_by_ref", "object_marking_refs", "source_ref", "target_ref", "external_references", "description", "relationship_type", "id", "type", "modified", "created"]}}}, "required": ["type", "id", "spec_version", "objects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"content" : "Freezing unemployment benefit for 2 years is easier for you to do then ensure your rich mates pay a fair rate of tax. #BattleForNumber10", "entities" : [{"entity" : "unemployment", "type" : "topic keyword", "id" : 2, "offset" : 9}], "topics" : [{"topic" : "public spending", "id" : 1}], "tweet_id" : "581207019895537665"} | json_instruct | {"type": "object", "properties": {"content": {"type": "string"}, "entities": {"type": "array", "items": {"type": "object", "properties": {"entity": {"type": "string"}, "type": {"type": "string"}, "id": {"type": "integer"}, "offset": {"type": "integer"}}, "required": ["entity", "type", "id", "offset"]}}, "topics": {"type": "array", "items": {"type": "object", "properties": {"topic": {"type": "string"}, "id": {"type": "integer"}}, "required": ["topic", "id"]}}, "tweet_id": {"type": "string"}}, "required": ["content", "entities", "topics", "tweet_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"subreddit" : "Cornell", "hour" : "01", "avg" : 7.28125}, {"subreddit" : "Cornell", "hour" : "02", "avg" : 4.411764705882353}, {"subreddit" : "Cornell", "hour" : "03", "avg" : 11.225}, {"subreddit" : "Cornell", "hour" : "04", "avg" : 9.333333333333334}, {"subreddit" : "Cornell", "hour" : "05", "avg" : 5.433333333333334}, {"subreddit" : "Cornell", "hour" : "06", "avg" : 10.64}, {"subreddit" : "Cornell", "hour" : "07", "avg" : 1.5}, {"subreddit" : "Cornell", "hour" : "08", "avg" : 20.333333333333332}, {"subreddit" : "Cornell", "hour" : "09", "avg" : 3.875}, {"subreddit" : "Cornell", "hour" : "10", "avg" : 2.5714285714285716}, {"subreddit" : "Cornell", "hour" : "11", "avg" : 10.444444444444445}, {"subreddit" : "Cornell", "hour" : "12", "avg" : 14.875}, {"subreddit" : "Cornell", "hour" : "13", "avg" : 18.571428571428573}, {"subreddit" : "Cornell", "hour" : "14", "avg" : 5.269230769230769}, {"subreddit" : "Cornell", "hour" : "15", "avg" : 10.263157894736842}, {"subreddit" : "Cornell", "hour" : "16", "avg" : 11.837209302325581}, {"subreddit" : "Cornell", "hour" : "17", "avg" : 11.675675675675675}, {"subreddit" : "Cornell", "hour" : "18", "avg" : 4.6976744186046515}, {"subreddit" : "Cornell", "hour" : "19", "avg" : 6.088235294117647}, {"subreddit" : "Cornell", "hour" : "20", "avg" : 5.080645161290323}, {"subreddit" : "Cornell", "hour" : "21", "avg" : 8.735849056603774}, {"subreddit" : "Cornell", "hour" : "22", "avg" : 16.818181818181817}, {"subreddit" : "Cornell", "hour" : "23", "avg" : 14.136363636363637}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subreddit": {"type": "string"}, "hour": {"type": "string"}, "avg": {"type": "number"}}, "required": ["subreddit", "hour", "avg"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "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" : [{"author" : "Chang-Jun Men"}, {"author" : "Shashank Kumar Singh"}, {"author" : "Guo-Liang Zhang"}, {"author" : "Ye Wang"}, {"author" : "Cong-Wei Liu"}], "doi" : "10.12998/wjcc.v8.i15.3341", "publication_date" : "2020-09-03", "id" : "EN110644", "url" : "https://pubmed.ncbi.nlm.nih.gov/32874991", "source" : "World journal of clinical cases", "source_url" : "", "licence" : "CC BY-NC", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We report a rare case of acute suppurative oesophagitis. A 57-year-old man presented at the Emergency Department of our hospital with fever and productive cough. The patient had a significant history of lower oesophageal mucosal frostbite. He was successfully diagnosed and treated with repeated gastroscopy, appropriate antibiotics, and innovative symptomatic treatment."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900796262": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900796263": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900796264": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900796262", "900796263", "900796264"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900796262" : {"nama" : "TPS 1", "dapil" : [9101, 19106, 2910203]}, "900796263" : {"nama" : "TPS 2", "dapil" : [9101, 19106, 2910203]}, "900796264" : {"nama" : "TPS 3", "dapil" : [9101, 19106, 2910203]}} | json_instruct | {"type": "object", "properties": {"900796262": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900796263": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900796264": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900796262", "900796263", "900796264"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"created": {"type": "string"}, "last_updated": {"type": "string"}, "summoner_id": {"type": "integer"}, "platform": {"type": "string"}, "queue_type": {"type": "string"}, "match_creation": {"type": "integer"}, "champion_id": {"type": "integer"}, "lane": {"type": "string"}, "champion_index": {"type": "integer"}, "map_id": {"type": "integer"}, "match_duration": {"type": "integer"}, "match_id": {"type": "integer"}, "match_mode": {"type": "string"}, "match_type": {"type": "string"}, "match_version": {"type": "string"}, "off_meta": {"type": "boolean"}, "opponent_champion_id": {"type": "integer"}, "role": {"type": "string"}, "summoner_name": {"type": "string"}, "winner": {"type": "boolean"}, "tier": {"type": "string"}, "division": {"type": "string"}, "kills": {"type": "integer"}, "deaths": {"type": "integer"}, "assists": {"type": "integer"}}, "required": ["created", "last_updated", "summoner_id", "platform", "queue_type", "match_creation", "champion_id", "lane", "champion_index", "map_id", "match_duration", "match_id", "match_mode", "match_type", "match_version", "off_meta", "opponent_champion_id", "role", "summoner_name", "winner", "tier", "division", "kills", "deaths", "assists"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"created" : "2016-01-02T03:04:05.000000006Z", "last_updated" : "2016-01-02T03:04:05.000000006Z", "summoner_id" : 26337245, "platform" : "NA1", "queue_type" : "RANKED_FLEX_SR", "match_creation" : 1478934818941, "champion_id" : 57, "lane" : "TOP", "champion_index" : 4, "map_id" : 11, "match_duration" : 1857, "match_id" : 2344262088, "match_mode" : "CLASSIC", "match_type" : "MATCHED_GAME", "match_version" : "6.22.165.3566", "off_meta" : false, "opponent_champion_id" : 75, "role" : "SOLO", "summoner_name" : "Lumix3", "winner" : true, "tier" : "", "division" : "", "kills" : 3, "deaths" : 3, "assists" : 12} | json_instruct | {"type": "object", "properties": {"created": {"type": "string"}, "last_updated": {"type": "string"}, "summoner_id": {"type": "integer"}, "platform": {"type": "string"}, "queue_type": {"type": "string"}, "match_creation": {"type": "integer"}, "champion_id": {"type": "integer"}, "lane": {"type": "string"}, "champion_index": {"type": "integer"}, "map_id": {"type": "integer"}, "match_duration": {"type": "integer"}, "match_id": {"type": "integer"}, "match_mode": {"type": "string"}, "match_type": {"type": "string"}, "match_version": {"type": "string"}, "off_meta": {"type": "boolean"}, "opponent_champion_id": {"type": "integer"}, "role": {"type": "string"}, "summoner_name": {"type": "string"}, "winner": {"type": "boolean"}, "tier": {"type": "string"}, "division": {"type": "string"}, "kills": {"type": "integer"}, "deaths": {"type": "integer"}, "assists": {"type": "integer"}}, "required": ["created", "last_updated", "summoner_id", "platform", "queue_type", "match_creation", "champion_id", "lane", "champion_index", "map_id", "match_duration", "match_id", "match_mode", "match_type", "match_version", "off_meta", "opponent_champion_id", "role", "summoner_name", "winner", "tier", "division", "kills", "deaths", "assists"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "Type": {"type": "string"}, "Attrs": {"type": "object", "properties": {"arn": {"type": "string"}, "id": {"type": "string"}, "target_key_arn": {"type": "string"}, "target_key_id": {"type": "string"}}, "required": ["arn", "id", "target_key_arn", "target_key_id"]}}, "required": ["Id", "Type", "Attrs"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Id" : "alias/bar", "Type" : "aws_kms_alias", "Attrs" : {"arn" : "arn:aws:kms:eu-west-3:047081014315:alias/bar", "id" : "alias/bar", "target_key_arn" : "arn:aws:kms:eu-west-3:047081014315:key/341b2d76-feab-4911-b5de-fbdd92b21aa7", "target_key_id" : "341b2d76-feab-4911-b5de-fbdd92b21aa7"}}, {"Id" : "alias/baz20210225124429210500000001", "Type" : "aws_kms_alias", "Attrs" : {"arn" : "arn:aws:kms:eu-west-3:047081014315:alias/baz20210225124429210500000001", "id" : "alias/baz20210225124429210500000001", "target_key_arn" : "arn:aws:kms:eu-west-3:047081014315:key/341b2d76-feab-4911-b5de-fbdd92b21aa7", "target_key_id" : "341b2d76-feab-4911-b5de-fbdd92b21aa7"}}, {"Id" : "alias/foo", "Type" : "aws_kms_alias", "Attrs" : {"arn" : "arn:aws:kms:eu-west-3:047081014315:alias/foo", "id" : "alias/foo", "target_key_arn" : "arn:aws:kms:eu-west-3:047081014315:key/341b2d76-feab-4911-b5de-fbdd92b21aa7", "target_key_id" : "341b2d76-feab-4911-b5de-fbdd92b21aa7"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "Type": {"type": "string"}, "Attrs": {"type": "object", "properties": {"arn": {"type": "string"}, "id": {"type": "string"}, "target_key_arn": {"type": "string"}, "target_key_id": {"type": "string"}}, "required": ["arn", "id", "target_key_arn", "target_key_id"]}}, "required": ["Id", "Type", "Attrs"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/wired/secretdoor/secretdoor.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/wired/secretdoor/secretdoor.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/shortdescription"]}, "Texts" : {"Eng" : "Secret Door", "Rus" : "\u041f\u043e\u0442\u0430\u0439\u043d\u0430\u044f \u0434\u0432\u0435\u0440\u044c"}}, {"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/novakidDescription"]}, "Texts" : {"Eng" : "Somethin ain't right about this wall...", "Rus" : "\u0421 \u044d\u0442\u043e\u0439 \u0441\u0442\u0435\u043d\u043e\u0439 \u0447\u0442\u043e-\u0442\u043e \u043d\u0435 \u0442\u0430\u043a..."}}, {"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/hylotlDescription"]}, "Texts" : {"Eng" : "There is something odd about this wall...", "Rus" : "\u0412 \u044d\u0442\u043e\u0439 \u0441\u0442\u0435\u043d\u0435 \u0435\u0441\u0442\u044c \u0447\u0442\u043e-\u0442\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0435..."}}, {"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/apexDescription", "/avianDescription", "/humanDescription"]}, "Texts" : {"Eng" : "There's something odd about this wall...", "Rus" : "\u0412 \u044d\u0442\u043e\u0439 \u0441\u0442\u0435\u043d\u0435 \u0435\u0441\u0442\u044c \u0447\u0442\u043e-\u0442\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0435..."}}, {"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/glitchDescription/glitchEmotedText"]}, "Texts" : {"Eng" : "This wall does not appear natural...", "Rus" : "\u042d\u0442\u0430 \u0441\u0442\u0435\u043d\u0430 \u043d\u0435 \u0432\u044b\u0433\u043b\u044f\u0434\u0438\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439..."}}, {"DeniedAlternatives" : [], "Files" : {"objects/wired/secretdoor/secretdoor.object" : ["/floranDescription"]}, "Texts" : {"Eng" : "Wall is ssstrange...", "Rus" : "\u0421\u0441\u0441\u0442\u0440\u0430\u043d\u043d\u0430\u044f \u0441\u0441\u0441\u0442\u0435\u043d\u0430..."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/wired/secretdoor/secretdoor.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/wired/secretdoor/secretdoor.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$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"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Viewer of Binary Authorization Attestors", "etag" : "AA==", "includedPermissions" : ["binaryauthorization.attestors.get", "binaryauthorization.attestors.list", "resourcemanager.projects.get", "resourcemanager.projects.list"], "name" : "roles/binaryauthorization.attestorsViewer", "stage" : "GA", "title" : "Binary Authorization Attestor Viewer"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "etag": {"type": "string"}, "includedPermissions": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "stage": {"type": "string"}, "title": {"type": "string"}}, "required": ["description", "etag", "includedPermissions", "name", "stage", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"swagger-ui-watcher": {"type": "string"}}, "required": ["swagger-ui-watcher"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "scripts", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@songphi/spapi", "version" : "0.0.8", "description" : "SPAPI is simple tool helping design Swagger API and code generation to Laravel, Lumen, Angular, ReactNative", "main" : "spapi.js", "repository" : "https://github.com/SongPhi/spapi", "author" : "Thao Le <[email protected]>", "license" : "MIT", "dependencies" : {"swagger-ui-watcher" : "^2.0.0"}, "scripts" : {"test" : "echo 'No test defined!'"}, "publishConfig" : {"access" : "public"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"swagger-ui-watcher": {"type": "string"}}, "required": ["swagger-ui-watcher"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "dependencies", "scripts", "publishConfig"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u4e16\u7d00\u92fc\u9435\u7d50\u69cb\u80a1\u4efd\u6709\u9650\u516c\u53f8\u91d1\u6e56\u4e00\u5ee0", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99688861", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u89c0\u97f3\u5340\u91d1\u6e56\u91cc\u4e2d\u5c71\u8def\u4e00\u6bb51171\u5df740\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u6843\u5712\u5e02\u89c0\u97f3\u5340\u91d1\u6e56\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u8cf4\u6587\u7965", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "22649001", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0950306", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["252\u91d1\u5c6c\u7d50\u69cb\u53ca\u5efa\u7bc9\u7d44\u4ef6"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.ko.js": {"type": "string"}, "survey.ko.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.ko.js", "survey.ko.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha512-r/63grhfsfXzSv46GtOv4m3m2Xy3jRRRChry3eBOPfVyJXJHbzRIO4B2MEOROaHjRlikZ3S+/PwXh3CUYIcagw==", "survey.ko.js" : "sha512-5g+WSf6dY4GKv2iVExYciH/VsHbfxIxKRmZvvK+8fLwGvk89Ix1h9QqAu4Z8NA7SSoSBT7lBBAlohY6xUl3P4g==", "survey.ko.min.js" : "sha512-7UpfVnaFukB1aba9/Jhw2AXE1RqNBmFmELlaglIXKJ+Z9LmBMOBkgCkGLJiysoP+Fe8GtRCoAcOUPkeRUCd1uA==", "survey.min.css" : "sha512-gvpB1YxxFtx+Te1FYsfFUb+p83kTOc7F+/olttzmGEZryUDJeKXebn4WmKWnc9bOVF298CHNKoYvC7tuC5Ubsw=="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.ko.js": {"type": "string"}, "survey.ko.min.js": {"type": "string"}, "survey.min.css": {"type": "string"}}, "required": ["survey.css", "survey.ko.js", "survey.ko.min.js", "survey.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"country": {"type": "string"}, "github": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "github", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"country" : "NY, USA", "github" : "andresdominguez", "home" : "http://www.andresdominguez.com/", "name" : "Andres Dominguez", "twitter" : "andresdom"} | json_instruct | {"type": "object", "properties": {"country": {"type": "string"}, "github": {"type": "string"}, "home": {"type": "string"}, "name": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["country", "github", "home", "name", "twitter"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["libxshmfence-cos7-aarch64"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "spam-blacklist-desc": {"type": "string"}}, "required": ["@metadata", "spam-blacklist-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Michaello"]}, "spam-blacklist-desc" : "Antispam oru\u0111e zasnovano na regularnim izrazima: [[MediaWiki:Spam-blacklist]] i [[MediaWiki:Spam-whitelist]]"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "spam-blacklist-desc": {"type": "string"}}, "required": ["@metadata", "spam-blacklist-desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"pci_projects_creating_main_title": {"type": "string"}, "pci_projects_creating_secondary_title": {"type": "string"}, "pci_projects_creating_explain1": {"type": "string"}, "pci_projects_creating_explain2": {"type": "string"}, "pci_projects_creating_long_time": {"type": "string"}, "pci_projects_creating_long_time_wait": {"type": "string"}, "pci_projects_creating_guides": {"type": "string"}, "pci_projects_creating_other_projects": {"type": "string"}, "pci_projects_creating_delivery_error": {"type": "string"}}, "required": ["pci_projects_creating_main_title", "pci_projects_creating_secondary_title", "pci_projects_creating_explain1", "pci_projects_creating_explain2", "pci_projects_creating_long_time", "pci_projects_creating_long_time_wait", "pci_projects_creating_guides", "pci_projects_creating_other_projects", "pci_projects_creating_delivery_error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pci_projects_creating_main_title" : "La tua avventura Public Cloud ha inizio!", "pci_projects_creating_secondary_title" : "Creazione del progetto in corso...", "pci_projects_creating_explain1" : "Per completare la creazione del progetto \u00e8 necessario effettuare il pagamento del modulo d'ordine <a href=\"{{ href }}\">{{ orderId }}</a>.", "pci_projects_creating_explain2" : "Se visualizzi ancora questa pagina qualche minuto dopo aver effettuato il pagamento, contatta il <a href=\"{{ href }}\">supporto</a>.", "pci_projects_creating_long_time" : "L\u2019operazione potrebbe richiedere qualche minuto.", "pci_projects_creating_long_time_wait" : "Nel frattempo, puoi consultare le guide disponibili o gli altri tuoi progetti :)", "pci_projects_creating_guides" : "Guide Public Cloud", "pci_projects_creating_other_projects" : "I tuoi altri progetti", "pci_projects_creating_delivery_error" : "Si \u00e8 verificato un errore durante la creazione del tuo progetto Public Cloud, ti invitiamo a riprovare. Lo risolveremo il prima possibile. Riceverai un'e-mail che conferma la sua buona creazione. Vi ringraziamo per la vostra pazienza e ci scusiamo per l'inconveniente causato."} | json_instruct | {"type": "object", "properties": {"pci_projects_creating_main_title": {"type": "string"}, "pci_projects_creating_secondary_title": {"type": "string"}, "pci_projects_creating_explain1": {"type": "string"}, "pci_projects_creating_explain2": {"type": "string"}, "pci_projects_creating_long_time": {"type": "string"}, "pci_projects_creating_long_time_wait": {"type": "string"}, "pci_projects_creating_guides": {"type": "string"}, "pci_projects_creating_other_projects": {"type": "string"}, "pci_projects_creating_delivery_error": {"type": "string"}}, "required": ["pci_projects_creating_main_title", "pci_projects_creating_secondary_title", "pci_projects_creating_explain1", "pci_projects_creating_explain2", "pci_projects_creating_long_time", "pci_projects_creating_long_time_wait", "pci_projects_creating_guides", "pci_projects_creating_other_projects", "pci_projects_creating_delivery_error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"liveId" : "5caaef050cf20f4b9b936799", "title" : "\u51af\u601d\u4f73\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u3002", "picPath" : "/mediasource/live/15476240352635h8tRw1XId.jpg", "startTime" : 1554706181912, "memberId" : 327587, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5caaef050cf20f4b9b936799.lrc", "streamPath" : "http://liveplaylk.lvb.eastmoney.com/live/2519_3730984.flv?txSecret=68a633f8f8a91a702f932f4e5ca45df8&txTime=5CAC4086", "screenMode" : 0, "roomId" : "3871130", "bwqaVersion" : 0}, {"liveId" : "5caae4a90cf20f4b9b936798", "title" : "\u6b66\u6653\u8fea\u7684\u76f4\u64ad\u95f4", "subTitle" : "\u554a\u5478\uff01\u6211\u6765\u4e86", "picPath" : "/mediasource/live/15535233656988xxiUKadb1.png", "startTime" : 1554703529677, "memberId" : 874717, "liveType" : 1, "picLoopTime" : 0, "lrcPath" : "/mediasource/live/lrc/5caae4a90cf20f4b9b936798.lrc", "streamPath" : "http://liveplaylk.lvb.eastmoney.com/live/2519_3730952.flv?txSecret=0aecafbdffa7d205da80ac900a71cb6d&txTime=5CAC3629", "screenMode" : 0, "roomId" : "63374977", "bwqaVersion" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"liveId": {"type": "string"}, "title": {"type": "string"}, "subTitle": {"type": "string"}, "picPath": {"type": "string"}, "startTime": {"type": "integer"}, "memberId": {"type": "integer"}, "liveType": {"type": "integer"}, "picLoopTime": {"type": "integer"}, "lrcPath": {"type": "string"}, "streamPath": {"type": "string"}, "screenMode": {"type": "integer"}, "roomId": {"type": "string"}, "bwqaVersion": {"type": "integer"}}, "required": ["liveId", "title", "subTitle", "picPath", "startTime", "memberId", "liveType", "picLoopTime", "lrcPath", "streamPath", "screenMode", "roomId", "bwqaVersion"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"redux-persist.js": {"type": "string"}, "redux-persist.min.js": {"type": "string"}}, "required": ["redux-persist.js", "redux-persist.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"redux-persist.js" : "sha512-BrWqk6iM8wYf7c9Ppst8nkAbAgnkJb4AumBWyFVI57Vg8PdubwlEXYaM0xODTXTfnPrZFCOa6BeCkzc4qEKx8g==", "redux-persist.min.js" : "sha512-u09ycOK5e+bXSBjErv0D8dWWriqN16KZ03pfeRwRh8Q2WtbCUytgflcvpsxzCds332zlTLjx6eJKGZImh4JmpQ=="} | json_instruct | {"type": "object", "properties": {"redux-persist.js": {"type": "string"}, "redux-persist.min.js": {"type": "string"}}, "required": ["redux-persist.js", "redux-persist.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : 166, "Description" : "What does coughing up of clear phlegm indicate while treating pneumonia?\r\n\r\n", "DialogueText" : "Patient:\r\nI was diagnosed with pneumonia 2 days ago at med express and was given a prescription for levoquin. I cough up clear phlegm. My research tells me I m being treated for bacterial pneumonia but the clear phlegm ,Indicates viral pneumonia. I m a 67 year old male who quit smoking last November.\r\nDoctor:\r\nHello sir,Seeing at your history would like to know more about your case.Want to look at your chest x ray first.and if its definitely diagnosed pnemonia, then in case you could be right that it could be viral pneumonia.but you can't stamp it as viral from clear phlegm. Get done white blood counts which will be within normal limits in case of viral and high in case of bacterial pneumonia. Also get done Procalcitonin and CRP level of your blood. it will give you final idea.And as you were smoker phlegm might be due to Bronchiectesis or COPD. rule out that.\r\n\r\n"} | json_instruct | {"type": "object", "properties": {"Id": {"type": "integer"}, "Description": {"type": "string"}, "DialogueText": {"type": "string"}}, "required": ["Id", "Description", "DialogueText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "site-plan-url": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "planning-permission-history": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "notes", "hectares", "site", "name", "planning-permission-status", "point", "site-plan-url", "start-date", "maximum-net-dwellings", "ownership-status", "planning-permission-history", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.027622, 53.45108]}, "properties" : {"minimum-net-dwellings" : "7", "organisation" : "local-authority-eng:TAM", "notes" : "Former Peak Valley housing office. Cleared site partially landscaped following demolition of offices.", "hectares" : "0.19", "site" : "H-LONGDE-112", "name" : "H-LONGDE-112", "planning-permission-status" : "not permissioned", "point" : "POINT(-2.027622 53.45108)", "site-plan-url" : "https://www.tameside.gov.uk/planning/brownfieldregister/h-longde-112.pdf", "start-date" : "2017-12-04", "maximum-net-dwellings" : "7", "ownership-status" : "not owned by a public authority", "planning-permission-history" : "https://public.tameside.gov.uk/plan/f422planapp.asp", "site-address" : "Land on corner of Hattersley Road East and Underwood Road, Hyde.", "slug" : "/brownfield-land/local-authority-eng/TAM/H-LONGDE-112", "entity" : 496177, "entry-date" : "2017-12-04"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"minimum-net-dwellings": {"type": "string"}, "organisation": {"type": "string"}, "notes": {"type": "string"}, "hectares": {"type": "string"}, "site": {"type": "string"}, "name": {"type": "string"}, "planning-permission-status": {"type": "string"}, "point": {"type": "string"}, "site-plan-url": {"type": "string"}, "start-date": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "planning-permission-history": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["minimum-net-dwellings", "organisation", "notes", "hectares", "site", "name", "planning-permission-status", "point", "site-plan-url", "start-date", "maximum-net-dwellings", "ownership-status", "planning-permission-history", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 8120, "UUID" : "DD61F5AA-E315-4C89-9738-CBF4C3870498", "DataProviderID" : 15, "DataProvidersReference" : "10879", "OperatorID" : 1, "UsageTypeID" : 1, "AddressInfo" : {"ID" : 8017, "Title" : "71 4th Street NW", "AddressLine1" : "71 4th Street NW", "Town" : "Atlanta", "StateOrProvince" : "GA", "Postcode" : "30307", "CountryID" : 2, "Latitude" : 33.77521, "Longitude" : -84.38931, "ContactTelephone1" : "", "RelatedURL" : "http://carstations.com/10879", "DistanceUnit" : 0}, "Connections" : [{"ID" : 5549, "ConnectionTypeID" : 1, "Reference" : "J1772", "LevelID" : 2}], "NumberOfPoints" : 2, "StatusTypeID" : 0, "DateLastStatusUpdate" : "2017-11-04T14:04:00Z", "DataQualityLevel" : 1, "DateCreated" : "2011-11-11T12:06:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "StateOrProvince": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "ContactTelephone1": {"type": "string"}, "RelatedURL": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "StateOrProvince", "Postcode", "CountryID", "Latitude", "Longitude", "ContactTelephone1", "RelatedURL", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "Reference": {"type": "string"}, "LevelID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "Reference", "LevelID"]}}, "NumberOfPoints": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "OperatorID", "UsageTypeID", "AddressInfo", "Connections", "NumberOfPoints", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "YPMH0", "name" : {"en" : "Prominent Hill"}, "country" : "AU", "region" : "SA", "identifiers" : {"national" : null, "wmo" : null, "ghcn" : null, "wban" : null, "usaf" : null, "mosmix" : null, "icao" : "YPMH", "iata" : "PXH"}, "location" : {"latitude" : -29.7172, "longitude" : 135.5214, "elevation" : 211}, "timezone" : "Australia/Adelaide", "history" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "null"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "string"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$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"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@aspnet/signalr": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@aspnet/signalr"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SignalR.Hubs.Multiple", "version" : "1.0.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"@aspnet/signalr" : {"version" : "1.0.0-preview2-final", "resolved" : "https://registry.npmjs.org/@aspnet/signalr/-/signalr-1.0.0-preview2-final.tgz", "integrity" : "sha512-XbqGbAG9Ow4L5Sc4n81A2S8lHSlxBNTjFm3WZQA94cIolPnW0bPK2u14UMooXRXxzjBtJViJMN/aoxWRwTWxig=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@aspnet/signalr": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@aspnet/signalr"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"pairid": {"type": "string"}, "first": {"type": "object", "properties": {"dbid": {"type": "string"}, "project": {"type": "string"}, "file": {"type": "string"}, "method": {"type": "string"}}, "required": ["dbid", "project", "file", "method"]}, "second": {"type": "object", "properties": {"dbid": {"type": "string"}, "project": {"type": "string"}, "file": {"type": "string"}, "method": {"type": "string"}}, "required": ["dbid", "project", "file", "method"]}, "goals": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}, "operations": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}, "effects": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}}, "required": ["pairid", "first", "second", "goals", "operations", "effects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pairid" : "642", "first" : {"dbid" : "7122", "project" : "deeplearning4j", "file" : "nd4j/nd4j-backends/nd4j-api-parent/nd4j-api/src/main/java/org/nd4j/linalg/memory/provider/BasicWorkspaceManager.java", "method" : "BasicWorkspaceManager.scopeOutOfWorkspaces()"}, "second" : {"dbid" : "12542", "project" : "eclipse.jdt.core", "file" : "org.eclipse.jdt.core/search/org/eclipse/jdt/internal/core/nd/db/Database.java", "method" : "Database.malloc(long, short)"}, "goals" : [{"rating" : 0, "confidence" : 2}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : 0, "confidence" : 2}, {"rating" : 0, "confidence" : 2}], "operations" : [{"rating" : 0, "confidence" : 2}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : 0, "confidence" : 2}, {"rating" : 0, "confidence" : 2}], "effects" : [{"rating" : 0, "confidence" : 2}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : -1, "confidence" : -1}, {"rating" : 0, "confidence" : 2}, {"rating" : 0, "confidence" : 2}]} | json_instruct | {"type": "object", "properties": {"pairid": {"type": "string"}, "first": {"type": "object", "properties": {"dbid": {"type": "string"}, "project": {"type": "string"}, "file": {"type": "string"}, "method": {"type": "string"}}, "required": ["dbid", "project", "file", "method"]}, "second": {"type": "object", "properties": {"dbid": {"type": "string"}, "project": {"type": "string"}, "file": {"type": "string"}, "method": {"type": "string"}}, "required": ["dbid", "project", "file", "method"]}, "goals": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}, "operations": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}, "effects": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "integer"}, "confidence": {"type": "integer"}}, "required": ["rating", "confidence"]}}}, "required": ["pairid", "first", "second", "goals", "operations", "effects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"aoi_name": {"type": "string"}, "path_number": {"type": "integer"}, "min_days_backward": {"type": "integer"}, "month_range_lower": {"type": "integer"}, "month_range_upper": {"type": "integer"}, "num_neighbors": {"type": "integer"}}, "required": ["aoi_name", "path_number", "min_days_backward", "month_range_lower", "month_range_upper", "num_neighbors"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"aoi_name" : "NorthernSA0", "path_number" : 127, "min_days_backward" : 0, "month_range_lower" : 1, "month_range_upper" : 12, "num_neighbors" : 3}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-67.5402855288032, -7.362671644338249, 0.0], [-67.8707094434695, -8.86347114559012, 0.0], [-67.883632026994, -8.92107626517256, 0.0], [-68.2182001406712, -10.4193923364554, 0.0], [-68.4856219346575, -11.6154676117344, 0.0], [-70.7573179146721, -11.0963167436982, 0.0], [-70.4498381460661, -9.77880924551469, 0.0], [-70.1051680881977, -8.2849016568506, 0.0], [-69.7533748043803, -6.73331133048567, 0.0], [-69.4214078512125, -5.2457207037573, 0.0], [-69.1078752238918, -3.81949389245925, 0.0], [-68.7776458139124, -2.2963752780921, 0.0], [-68.461095302878, -0.817230960757606, 0.0], [-68.1661654702504, 0.606453484650151, 0.0], [-65.9446807654521, 0.13040370527209, 0.0], [-66.2250728372613, -1.23357545614215, 0.0], [-66.2382452428505, -1.29595582546491, 0.0], [-66.2519914720228, -1.35990250609549, 0.0], [-66.5434583010908, -2.73707867496581, 0.0], [-66.5718014914396, -2.87075751184821, 0.0], [-66.8628167687381, -4.23497849662825, 0.0], [-66.8878294260052, -4.35181405938417, 0.0], [-67.2134675485945, -5.863116197646191, 0.0], [-67.5402855288032, -7.362671644338249, 0.0]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"aoi_name": {"type": "string"}, "path_number": {"type": "integer"}, "min_days_backward": {"type": "integer"}, "month_range_lower": {"type": "integer"}, "month_range_upper": {"type": "integer"}, "num_neighbors": {"type": "integer"}}, "required": ["aoi_name", "path_number", "min_days_backward", "month_range_lower", "month_range_upper", "num_neighbors"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "crs", "features"], "$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"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "config": {"type": "object", "properties": {"jsPath": {"type": "string"}, "angularPath": {"type": "string"}}, "required": ["jsPath", "angularPath"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-pv": {"type": "string"}, "grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-eslint": {"type": "string"}, "grunt-html2js": {"type": "string"}, "load-grunt-tasks": {"type": "string"}}, "required": ["eslint", "eslint-config-pv", "grunt", "grunt-cli", "grunt-contrib-watch", "grunt-eslint", "grunt-html2js", "load-grunt-tasks"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "homepage", "license", "repository", "config", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "context-aware-configuration-editor", "version" : "1.8.6", "description" : "Context-Aware Configuration Editor UI for AEM.", "homepage" : "https://github.com/wcm-io/wcm-io-caconfig/tree/develop/editor/bundle", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "https://github.com/wcm-io/wcm-io-caconfig.git"}, "config" : {"jsPath" : "src/main/webapp/app-root/clientlibs/io.wcm.caconfig.editor/js/", "angularPath" : "src/main/webapp/app-root/clientlibs/io.wcm.caconfig.editor.angularjs/js/"}, "devDependencies" : {"eslint" : "7.27.0", "eslint-config-pv" : "2.3.0", "grunt" : "1.4.1", "grunt-cli" : "1.4.3", "grunt-contrib-watch" : "1.1.0", "grunt-eslint" : "23.0.0", "grunt-html2js" : "0.8.0", "load-grunt-tasks" : "5.1.0"}, "engines" : {"node" : "12.16.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "config": {"type": "object", "properties": {"jsPath": {"type": "string"}, "angularPath": {"type": "string"}}, "required": ["jsPath", "angularPath"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-pv": {"type": "string"}, "grunt": {"type": "string"}, "grunt-cli": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-eslint": {"type": "string"}, "grunt-html2js": {"type": "string"}, "load-grunt-tasks": {"type": "string"}}, "required": ["eslint", "eslint-config-pv", "grunt", "grunt-cli", "grunt-contrib-watch", "grunt-eslint", "grunt-html2js", "load-grunt-tasks"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "homepage", "license", "repository", "config", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 25731, "info" : {"name" : "prohardver.hu : all : mark visited links", "description" : "a m\u00e1r l\u00e1togatott h\u00edrek, tesztek \u00e9s f\u00f3rumoldalak linkj\u00e9t \u00e1th\u00fazza", "additionalInfo" : null, "format" : "uso", "category" : "prohardver", "createdAt" : "2010-02-27T22:14:47.000Z", "updatedAt" : "2010-02-27T22:14:47.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 42979, "name" : "dqdb"}}, "stats" : {"installs" : {"total" : 136, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "25731-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"prohardver.hu\") {\r\n\r\na:visited[href^=\"/hir/\"],\r\na:visited[href^=\"/tema/\"],\r\na:visited[href^=\"/teszt/\"],\r\na:visited[href^=\"http://prohardver.hu/hir/\"],\r\na:visited[href^=\"http://prohardver.hu/tema/\"],\r\na:visited[href^=\"http://prohardver.hu/teszt/\"],\r\na:visited[href^=\"http://itcafe.hu/hir/\"],\r\na:visited[href^=\"http://itcafe.hu/tema/\"],\r\na:visited[href^=\"http://itcafe.hu/teszt/\"],\r\na:visited[href^=\"http://mobilarena.hu/hir/\"],\r\na:visited[href^=\"http://mobilarena.hu/tema/\"],\r\na:visited[href^=\"http://mobilarena.hu/teszt/\"],\r\na:visited[href^=\"http://gamepod.hu/hir/\"],\r\na:visited[href^=\"http://gamepod.hu/tema/\"],\r\na:visited[href^=\"http://gamepod.hu/teszt/\"],\r\na:visited[href^=\"http://logout.hu/cikk/\"],\r\na:visited[href^=\"http://logout.hu/tema/\"]\r\n{\r\n\ttext-decoration: line-through !important;\r\n}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "integer"}, "name": {"type": "string"}, "limit": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["id", "value", "name", "limit", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 26307, "value" : 100000, "name" : "Scrimshaw of cruelty", "limit" : 5, "name_pt" : "Marfim entalhado da crueldade", "price" : 1310661, "last" : 1310661} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "value": {"type": "integer"}, "name": {"type": "string"}, "limit": {"type": "integer"}, "name_pt": {"type": "string"}, "price": {"type": "integer"}, "last": {"type": "integer"}}, "required": ["id", "value", "name", "limit", "name_pt", "price", "last"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"dailyConfirmedCases": {"type": "array", "items": {"type": "integer"}}}, "required": ["dailyConfirmedCases"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dailyConfirmedCases" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 0, 2, 0, 0, 1, 1, 0, 0, 0, 1, 1, 2, 1, 1, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]} | json_instruct | {"type": "object", "properties": {"dailyConfirmedCases": {"type": "array", "items": {"type": "integer"}}}, "required": ["dailyConfirmedCases"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token 3iNt", "symbol" : "3iNtb", "decimals" : 6, "address" : "3iNtbzpkVdu9je3mVWjMWetnbG7zSpoU87Bv8AXeRb4g", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"cleverLinks": {"type": "boolean"}, "monospaceLinks": {"type": "boolean"}}, "required": ["cleverLinks", "monospaceLinks"]}, "source": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "includePattern": {"type": "string"}, "excludePattern": {"type": "string"}}, "required": ["include", "exclude", "includePattern", "excludePattern"]}}, "required": ["plugins", "templates", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugins" : ["node_modules/jsdoc/plugins/markdown", "node_modules/angular-jsdoc/common/plugins/ngdoc"], "templates" : {"cleverLinks" : true, "monospaceLinks" : true}, "source" : {"include" : ["app"], "exclude" : ["app/bower_components"], "includePattern" : ".+\\.js(doc)?$", "excludePattern" : "(^|\\/|\\\\)_"}} | json_instruct | {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "templates": {"type": "object", "properties": {"cleverLinks": {"type": "boolean"}, "monospaceLinks": {"type": "boolean"}}, "required": ["cleverLinks", "monospaceLinks"]}, "source": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}, "includePattern": {"type": "string"}, "excludePattern": {"type": "string"}}, "required": ["include", "exclude", "includePattern", "excludePattern"]}}, "required": ["plugins", "templates", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vars": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "linkedContent": {"type": "array", "items": {}}, "hidden": {"type": "boolean"}, "layout": {"type": "string"}}, "required": ["vars", "linkedContent", "hidden", "layout"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vars" : {"title" : "Fetcher"}, "linkedContent" : [], "hidden" : false, "layout" : "default.html"} | json_instruct | {"type": "object", "properties": {"vars": {"type": "object", "properties": {"title": {"type": "string"}}, "required": ["title"]}, "linkedContent": {"type": "array", "items": {}}, "hidden": {"type": "boolean"}, "layout": {"type": "string"}}, "required": ["vars", "linkedContent", "hidden", "layout"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Tulsa County", "name_long" : "Tulsa County, OK", "fips" : "40143", "state_code_int" : 40, "state_code_postal" : "OK", "state_code_iso" : "US-OK", "county_code" : 143, "population" : 651552, "countrylevel_id" : "fips:40143", "census_data" : {"COUNTYNS" : "01101859", "AFFGEOID" : "0500000US40143", "LSAD" : "06", "ALAND" : 1477122998, "AWATER" : 43258380}, "center_lat" : 36.12, "center_lon" : -95.94, "area_m2" : 1520381378, "timezone" : "America/Chicago"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-96.298, 36.162], [-96.268, 36.162], [-96.154, 36.161], [-96.141, 36.161], [-96.091, 36.161], [-96.044, 36.161], [-96.02, 36.161], [-96.001, 36.161], [-96.001, 36.219], [-96.001, 36.242], [-96.001, 36.244], [-96.001, 36.25], [-96.001, 36.307], [-96.001, 36.424], [-95.92, 36.424], [-95.884, 36.424], [-95.813, 36.424], [-95.794, 36.424], [-95.794, 36.394], [-95.812, 36.394], [-95.812, 36.351], [-95.812, 36.322], [-95.812, 36.264], [-95.815, 36.25], [-95.815, 36.224], [-95.815, 36.188], [-95.815, 36.163], [-95.794, 36.163], [-95.78, 36.163], [-95.762, 36.163], [-95.762, 36.133], [-95.762, 36.119], [-95.762, 36.104], [-95.762, 36.09], [-95.762, 36.046], [-95.762, 36.032], [-95.762, 36.017], [-95.762, 35.993], [-95.762, 35.988], [-95.762, 35.909], [-95.762, 35.901], [-95.819, 35.901], [-95.82, 35.856], [-95.908, 35.856], [-96.033, 35.857], [-96.033, 35.871], [-96.03, 35.901], [-96.029, 35.945], [-96.03, 35.988], [-96.03, 36.032], [-96.03, 36.046], [-96.03, 36.075], [-96.074, 36.076], [-96.101, 36.076], [-96.176, 36.076], [-96.298, 36.076], [-96.298, 36.162]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_data": {"type": "object", "properties": {"COUNTYNS": {"type": "string"}, "AFFGEOID": {"type": "string"}, "LSAD": {"type": "string"}, "ALAND": {"type": "integer"}, "AWATER": {"type": "integer"}}, "required": ["COUNTYNS", "AFFGEOID", "LSAD", "ALAND", "AWATER"]}, "center_lat": {"type": "number"}, "center_lon": {"type": "number"}, "area_m2": {"type": "integer"}, "timezone": {"type": "string"}}, "required": ["name", "name_long", "fips", "state_code_int", "state_code_postal", "state_code_iso", "county_code", "population", "countrylevel_id", "census_data", "center_lat", "center_lon", "area_m2", "timezone"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HostConfigHash" : "e188ab9", "CardHash" : "1076b7f", "Error" : null} | json_instruct | {"type": "object", "properties": {"HostConfigHash": {"type": "string"}, "CardHash": {"type": "string"}, "Error": {"type": "null"}}, "required": ["HostConfigHash", "CardHash", "Error"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "original-author": {"type": "string"}, "version": {"type": "integer"}, "extension-id": {"type": "string"}, "application-id": {"type": "string"}, "resource-path": {"type": "string"}, "settings-schema": {"type": "string"}, "settings-path": {"type": "string"}, "gettext-domain": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}}, "required": ["uuid", "name", "url", "description", "original-author", "version", "extension-id", "application-id", "resource-path", "settings-schema", "settings-path", "gettext-domain", "shell-version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "[email protected]", "name" : "Customised Workspaces", "url" : "https://github.com/blipk/Customised-Workspaces", "description" : "Customised Workspaces enables creating isolated and customised workspaces.\n\n* Customise the dash to be unique for each workspace, each with their own favourites\n* Only show running applications on the dash in their respective workspace\n* Choose a custom background image for each workspace\n* Minor UI tweaks to the overview workspaces\n* Save each customisation, set them to autoload on specific workspaces\n* Hide the extension once you've configured your preferences to enjoy seamlessly upgraded workspaces in gnome shell\n\nPlease do not leave a comment for issues and instead report it here: https://github.com/blipk/Customised-Workspaces/issues", "original-author" : "blipk", "version" : 46, "extension-id" : "worksets", "application-id" : "org.kronosoul.worksets", "resource-path" : "/org/kronosoul/worksets/", "settings-schema" : "org.gnome.shell.extensions.worksets", "settings-path" : "/org/gnome/shell/extensions/worksets/", "gettext-domain" : "worksets", "shell-version" : ["42", "43"]} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}, "description": {"type": "string"}, "original-author": {"type": "string"}, "version": {"type": "integer"}, "extension-id": {"type": "string"}, "application-id": {"type": "string"}, "resource-path": {"type": "string"}, "settings-schema": {"type": "string"}, "settings-path": {"type": "string"}, "gettext-domain": {"type": "string"}, "shell-version": {"type": "array", "items": {"type": "string"}}}, "required": ["uuid", "name", "url", "description", "original-author", "version", "extension-id", "application-id", "resource-path", "settings-schema", "settings-path", "gettext-domain", "shell-version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"access_token": {"type": "string"}, "client_version": {"type": "integer"}}, "required": ["access_token", "client_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"access_token" : "c.FmDPkzyzaQe...", "client_version" : 1} | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "client_version": {"type": "integer"}}, "required": ["access_token", "client_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "null"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "total_flavoring", "steep_days", "best_vg", "temperature"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Chocolate Cake Shake", "description" : "OOO Chocolate Milk is a REEEALLY good base for this chocolate milk shake profile. It has a nice milky dairy note and a subtle hershey's chocolate syrup note.\r\n\r\nLB Vanilla Ice Cream is going to be our ice cream note. It's a little eggy, which is perfect for an ice cream. You won't get any notes of pepper from this flavor.\r\n\r\nOur cake note is JF Yellow Cake. Yellow Cake i a nice sweet bakery note, it's a bit dry but it blends up nicely with the dairy and chocolate notes.\r\n\r\nSweeten to taste.\r\n\r\nWatch the video here:\r\n\r\nhttps://youtu.be/rhJPYjTvRO0", "id" : 207019, "image_url" : null, "updated_at" : "2020-12-12T11:53:48.000-05:00", "deleted_at" : null, "recipe_type" : 1, "recipe_flavors" : [{"name" : "Chocolate Milk", "flavor_id" : "6446", "millipercent" : 6000, "vendor" : "OOO"}, {"name" : "Yellow Cake", "flavor_id" : "4560", "millipercent" : 2000, "vendor" : "JF"}, {"name" : "Vanilla Ice Cream", "flavor_id" : "1511", "millipercent" : 3000, "vendor" : "LB"}], "author" : "RUG_ly", "views" : "607", "created_at" : "2020-10-12", "slug" : "chocolate_cake_shake", "total_flavoring" : "11.0%", "steep_days" : "7", "best_vg" : "80%", "temperature" : "0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "null"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "flavor_id": {"type": "string"}, "millipercent": {"type": "integer"}, "vendor": {"type": "string"}}, "required": ["name", "flavor_id", "millipercent", "vendor"]}}, "author": {"type": "string"}, "views": {"type": "string"}, "created_at": {"type": "string"}, "slug": {"type": "string"}, "total_flavoring": {"type": "string"}, "steep_days": {"type": "string"}, "best_vg": {"type": "string"}, "temperature": {"type": "string"}}, "required": ["name", "description", "id", "image_url", "updated_at", "deleted_at", "recipe_type", "recipe_flavors", "author", "views", "created_at", "slug", "total_flavoring", "steep_days", "best_vg", "temperature"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016502": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016502"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01016502" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00083315", "LAD11CD" : "E06000039"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00083317", "LAD11CD" : "E06000039"}, "arcs" : [[4, -4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00083321", "LAD11CD" : "E06000039"}, "arcs" : [[-2, 6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00083323", "LAD11CD" : "E06000039"}, "arcs" : [[-7, -1, -5, 8]]}]}}, "arcs" : [[[6730, 4286], [560, 35], [308, 844], [-361, 535], [682, 246]], [[7919, 5946], [1591, -136]], [[9510, 5810], [-235, -1422], [-219, -711], [-122, -556], [-516, -1842]], [[8418, 1279], [-715, 34], [-351, 1003], [-689, 218], [443, 1083], [-376, 669]], [[5653, 4919], [1077, -633]], [[8418, 1279], [-822, -1279], [-663, 598], [-475, -348], [-609, 204], [-5, 545], [-967, -286], [-23, 449], [602, 312], [-145, 1048], [-482, -89], [-13, 443], [1265, 235], [493, 595], [-921, 1213]], [[7919, 5946], [-517, 217], [154, 431], [-1694, 713], [-1275, 327], [410, -240], [-270, -751], [-999, 899]], [[3728, 7542], [-212, 751], [-3516, 943], [178, 763], [4929, -1277], [3362, 303], [1496, -971], [34, -123], [-489, -2121]], [[5653, 4919], [-990, -1433], [-1293, 757], [690, 2227], [-428, 62], [-664, -1662], [-1694, 377], [-498, 130], [131, 390], [1738, -400], [521, 1333], [-400, 349], [962, 493]]], "transform" : {"scale" : [9.76940057644861e-07, 7.355622349738264e-07], "translate" : [-0.551972573277332, 51.49744525848904]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01016502": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01016502"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "Authentication": {"type": "object", "properties": {"Mode": {"type": "string"}, "AzureAD": {"type": "object", "properties": {"Instance": {"type": "string"}, "Domain": {"type": "string"}, "ClientId": {"type": "string"}, "TenantId": {"type": "string"}, "Audience": {"type": "string"}}, "required": ["Instance", "Domain", "ClientId", "TenantId", "Audience"]}, "JwtBearer": {"type": "object", "properties": {"ValidateIssuer": {"type": "boolean"}, "ValidAudiences": {"type": "array", "items": {"type": "string"}}}, "required": ["ValidateIssuer", "ValidAudiences"]}}, "required": ["Mode", "AzureAD", "JwtBearer"]}}, "required": ["Logging", "Authentication"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Logging" : {"LogLevel" : {"Default" : "Information", "System" : "Warning", "Microsoft" : "Warning"}}, "Authentication" : {"Mode" : "AzureAD", "AzureAD" : {"Instance" : "https://login.microsoftonline.com/", "Domain" : "sierrasft.onmicrosoft.com", "ClientId" : "d4a172f4-6596-4437-8047-0fe03dd9dd21", "TenantId" : "common", "Audience" : "https://sierrasoftworks.com/a7554725-da8f-410b-ae37-f8690e664066"}, "JwtBearer" : {"ValidateIssuer" : false, "ValidAudiences" : ["https://sierrasoftworks.com/a7554725-da8f-410b-ae37-f8690e664066", "d4a172f4-6596-4437-8047-0fe03dd9dd21"]}}} | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "Authentication": {"type": "object", "properties": {"Mode": {"type": "string"}, "AzureAD": {"type": "object", "properties": {"Instance": {"type": "string"}, "Domain": {"type": "string"}, "ClientId": {"type": "string"}, "TenantId": {"type": "string"}, "Audience": {"type": "string"}}, "required": ["Instance", "Domain", "ClientId", "TenantId", "Audience"]}, "JwtBearer": {"type": "object", "properties": {"ValidateIssuer": {"type": "boolean"}, "ValidAudiences": {"type": "array", "items": {"type": "string"}}}, "required": ["ValidateIssuer", "ValidAudiences"]}}, "required": ["Mode", "AzureAD", "JwtBearer"]}}, "required": ["Logging", "Authentication"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"Adminsection": {"type": "boolean"}, "Frontsection": {"type": "boolean"}}, "required": ["Adminsection", "Frontsection"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Adminsection" : true, "Frontsection" : true} | json_instruct | {"type": "object", "properties": {"Adminsection": {"type": "boolean"}, "Frontsection": {"type": "boolean"}}, "required": ["Adminsection", "Frontsection"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"entities": {"type": "object", "properties": {"greetings": {"type": "object", "properties": {"hello": {"type": "array", "items": {"type": "string"}}}, "required": ["hello"]}, "food_type": {"type": "object", "properties": {"pizza": {"type": "array", "items": {}}, "hamburger": {"type": "array", "items": {"type": "string"}}, "salad": {"type": "array", "items": {}}}, "required": ["pizza", "hamburger", "salad"]}, "yes": {"type": "object", "properties": {"yes": {"type": "array", "items": {}}}, "required": ["yes"]}, "no": {"type": "object", "properties": {"no": {"type": "array", "items": {}}}, "required": ["no"]}}, "required": ["greetings", "food_type", "yes", "no"]}}, "required": ["entities"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"entities" : {"greetings" : {"hello" : ["hi", "yep", "yo", "hey"]}, "food_type" : {"pizza" : [], "hamburger" : ["big mac", "cheeseburger", "burger"], "salad" : []}, "yes" : {"yes" : []}, "no" : {"no" : []}}} | json_instruct | {"type": "object", "properties": {"entities": {"type": "object", "properties": {"greetings": {"type": "object", "properties": {"hello": {"type": "array", "items": {"type": "string"}}}, "required": ["hello"]}, "food_type": {"type": "object", "properties": {"pizza": {"type": "array", "items": {}}, "hamburger": {"type": "array", "items": {"type": "string"}}, "salad": {"type": "array", "items": {}}}, "required": ["pizza", "hamburger", "salad"]}, "yes": {"type": "object", "properties": {"yes": {"type": "array", "items": {}}}, "required": ["yes"]}, "no": {"type": "object", "properties": {"no": {"type": "array", "items": {}}}, "required": ["no"]}}, "required": ["greetings", "food_type", "yes", "no"]}}, "required": ["entities"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "admin": {"type": "string"}}, "required": ["_id", "name", "website", "phone", "email", "admin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"_id" : "5ea45ccba36def078c49dbdb", "name" : "Attorneys Without Contracts", "website" : "https://lawcontracts.com", "phone" : "(123) 123-1234", "email" : "[email protected]", "admin" : "5eb1bffae4e3d504cecb165a"}, {"_id" : "5ea45ccba36def078c49dbdd", "name" : "QualityPeace", "website" : "https://testpeace.com", "phone" : "(111) 111-1111", "email" : "[email protected]", "admin" : "5eb1bffae4e3d504cecb165c"}, {"_id" : "5ea45ccba36def078c49dbdf", "name" : "Show Me The Money", "website" : "https://www.smtm.com", "phone" : "(123) 456-7890", "email" : "[email protected]", "admin" : "5eb1bffae4e3d504cecb165e"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "phone": {"type": "string"}, "email": {"type": "string"}, "admin": {"type": "string"}}, "required": ["_id", "name", "website", "phone", "email", "admin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"css/jquery.terminal.css": {"type": "string"}, "css/jquery.terminal.min.css": {"type": "string"}, "js/jquery.terminal.js": {"type": "string"}, "js/jquery.terminal.min.js": {"type": "string"}}, "required": ["css/jquery.terminal.css", "css/jquery.terminal.min.css", "js/jquery.terminal.js", "js/jquery.terminal.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/jquery.terminal.css" : "sha256-cAPX0CSWIYRioDzfVtCohNeZez8qVkjfHMjTbD71mFE=", "css/jquery.terminal.min.css" : "sha256-30W1b7oZ53QdwONrWiVUy7XWa8cns7BfjRB2Rmr/U64=", "js/jquery.terminal.js" : "sha256-J9nGgE6y67QjmRV+/hp9nYikLTEd+X8nXSJbkhTgXQ0=", "js/jquery.terminal.min.js" : "sha256-2rkewNAPu5JnSxzX1LrXp1KLjrmwozoYQcPbGfAOvSc="} | json_instruct | {"type": "object", "properties": {"css/jquery.terminal.css": {"type": "string"}, "css/jquery.terminal.min.css": {"type": "string"}, "js/jquery.terminal.js": {"type": "string"}, "js/jquery.terminal.min.js": {"type": "string"}}, "required": ["css/jquery.terminal.css", "css/jquery.terminal.min.css", "js/jquery.terminal.js", "js/jquery.terminal.min.js"], "$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": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"tiles/materials/warttile.material": {"type": "array", "items": {"type": "string"}}}, "required": ["tiles/materials/warttile.material"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"tiles/materials/warttile.material" : ["/description"]}, "Texts" : {"Chs" : "\u8fd9\u5757\u8150\u70c2\u7684\u571f\u5730\u4e0a\u957f\u6ee1\u4e86\u8089\u7624\uff0c\u91cc\u9762\u586b\u6ee1\u4e86...\u53e3\u533a\u3002", "Eng" : "This putrid ground is ripe with warts filled with...stuff."}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"tiles/materials/warttile.material": {"type": "array", "items": {"type": "string"}}}, "required": ["tiles/materials/warttile.material"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 14088978341743255589, "features" : "[]", "target" : 2244357222181564146, "profile" : 4339006351771724982, "path" : 6276642729990006895, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/tower-service-4d951c877f2e36cb/dep-lib-tower-service"}}], "rustflags" : [], "metadata" : 13625925058035360014, "config" : 0} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}, "config": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"scrollama.js": {"type": "string"}, "scrollama.min.js": {"type": "string"}}, "required": ["scrollama.js", "scrollama.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scrollama.js" : "sha512-YXGjL7v6xgLxlPTZeJv8EQGe/6TYpLEeW/SLDQ5ZTq+DQxlt0ravBzAQPlb5LEn1IgJfVrh3VeoVXXr71szn8Q==", "scrollama.min.js" : "sha512-AjIl+nS0tKB/r7StsIYsxBHDSay9ugXOsPrql90c9KAndnNupN5WCvgxXb87zCvbPUQqv5yP0PwQAYmlVHd46Q=="} | json_instruct | {"type": "object", "properties": {"scrollama.js": {"type": "string"}, "scrollama.min.js": {"type": "string"}}, "required": ["scrollama.js", "scrollama.min.js"], "$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": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[[0, 420], [310, 116]], [[0, 0], [200, 111]], [[450, 0], [210, 191]], [[450, 420], [318, 212]]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "TUBE: time-dependent pricing for mobile data.", "fields" : ["autopilot", "operator", "mobile broadband", "end user", "mobile device"], "abstract" : "The two largest U.S. wireless ISPs have recently moved towards usage-based pricing to better manage the growing demand on their networks. Yet usage-based pricing still requires ISPs to over-provision capacity for demand at peak times of the day. Time-dependent pricing (TDP) addresses this problem by considering when a user consumes data, in addition to how much is used. We present the architecture, implementation, and a user trial of an end-to-end TDP system called TUBE. TUBE creates a price-based feedback control loop between an ISP and its end users. On the ISP side, it computes TDP prices so as to balance the cost of congestion during peak periods with that of offering lower prices in less congested periods. On mobile devices, it provides a graphical user interface that allows users to respond to the offered prices either by themselves or using an \"autopilot\" mode. We conducted a pilot TUBE trial with 50 iPhone or iPad 3G data users, who were charged according to our TDP algorithms. Our results show that TDP benefits both operators and customers, flattening the temporal fluctuation of demand while allowing users to save money by choosing the time and volume of their usage.", "citation" : "Citations (247)", "departments" : ["Princeton University", "Princeton University", "Princeton University", "Seoul National University", "Princeton University"], "authors" : ["Sangtae Ha.....http://dblp.org/pers/hd/h/Ha:Sangtae", "Soumya Sen.....http://dblp.org/pers/hd/s/Sen:Soumya", "Carlee Joe-Wong.....http://dblp.org/pers/hd/j/Joe=Wong:Carlee", "Youngbin Im.....http://dblp.org/pers/hd/i/Im:Youngbin", "Mung Chiang.....http://dblp.org/pers/hd/c/Chiang:Mung"], "conf" : "sigcomm", "year" : "2012", "pages" : 12} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {}, "required": []}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"beaconId": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "userId": {"type": "string"}, "fullName": {"type": "string"}, "email": {"type": "string"}}, "required": ["beaconId", "text", "type", "userId", "fullName", "email"]}, "relationships": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "attributes", "relationships"]}, "included": {"type": "array", "items": {}}}, "required": ["meta", "data", "included"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"meta" : {}, "data" : {"type" : "note", "attributes" : {"beaconId" : "replace-with-test-beacon-id", "text" : "That's a great beacon right there", "type" : "GENERAL", "userId" : "344848b9-8a5d-4818-a57d-1815528d543e", "fullName" : "Jean ValJean", "email" : "[email protected]"}, "relationships" : {}}, "included" : []} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {}, "required": []}, "data": {"type": "object", "properties": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"beaconId": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "userId": {"type": "string"}, "fullName": {"type": "string"}, "email": {"type": "string"}}, "required": ["beaconId", "text", "type", "userId", "fullName", "email"]}, "relationships": {"type": "object", "properties": {}, "required": []}}, "required": ["type", "attributes", "relationships"]}, "included": {"type": "array", "items": {}}}, "required": ["meta", "data", "included"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"s" : ["`ota'~"], "f" : "\ufff9\ufffato be nauseated\ufffb\u60f3\u5410\uff0c\u5c07\u8981\u5614\u5410"}]}], "t" : "sakaota'an"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"s": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["s", "f"]}}}, "required": ["d"]}}, "t": {"type": "string"}}, "required": ["h", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u5fc3\u4e0d\u5728\u7109\u5730", "\u832b\u7136", "\u832b\u7136\u5730"], "key" : "absently"}, {"value" : ["\u5fc3\u4e0d\u5728\u7109\u5730"], "key" : "absently adv"}, {"value" : ["\u5fc3\u4e0d\u5728\u7109\u5730"], "key" : "absent-mindedly absently"}], "query" : "absently", "translation" : ["\u5fc3\u4e0d\u5728\u7109\u5730"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=absently"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=absently"}, "basic" : {"us-phonetic" : "'\u00e6bs\u0259ntli", "phonetic" : "'\u00e6bs(\u0259)ntl\u026a", "uk-phonetic" : "'\u00e6bs(\u0259)ntl\u026a", "explains" : ["adv. \u5fc3\u4e0d\u5728\u7109\u5730"]}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "P0237", "description" : "Generic: Turbocharger/Supercharger Boost Sensor \"A\" Circuit Low\nGM: Turbocharger Boost Circuit Low Input Conditions\nDodge Chrysler: MAP Sensor Signal Too Low", "info" : ["This is a generic powertrain diagnostic trouble code (DTC) applicable to all turbocharged vehicles. Vehicle makes may include but are not limited to VW, Dodge, Mercedes, Isuzu, Chrysler, Jeep, etc.", "\n\u00a0", "The powertrain control module (PCM) monitors boost pressure with a sensor called the manifold absolute pressure sensor (MAP). Understanding how a MAP sensor works is the first step in explaining the cause of P0237.", "The PCM sends a 5 volt reference signal to the MAP sensor and the MAP sensor sends a variable voltage signal back to the PCM. When boost pressure is high the voltage signal is high. When boost pressure is low the voltage is low. The PCM uses the boost control solenoid to control the amount of boost pressure that is produce by the turbocharger while at the same time using the boost pressure sensor to verify that the boost pressure is correct.", "This code sets when the PCM senses a low voltage signal indicating low boost pressure when a high pressure command has been sent to the boost control solenoid \"A\".\n"], "symptoms" : ["Check engine light will be on\nLow engine power\nReduced fuel economy", "Because of the increased chance of catalytic converter damage and turbo over boost when P0237 is present it should be corrected before continuing to use the vehicle."], "causes" : ["Potential causes for this code to set are:", "Faulty boost sensor \"A\"\nFaulty turbocharger\nFaulty PCM\nWiring problem"], "type" : "WARN"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code", "description", "info", "symptoms", "causes", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAME" : "EHR order list entry", "COUNT_VALUE" : 15}, "AGE_AT_FIRST_OCCURRENCE" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [24, 48], "P10_VALUE" : [24, 48], "P25_VALUE" : [63, 57], "MEDIAN_VALUE" : [75, 78], "P75_VALUE" : [87, 82], "P90_VALUE" : [93, 86], "MAX_VALUE" : [93, 86]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "PROCEDURE_FREQUENCY_DISTRIBUTION": {"type": "object", "properties": {"Y_NUM_PERSONS": {"type": "integer"}, "X_COUNT": {"type": "integer"}}, "required": ["Y_NUM_PERSONS", "X_COUNT"]}, "PROCEDURES_BY_TYPE": {"type": "object", "properties": {"CONCEPT_NAME": {"type": "string"}, "COUNT_VALUE": {"type": "integer"}}, "required": ["CONCEPT_NAME", "COUNT_VALUE"]}, "AGE_AT_FIRST_OCCURRENCE": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "PROCEDURE_FREQUENCY_DISTRIBUTION", "PROCEDURES_BY_TYPE", "AGE_AT_FIRST_OCCURRENCE"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following 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" : 404407115, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "cec07766ec380af659910727662ada19", "wof:id" : 404407115, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [3.49728487713994, 47.51424615230012, 3.55125238991249, 47.5690003626485], "geometry" : {"coordinates" : [[[3.54142505978467, 47.51424615230012], [3.52605615448919, 47.52142789223454], [3.51419182083227, 47.5272239046492], [3.51030724588546, 47.55050114997884], [3.4983577961464, 47.56087757965208], [3.49728487713994, 47.56419471110023], [3.50511808553663, 47.56840076077479], [3.51940804676665, 47.56620466410314], [3.52226825407088, 47.5690003626485], [3.52850709698604, 47.56370638634677], [3.52329692459421, 47.55452130150719], [3.52930827385749, 47.54523154924534], [3.54576715279528, 47.53871951979173], [3.54512835988246, 47.52821756297448], [3.55125238991249, 47.52277874114134], [3.54142505978467, 47.51424615230012]]], "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-105.584736, 41.320154], [-105.584104, 41.325837], [-105.583415, 41.328606], [-105.582357, 41.328602], [-105.582029, 41.331282], [-105.583405, 41.331699], [-105.582884, 41.336221], [-105.573152, 41.336814], [-105.555882, 41.335703], [-105.54135, 41.336979], [-105.537617, 41.33586], [-105.537985, 41.332209], [-105.537403, 41.330672], [-105.538095, 41.329137], [-105.537444, 41.319247], [-105.538321, 41.320044], [-105.548538, 41.320748], [-105.563035, 41.320697], [-105.567427, 41.318934], [-105.584736, 41.320154]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 81883}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "hideBreadcrumbs": {"type": "boolean"}}, "required": ["$schema", "hideBreadcrumbs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "https://typedoc.org/schema.json", "hideBreadcrumbs" : true} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "hideBreadcrumbs": {"type": "boolean"}}, "required": ["$schema", "hideBreadcrumbs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"_extensions": {"type": "array", "items": {"type": "string"}}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_description": {"type": "string"}, "initial_version": {"type": "string"}, "copyright": {"type": "string"}, "license": {"type": "string"}, "owner_name": {"type": "string"}, "owner_email": {"type": "string"}, "owner_nickname": {"type": "string"}, "url": {"type": "string"}, "dev_url": {"type": "string"}, "doc_url": {"type": "string"}, "sdist_url": {"type": "string"}}, "required": ["_extensions", "project_name", "project_slug", "project_description", "initial_version", "copyright", "license", "owner_name", "owner_email", "owner_nickname", "url", "dev_url", "doc_url", "sdist_url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_extensions" : ["jinja2_time.TimeExtension"], "project_name" : "OpenMM-Systems", "project_slug" : "openmm_systems", "project_description" : "Collection of premade molecular systems for use with OpenMM", "initial_version" : "0.0.0a0.dev0", "copyright" : "BY-NC", "license" : "MIT", "owner_name" : "Samuel D. Lotz", "owner_email" : "[email protected]", "owner_nickname" : "salotz", "url" : "https://github.com/ADicksonLab/OpenMM-Systems.git", "dev_url" : "https://github.com/ADicksonLab/OpenMM-Systems.git", "doc_url" : "https://adicksonlab.github.io/openmm_systems", "sdist_url" : "https://github.c"} | json_instruct | {"type": "object", "properties": {"_extensions": {"type": "array", "items": {"type": "string"}}, "project_name": {"type": "string"}, "project_slug": {"type": "string"}, "project_description": {"type": "string"}, "initial_version": {"type": "string"}, "copyright": {"type": "string"}, "license": {"type": "string"}, "owner_name": {"type": "string"}, "owner_email": {"type": "string"}, "owner_nickname": {"type": "string"}, "url": {"type": "string"}, "dev_url": {"type": "string"}, "doc_url": {"type": "string"}, "sdist_url": {"type": "string"}}, "required": ["_extensions", "project_name", "project_slug", "project_description", "initial_version", "copyright", "license", "owner_name", "owner_email", "owner_nickname", "url", "dev_url", "doc_url", "sdist_url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 10455, "citation_title" : "On the Efficacy of Reforms: Policy Tinkering, Institutional Change, and Entrepreneurship", "citation_author" : ["Murat Iyigun", "Dani Rodrik"], "citation_publication_date" : "2004-04-26", "issue_date" : "2004-04-26", "revision_date" : "None", "topics" : ["Development and Growth", "Development", "Growth and Productivity"], "program" : ["Corporate Finance", "Public Economics"], "projects" : null, "working_groups" : ["Entrepreneurship"], "abstract" : "\n\nWe analyze the interplay of policy reform and entrepreneurship in a model where investment decisions and policy outcomes are both subject to uncertainty. The production costs of non-traditional activities are unknown and can only be discovered by entrepreneurs who make sunk investments. The policy maker has access to two strategies: policy tinkering,' which corresponds to a new draw from a pre-existing policy regime, and institutional reform,' which corresponds to a draw from a different regime and imposes an adjustment cost on incumbent firms. Tinkering and institutional reform both have their respective advantages. Institutional reforms work best in settings where entrepreneurial activity is weak, while it is likely to produce disappointing outcomes where the cost discovery process is vibrant. We present cross-country evidence that strongly supports such a conditional relationship.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "extcaves:block/brokenstone"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$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"}, "name": {"type": "string"}, "dataType": {"type": "string"}, "isNameInferred": {"type": "boolean"}, "isDataTypeInferred": {"type": "boolean"}, "isHidden": {"type": "boolean"}, "sourceColumn": {"type": "string"}, "formatString": {"type": "string"}, "lineageTag": {"type": "string"}, "summarizeBy": {"type": "string"}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["type", "name", "dataType", "isNameInferred", "isDataTypeInferred", "isHidden", "sourceColumn", "formatString", "lineageTag", "summarizeBy", "annotations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "calculatedTableColumn", "name" : "IsWorkingDay", "dataType" : "boolean", "isNameInferred" : true, "isDataTypeInferred" : true, "isHidden" : true, "sourceColumn" : "[IsWorkingDay]", "formatString" : "\"TRUE\";\"TRUE\";\"FALSE\"", "lineageTag" : "9dc11242-a7ea-4edd-ab07-2b1e810a93e8", "summarizeBy" : "none", "annotations" : [{"name" : "SummarizationSetBy", "value" : "Automatic"}, {"name" : "Format", "value" : "<Format Format=\"Boolean\" />"}, {"name" : "DataTypeAtRefresh", "value" : "Boolean#####not a type"}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "dataType": {"type": "string"}, "isNameInferred": {"type": "boolean"}, "isDataTypeInferred": {"type": "boolean"}, "isHidden": {"type": "boolean"}, "sourceColumn": {"type": "string"}, "formatString": {"type": "string"}, "lineageTag": {"type": "string"}, "summarizeBy": {"type": "string"}, "annotations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}}, "required": ["type", "name", "dataType", "isNameInferred", "isDataTypeInferred", "isHidden", "sourceColumn", "formatString", "lineageTag", "summarizeBy", "annotations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "winner": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["play", "winner", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "129d8e70-7eec-499e-a6b3-b8d8612fb28d", "playerTags" : [], "teamTags" : ["b024e975-1c4a-4575-8936-a3754a08806a", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff", "eb67ae5e-c4bf-46ca-bbbc-425cd34182ff", "b024e975-1c4a-4575-8936-a3754a08806a"], "gameTags" : ["546b8e20-a526-42e0-8af2-8a02c08e7b98"], "metadata" : {"play" : 348, "winner" : "b024e975-1c4a-4575-8936-a3754a08806a", "subPlay" : -1}, "created" : "2021-04-13T11:29:56.294Z", "season" : 15, "tournament" : -1, "type" : 11, "day" : 19, "phase" : 2, "category" : 3, "description" : "Steaks 6, Moist Talkers 4", "nuts" : 2} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "winner": {"type": "string"}, "subPlay": {"type": "integer"}}, "required": ["play", "winner", "subPlay"]}, "created": {"type": "string"}, "season": {"type": "integer"}, "tournament": {"type": "integer"}, "type": {"type": "integer"}, "day": {"type": "integer"}, "phase": {"type": "integer"}, "category": {"type": "integer"}, "description": {"type": "string"}, "nuts": {"type": "integer"}}, "required": ["id", "playerTags", "teamTags", "gameTags", "metadata", "created", "season", "tournament", "type", "day", "phase", "category", "description", "nuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "semivif", "definition" : "Only half alive. [Obs.] Piers Plowman."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fro" : "Judith", "too" : "Moritz", "value" : 350, "date" : 4144435200.0, "sign" : "3045022100cf9323c28c19ca79ea4af3dc466e3429078c2e43917c4902a302ccbb1eac0b4b0220710a5fe8e449aa3e2ae1c8d2cd6f4a1e97cd6263f79f465b2bca08559ed1e52f"} | json_instruct | {"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"titleTag": {"type": "object", "properties": {"description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "enum"]}, "titleText": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "subTitle": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["titleTag", "titleText", "subTitle"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "title", "description", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/schema#", "title" : "heading", "description" : "A heading atom", "type" : "object", "properties" : {"titleTag" : {"description" : "Heading level", "enum" : ["h1", "h2", "h3"]}, "titleText" : {"type" : "string"}, "subTitle" : {"type" : "string"}}, "required" : ["titleTag", "titleText"]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"titleTag": {"type": "object", "properties": {"description": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "enum"]}, "titleText": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "subTitle": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["titleTag", "titleText", "subTitle"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["$schema", "title", "description", "type", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "storage": {"type": "object", "properties": {"managed_schema": {"type": "string"}}, "required": ["managed_schema"]}}, "required": ["name", "description", "version", "manifest_version", "minimum_chrome_version", "background", "permissions", "storage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "__MSG_extName__", "description" : "__MSG_extDescription__", "version" : "1.0", "manifest_version" : 2, "minimum_chrome_version" : "33", "background" : {"scripts" : ["background.js"], "persistent" : false}, "permissions" : ["bookmarks"], "storage" : {"managed_schema" : "schema.json"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "minimum_chrome_version": {"type": "string"}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "persistent": {"type": "boolean"}}, "required": ["scripts", "persistent"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "storage": {"type": "object", "properties": {"managed_schema": {"type": "string"}}, "required": ["managed_schema"]}}, "required": ["name", "description", "version", "manifest_version", "minimum_chrome_version", "background", "permissions", "storage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"45413": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45412": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45415": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45409": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45416": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45410": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45411": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45414": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["45413", "45412", "45415", "45409", "45416", "45410", "45411", "45414"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"45413" : {"nama" : "CURAHSURI", "dapil" : [35, 3503, 13504, 2351204]}, "45412" : {"nama" : "JATIBANTENG", "dapil" : [35, 3503, 13504, 2351204]}, "45415" : {"nama" : "KEMBANGSARI", "dapil" : [35, 3503, 13504, 2351204]}, "45409" : {"nama" : "PATEGALAN", "dapil" : [35, 3503, 13504, 2351204]}, "45416" : {"nama" : "PATEMON", "dapil" : [35, 3503, 13504, 2351204]}, "45410" : {"nama" : "SEMAMBUNG", "dapil" : [35, 3503, 13504, 2351204]}, "45411" : {"nama" : "SUMBERANYAR", "dapil" : [35, 3503, 13504, 2351204]}, "45414" : {"nama" : "WRINGINANOM", "dapil" : [35, 3503, 13504, 2351204]}} | json_instruct | {"type": "object", "properties": {"45413": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45412": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45415": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45409": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45416": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45410": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45411": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "45414": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["45413", "45412", "45415", "45409", "45416", "45410", "45411", "45414"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "integer"}, "rules": {"type": "array", "items": {"type": "object", "properties": {"condition": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"key": {"type": "string"}, "matcher": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "matcher", "values"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}, "consequences": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "detail": {"type": "object", "properties": {"type": {"type": "string"}, "source": {"type": "string"}, "eventdataaction": {"type": "string"}}, "required": ["type", "source", "eventdataaction"]}}, "required": ["id", "type", "detail"]}}}, "required": ["condition", "consequences"]}}}, "required": ["version", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1, "rules" : [{"condition" : {"type" : "group", "definition" : {"logic" : "and", "conditions" : [{"type" : "group", "definition" : {"logic" : "or", "conditions" : [{"type" : "group", "definition" : {"logic" : "and", "conditions" : [{"type" : "matcher", "definition" : {"key" : "~type", "matcher" : "eq", "values" : ["com.adobe.eventType.lifecycle"]}}, {"type" : "matcher", "definition" : {"key" : "~source", "matcher" : "eq", "values" : ["com.adobe.eventSource.applicationLaunch"]}}]}}]}}]}}, "consequences" : [{"id" : "48181acd22b3edaebc8a447868a7df7ce629920a", "type" : "dispatch", "detail" : {"type" : "com.adobe.eventType.edge", "source" : "com.adobe.eventSource.requestContent", "eventdataaction" : "copy"}}]}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "integer"}, "rules": {"type": "array", "items": {"type": "object", "properties": {"condition": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"logic": {"type": "string"}, "conditions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "definition": {"type": "object", "properties": {"key": {"type": "string"}, "matcher": {"type": "string"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "matcher", "values"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}}}, "required": ["logic", "conditions"]}}, "required": ["type", "definition"]}, "consequences": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "detail": {"type": "object", "properties": {"type": {"type": "string"}, "source": {"type": "string"}, "eventdataaction": {"type": "string"}}, "required": ["type", "source", "eventdataaction"]}}, "required": ["id", "type", "detail"]}}}, "required": ["condition", "consequences"]}}}, "required": ["version", "rules"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "extra": {"type": "object", "properties": {"component": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts", "files"]}}, "required": ["component"]}}, "required": ["name", "description", "keywords", "type", "homepage", "license", "support", "authors", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "oro/jsplumb", "description" : "jsPlumb provides a means for a developer to visually connect elements on their web pages.", "keywords" : ["javascript", "svg", "visual", "connectivity"], "type" : "component", "homepage" : "http://jsplumb.org/", "license" : ["MIT", "GPL-2.0"], "support" : {"issues" : "https://github.com/sporritt/jsPlumb/issues", "source" : "https://github.com/sporritt/jsPlumb"}, "authors" : [{"name" : "Simon Porritt", "email" : "[email protected]"}], "extra" : {"component" : {"scripts" : ["dom.jsPlumb.js"], "files" : ["dom.jsPlumb.min.js", "jquery.jsPlumb.js", "jquery.jsPlumb.min.js"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "extra": {"type": "object", "properties": {"component": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts", "files"]}}, "required": ["component"]}}, "required": ["name", "description", "keywords", "type", "homepage", "license", "support", "authors", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"AppSettings": {"type": "object", "properties": {"Token": {"type": "string"}}, "required": ["Token"]}, "ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["AppSettings", "ConnectionStrings", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AppSettings" : {"Token" : "super secret key bla bla init yes smeg!!!!"}, "ConnectionStrings" : {"DefaultConnection" : "Server=ms-sql-server,1433; Initial Catalog=cryfolioapp; User Id=SA; Password=Star1234;"}, "Logging" : {"LogLevel" : {"Default" : "Warning"}}, "AllowedHosts" : "*"} | json_instruct | {"type": "object", "properties": {"AppSettings": {"type": "object", "properties": {"Token": {"type": "string"}}, "required": ["Token"]}, "ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}}, "required": ["DefaultConnection"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["AppSettings", "ConnectionStrings", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "date": {"type": "string"}, "publisher": {"type": "string"}, "contact": {"type": "array", "items": {"type": "object", "properties": {"telecom": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "value": {"type": "string"}}, "required": ["system", "value"]}}}, "required": ["telecom"]}}, "code": {"type": "string"}, "base": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "description": {"type": "string"}, "expression": {"type": "string"}, "xpath": {"type": "string"}, "xpathUsage": {"type": "string"}}, "required": ["resourceType", "id", "url", "name", "status", "experimental", "date", "publisher", "contact", "code", "base", "type", "description", "expression", "xpath", "xpathUsage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "SearchParameter", "id" : "NamingSystem-description", "url" : "http://hl7.org/fhir/SearchParameter/NamingSystem-description", "name" : "description", "status" : "draft", "experimental" : false, "date" : "2017-04-19T07:44:43+10:00", "publisher" : "Health Level Seven International (FHIR Infrastructure)", "contact" : [{"telecom" : [{"system" : "url", "value" : "http://hl7.org/fhir"}]}, {"telecom" : [{"system" : "url", "value" : "http://www.hl7.org/Special/committees/fiwg/index.cfm"}]}], "code" : "description", "base" : ["NamingSystem"], "type" : "string", "description" : "The description of the naming system", "expression" : "NamingSystem.description", "xpath" : "f:NamingSystem/f:description", "xpathUsage" : "normal"} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "name": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "date": {"type": "string"}, "publisher": {"type": "string"}, "contact": {"type": "array", "items": {"type": "object", "properties": {"telecom": {"type": "array", "items": {"type": "object", "properties": {"system": {"type": "string"}, "value": {"type": "string"}}, "required": ["system", "value"]}}}, "required": ["telecom"]}}, "code": {"type": "string"}, "base": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "description": {"type": "string"}, "expression": {"type": "string"}, "xpath": {"type": "string"}, "xpathUsage": {"type": "string"}}, "required": ["resourceType", "id", "url", "name", "status", "experimental", "date", "publisher", "contact", "code", "base", "type", "description", "expression", "xpath", "xpathUsage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=10144", "name" : "INDIAN VILLAGE DEVELOPMENT SOCIETY", "primaryEmail" : "[email protected]", "website" : "Ivdsociety.in", "organisationType" : ["Direct Service"], "telephone" : ["+919454175882"], "mainAddrress" : {"state" : "Uttar Pradesh", "address" : ["Harahua Bazar", "Airport Road", "Bhagatoopur", "Varanasi", "Uttar Pradesh", "221105"]}, "briefDescription" : "Indian Village Development Society is located in Varanasi, Uttar Pradesh.", "yearOfEstablishment" : "2016"} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}, "briefDescription": {"type": "string"}, "yearOfEstablishment": {"type": "string"}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "website", "organisationType", "telephone", "mainAddrress", "briefDescription", "yearOfEstablishment"], "$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": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3513222001", "nama" : "Sumberkare"}, {"id" : "3513222002", "nama" : "Patalan"}, {"id" : "3513222003", "nama" : "Jrebeng"}, {"id" : "3513222004", "nama" : "Wonorejo"}, {"id" : "3513222005", "nama" : "Tunggakcerme"}, {"id" : "3513222006", "nama" : "Pohsangit Tengah"}, {"id" : "3513222007", "nama" : "Pohsangit Lor"}, {"id" : "3513222008", "nama" : "Pohsangit Ngisor"}, {"id" : "3513222009", "nama" : "Sepuhgembol"}, {"id" : "3513222010", "nama" : "Kareng Kidul"}, {"id" : "3513222011", "nama" : "Kedungsupit"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"source_language": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["required", "type", "enum"]}, "word_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}, "app_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}, "app_key": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}}, "required": ["source_language", "word_id", "app_id", "app_key"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "object", "properties" : {"source_language" : {"required" : true, "type" : "string", "enum" : ["en", "es"]}, "word_id" : {"required" : true, "type" : "string", "default" : "ace"}, "app_id" : {"required" : true, "type" : "string", "default" : "5037d509"}, "app_key" : {"required" : true, "type" : "string", "default" : "4dc1aebaa63721f0f8e79a55e2514bc7"}}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"source_language": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["required", "type", "enum"]}, "word_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}, "app_id": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}, "app_key": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "default": {"type": "string"}}, "required": ["required", "type", "default"]}}, "required": ["source_language", "word_id", "app_id", "app_key"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["label", "submenu"]}}}, "required": ["label", "submenu"]}}, "context-menu": {"type": "object", "properties": {".tree-view": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": [".tree-view"]}}, "required": ["menu", "context-menu"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"menu" : [{"label" : "Packages", "submenu" : [{"label" : "Minusk File Template", "submenu" : [{"label" : "New File", "command" : "minusk-file-template:new-file-from-template"}, {"label" : "New Template", "command" : "minusk-file-template:new-template"}, {"label" : "Edit Template", "command" : "minusk-file-template:edit-template"}]}]}], "context-menu" : {".tree-view" : [{"label" : "New File From Template", "command" : "minusk-file-template:new-file"}]}} | json_instruct | {"type": "object", "properties": {"menu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "submenu": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": ["label", "submenu"]}}}, "required": ["label", "submenu"]}}, "context-menu": {"type": "object", "properties": {".tree-view": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "command": {"type": "string"}}, "required": ["label", "command"]}}}, "required": [".tree-view"]}}, "required": ["menu", "context-menu"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"values" : ["mhd:entity_checker"]} | json_instruct | {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-93.17, 44.65]}, "type" : "Feature", "id" : "55024", "properties" : {"other_cities" : "", "city" : "Farmington", "state" : "MN", "county" : "Dakota County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/bd6a7272-cdc0-39ba-abb5-4c0370ebd686", "expression" : [{"id" : "http://data.doremus.org/expression/cc5cc496-eddd-31f9-a53e-48f6efe28b05"}, {"id" : "http://data.doremus.org/expression/b0786fec-0471-3199-b834-61d91bb9c3c7"}, {"id" : "http://data.doremus.org/expression/971abcf9-2895-3528-b113-0e8f0b0d2715"}, {"id" : "http://data.doremus.org/expression/dad5a939-50fd-32eb-9629-6f895c158ee8"}, {"id" : "http://data.doremus.org/expression/0de6a758-9c87-388e-9e5d-ebd25a35cb24"}, {"id" : "http://data.doremus.org/expression/d09efef0-7f0c-3752-9b09-14e5eb6707ef"}, {"id" : "http://data.doremus.org/expression/6ec68914-cc1c-30c2-a612-7d48cb364503"}, {"id" : "http://data.doremus.org/expression/ac47ab31-0b4f-3f4d-8343-7e688fd4154b"}, {"id" : "http://data.doremus.org/expression/7fad3ca2-62ae-3e67-b019-5a6b5e3c4001"}, {"id" : "http://data.doremus.org/expression/05a3820e-982c-398b-bf34-ed25537f9373"}, {"id" : "http://data.doremus.org/expression/9ac95d46-3565-3057-901c-ab1cf061b5d1"}, {"id" : "http://data.doremus.org/expression/41ba5307-1795-3ffc-9535-825ee9aae7cd"}, {"id" : "http://data.doremus.org/expression/f800bca3-5779-3abb-b5bf-c4e76be3a300"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "note": {"type": "string"}, "payment:cash": {"type": "string"}, "payment:credit_cards": {"type": "string"}, "payment:debit_cards": {"type": "string"}, "payment:electronic_purses": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "description", "name", "note", "payment:cash", "payment:credit_cards", "payment:debit_cards", "payment:electronic_purses", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/3817873254", "properties" : {"amenity" : "vending_machine", "description" : "Vertrauenskasse", "name" : "Kartoffel Schatztruhe", "note" : "Name vor Ort mit Deppenleerzeichen", "payment:cash" : "yes", "payment:credit_cards" : "no", "payment:debit_cards" : "no", "payment:electronic_purses" : "no", "vending" : "potatoes", "id" : "node/3817873254"}, "geometry" : {"type" : "Point", "coordinates" : [9.1372958, 49.095361]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "description": {"type": "string"}, "name": {"type": "string"}, "note": {"type": "string"}, "payment:cash": {"type": "string"}, "payment:credit_cards": {"type": "string"}, "payment:debit_cards": {"type": "string"}, "payment:electronic_purses": {"type": "string"}, "vending": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "description", "name", "note", "payment:cash", "payment:credit_cards", "payment:debit_cards", "payment:electronic_purses", "vending", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"open": {"type": "integer"}, "close": {"type": "integer"}, "high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["open", "close", "high", "low"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"open" : 5, "close" : 10, "high" : 12, "low" : 5}, {"open" : 10, "close" : 2, "high" : 10, "low" : 2}, {"open" : 2, "close" : 15, "high" : 20, "low" : 0}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"open": {"type": "integer"}, "close": {"type": "integer"}, "high": {"type": "integer"}, "low": {"type": "integer"}}, "required": ["open", "close", "high", "low"]}, "$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"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simplemde", "version" : "1.11.2", "homepage" : "https://github.com/NextStepWebs/simplemde-markdown-editor", "authors" : ["Wes Cossick <https://wescossick.com>"], "description" : "A simple, beautiful, and embeddable JavaScript Markdown editor.", "main" : ["src/js/simplemde.js", "src/css/simplemde.css"], "keywords" : ["embeddable", "markdown", "editor", "javascript", "wysiwyg"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components"], "_release" : "1.11.2", "_resolution" : {"type" : "version", "tag" : "1.11.2", "commit" : "6abda7ab68cc20f4aca870eb243747951b90ab04"}, "_source" : "https://github.com/sparksuite/simplemde-markdown-editor.git", "_target" : "1.11.2", "_originalSource" : "simplemde", "_direct" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "_release": {"type": "string"}, "_resolution": {"type": "object", "properties": {"type": {"type": "string"}, "tag": {"type": "string"}, "commit": {"type": "string"}}, "required": ["type", "tag", "commit"]}, "_source": {"type": "string"}, "_target": {"type": "string"}, "_originalSource": {"type": "string"}, "_direct": {"type": "boolean"}}, "required": ["name", "version", "homepage", "authors", "description", "main", "keywords", "license", "ignore", "_release", "_resolution", "_source", "_target", "_originalSource", "_direct"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "string"}, "csid": {"type": "string"}, "summary": {"type": "string"}, "recordtype": {"type": "string"}}, "required": ["number", "csid", "summary", "recordtype"]}}, "pagination": {"type": "object", "properties": {"totalItems": {"type": "integer"}}, "required": ["totalItems"]}}, "required": ["items", "pagination"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"items" : [{"number" : "MST:1:4B", "csid" : "11223344", "summary" : "MST:1:4B", "recordtype" : "location"}, {"number" : "MST:2:4B", "csid" : "11223345", "summary" : "MST:2:4B", "recordtype" : "location"}, {"number" : "MST:3:4B", "csid" : "loc111222333", "summary" : "MST:3:4B", "recordtype" : "location"}], "pagination" : {"totalItems" : 3}} | json_instruct | {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"number": {"type": "string"}, "csid": {"type": "string"}, "summary": {"type": "string"}, "recordtype": {"type": "string"}}, "required": ["number", "csid", "summary", "recordtype"]}}, "pagination": {"type": "object", "properties": {"totalItems": {"type": "integer"}}, "required": ["totalItems"]}}, "required": ["items", "pagination"], "$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.