input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 16275, "children" : [{"id" : 16513, "name" : "Modersohn-Becker, Paula -- opposition between art and motherhood in her life, in \"Requiem for a Friend\""}], "name" : "Modersohn-Becker, Paula"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "name": {"type": "string"}}, "required": ["id", "children", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"media_id" : "77479877", "local_id" : "NO003\n", "title" : "File:Ellen_Olsson,_actor_-_SMV_-_NO003.tif", "thumbnail" : "https://upload.wikimedia.org/wikipedia/commons/thumb/2/2e/Ellen_Olsson,_actor_-_SMV_-_NO003.tif/500px-Ellen_Olsson,_actor_-_SMV_-_NO003.tif.jpg", "desc" : " Ellen Olsson, sk\u00e5despelare. Odaterat portr\u00e4tt ca 1910. Skannat glasnegativ\n", "auto_desc" : {"translatedText" : "Ellen Olsson, actor. Undated portrait about 1910. Scanned glass negative", "input" : " Ellen Olsson, sk\u00e5despelare. Odaterat portr\u00e4tt ca 1910. Skannat glasnegativ\n"}}
json_instruct
{"type": "object", "properties": {"media_id": {"type": "string"}, "local_id": {"type": "string"}, "title": {"type": "string"}, "thumbnail": {"type": "string"}, "desc": {"type": "string"}, "auto_desc": {"type": "object", "properties": {"translatedText": {"type": "string"}, "input": {"type": "string"}}, "required": ["translatedText", "input"]}}, "required": ["media_id", "local_id", "title", "thumbnail", "desc", "auto_desc"], "$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"}, "main": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"babel-plugin-module-resolver": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "moment": {"type": "string"}, "next": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "semantic-ui-css": {"type": "string"}, "semantic-ui-react": {"type": "string"}, "solc": {"type": "string"}, "truffle-hdwallet-provider": {"type": "string"}, "web3": {"type": "string"}}, "required": ["babel-plugin-module-resolver", "css-loader", "file-loader", "moment", "next", "node-sass", "react", "react-dom", "semantic-ui-css", "semantic-ui-react", "solc", "truffle-hdwallet-provider", "web3"]}}, "required": ["name", "version", "main", "description", "repository", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "dn-auction-dapp", "version" : "1.0.0", "main" : "server.js", "description" : "DApp (decentralized application) for Discount Notes Auction", "repository" : "https://github.com/TaraTritt/dn-auction-dapp.git", "author" : "TaraTritt <tmt7rc@virginia.edu>", "license" : "MIT", "scripts" : {"start" : "next dev"}, "dependencies" : {"babel-plugin-module-resolver" : "^3.1.0", "css-loader" : "^0.28.10", "file-loader" : "^1.1.10", "moment" : "^2.21.0", "next" : "^5.0.0", "node-sass" : "^4.7.2", "react" : "^16.2.0", "react-dom" : "^16.2.0", "semantic-ui-css" : "^2.3.0", "semantic-ui-react" : "^0.78.2", "solc" : "^0.4.20", "truffle-hdwallet-provider" : "^0.0.3", "web3" : "^1.0.0-beta.30"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"babel-plugin-module-resolver": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "moment": {"type": "string"}, "next": {"type": "string"}, "node-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "semantic-ui-css": {"type": "string"}, "semantic-ui-react": {"type": "string"}, "solc": {"type": "string"}, "truffle-hdwallet-provider": {"type": "string"}, "web3": {"type": "string"}}, "required": ["babel-plugin-module-resolver", "css-loader", "file-loader", "moment", "next", "node-sass", "react", "react-dom", "semantic-ui-css", "semantic-ui-react", "solc", "truffle-hdwallet-provider", "web3"]}}, "required": ["name", "version", "main", "description", "repository", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["440823107001", "\u57ce\u6708\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["440823107002", "\u65b0\u57ce\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["440823107003", "\u57ce\u7cd6\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["440823107200", "\u7af9\u53f6\u5858\u6751\u59d4\u4f1a", "122", "0"], ["440823107201", "\u57ce\u6708\u6751\u59d4\u4f1a", "121", "0"], ["440823107202", "\u540e\u6eaa\u6751\u59d4\u4f1a", "122", "0"], ["440823107203", "\u7530\u5934\u6751\u59d4\u4f1a", "122", "0"], ["440823107204", "\u6276\u826f\u6751\u59d4\u4f1a", "220", "0"], ["440823107205", "\u5b98\u7530\u6751\u59d4\u4f1a", "220", "0"], ["440823107206", "\u77f3\u5858\u6751\u59d4\u4f1a", "220", "0"], ["440823107207", "\u5761\u5934\u6751\u59d4\u4f1a", "220", "0"], ["440823107208", "\u6f6d\u845b\u6751\u59d4\u4f1a", "220", "0"], ["440823107209", "\u4e1c\u98ce\u6751\u59d4\u4f1a", "220", "0"], ["440823107210", "\u5e2e\u673a\u6751\u59d4\u4f1a", "220", "0"], ["440823107211", "\u5bb6\u5bee\u6751\u59d4\u4f1a", "220", "0"], ["440823107212", "\u8fc8\u5766\u6751\u59d4\u4f1a", "220", "0"], ["440823107213", "\u4ec1\u91cc\u6751\u59d4\u4f1a", "220", "0"], ["440823107214", "\u864e\u5934\u5761\u6751\u59d4\u4f1a", "220", "0"], ["440823107215", "\u5e84\u5bb6\u6751\u59d4\u4f1a", "220", "0"], ["440823107216", "\u5e73\u8861\u6751\u59d4\u4f1a", "220", "0"], ["440823107217", "\u5434\u6751\u6751\u59d4\u4f1a", "220", "0"], ["440823107218", "\u5434\u897f\u6751\u59d4\u4f1a", "220", "0"], ["440823107219", "\u5751\u4ed4\u6751\u59d4\u4f1a", "220", "0"], ["440823107220", "\u9ad8\u660e\u6751\u59d4\u4f1a", "220", "0"], ["440823107221", "\u9648\u5bb6\u6751\u59d4\u4f1a", "220", "0"], ["440823107400", "\u96f7\u5dde\u6797\u4e1a\u5c40\u673a\u5173", "220", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"openapi": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "description", "version"]}, "servers": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}}, "paths": {"type": "object", "properties": {"/": {"type": "object", "properties": {"get": {"type": "object", "properties": {"responses": {"type": "object", "properties": {"default": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["default"]}}, "required": ["responses"]}}, "required": ["get"]}}, "required": ["/"]}}, "required": ["openapi", "info", "servers", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"openapi" : "3.0.0", "info" : {"title" : "Service for management API / Dynamic configs", "description" : "OAS provided externally", "version" : "0.1.9"}, "servers" : [{"url" : "https://invalid-url:8005", "description" : "should be overridden"}], "paths" : {"/" : {"get" : {"responses" : {"default" : {"description" : ""}}}}}}
json_instruct
{"type": "object", "properties": {"openapi": {"type": "string"}, "info": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}}, "required": ["title", "description", "version"]}, "servers": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}}, "paths": {"type": "object", "properties": {"/": {"type": "object", "properties": {"get": {"type": "object", "properties": {"responses": {"type": "object", "properties": {"default": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["default"]}}, "required": ["responses"]}}, "required": ["get"]}}, "required": ["/"]}}, "required": ["openapi", "info", "servers", "paths"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"config": {"type": "object", "properties": {"ingestor": {"type": "object", "properties": {"pipeline": {"type": "string"}, "queue_size": {"type": "integer"}, "type": {"type": "string"}}, "required": ["pipeline", "queue_size", "type"]}, "max_workers": {"type": "integer"}}, "required": ["ingestor", "max_workers"]}, "interfaces": {"type": "object", "properties": {"Publishers": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Type": {"type": "string"}, "EndPoint": {"type": "string"}, "Topics": {"type": "array", "items": {"type": "string"}}, "AllowedClients": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Type", "EndPoint", "Topics", "AllowedClients"]}}}, "required": ["Publishers"]}}, "required": ["config", "interfaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"config" : {"ingestor" : {"pipeline" : "rtspsrc location=\"rtsp://<RTSP_SOURCE_IP>:8554/live.sdp\" latency=100 ! rtph264depay ! h264parse ! vaapih264dec ! vaapipostproc format=bgrx ! gvainference device=CPU model=common/video/udfs/python/pcb/ref/model_2.xml ! vaapipostproc height=600 width=600 ! videoconvert ! video/x-raw,format=BGR ! appsink", "queue_size" : 10, "type" : "gstreamer"}, "max_workers" : 4}, "interfaces" : {"Publishers" : [{"Name" : "default", "Type" : "zmq_ipc", "EndPoint" : "/EII/sockets", "Topics" : ["camera1_stream"], "AllowedClients" : ["VideoAnalytics", "Visualizer", "WebVisualizer", "TLSRemoteAgent", "RestDataExport", "VideoProfiler"]}]}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"ingestor": {"type": "object", "properties": {"pipeline": {"type": "string"}, "queue_size": {"type": "integer"}, "type": {"type": "string"}}, "required": ["pipeline", "queue_size", "type"]}, "max_workers": {"type": "integer"}}, "required": ["ingestor", "max_workers"]}, "interfaces": {"type": "object", "properties": {"Publishers": {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Type": {"type": "string"}, "EndPoint": {"type": "string"}, "Topics": {"type": "array", "items": {"type": "string"}}, "AllowedClients": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Type", "EndPoint", "Topics", "AllowedClients"]}}}, "required": ["Publishers"]}}, "required": ["config", "interfaces"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}}, "required": ["siteMetadata"]}, "allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"slug": {"type": "string"}, "categorySlug": {"type": "string"}}, "required": ["slug", "categorySlug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "date", "category", "description"]}}, "required": ["fields", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["site", "allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {"tag": {"type": "string"}, "currentPage": {"type": "integer"}, "postsLimit": {"type": "integer"}, "postsOffset": {"type": "integer"}, "prevPagePath": {"type": "string"}, "nextPagePath": {"type": "string"}, "hasPrevPage": {"type": "boolean"}, "hasNextPage": {"type": "boolean"}}, "required": ["tag", "currentPage", "postsLimit", "postsOffset", "prevPagePath", "nextPagePath", "hasPrevPage", "hasNextPage"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"componentChunkName" : "component---src-templates-tag-template-js", "path" : "/tag/emacs", "result" : {"data" : {"site" : {"siteMetadata" : {"title" : "momorandum", "subtitle" : "momo's memorandums."}}, "allMarkdownRemark" : {"edges" : [{"node" : {"fields" : {"slug" : "/posts/2012112900/syntax-highlighter-evolved-for-lisp", "categorySlug" : "/category/app/"}, "frontmatter" : {"title" : "SyntaxHighlighter Evolved \u3092 Lisp \u5bfe\u5fdc", "date" : "2012-11-29T01:58:27.000Z", "category" : "App", "description" : "Emacs Lisp \u30b3\u30fc\u30c9\u3092 WordPress blog \u306b\u8cbc\u308a\u4ed8\u3051\u305f\u3044\u306e\u3067\u3001Lisp \u5bfe\u5fdc\u30d7\u30ed\u30b0\u30e9\u30e0\u3092\u8ffd\u52a0\u3057\u305f\u3002"}}}, {"node" : {"fields" : {"slug" : "/posts/2012112901/use-markdown-on-wordpress-1", "categorySlug" : "/category/web/"}, "frontmatter" : {"title" : "WordPress \u3092 Markdown \u66f8\u5f0f\u3067\u66f4\u65b0\u3059\u308b(1): markdown-mode.el", "date" : "2012-11-29T01:17:55.000Z", "category" : "Web", "description" : "WordPress \u3092 Markdown \u66f8\u5f0f\u3092\u4f7f\u3063\u3066\u66f8\u304d\u305f\u3044\u306e\u3067\u3001\u5916\u90e8\u30d7\u30ed\u30b0\u30e9\u30e0\u3067\u5de5\u592b\u3057\u3066\u307f\u305f\u3002"}}}]}}, "pageContext" : {"tag" : "Emacs", "currentPage" : 0, "postsLimit" : 4, "postsOffset" : 0, "prevPagePath" : "/tag/emacs", "nextPagePath" : "/tag/emacs/page/1", "hasPrevPage" : false, "hasNextPage" : false}}, "staticQueryHashes" : ["251939775", "401334301", "825871152"]}
json_instruct
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"site": {"type": "object", "properties": {"siteMetadata": {"type": "object", "properties": {"title": {"type": "string"}, "subtitle": {"type": "string"}}, "required": ["title", "subtitle"]}}, "required": ["siteMetadata"]}, "allMarkdownRemark": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"fields": {"type": "object", "properties": {"slug": {"type": "string"}, "categorySlug": {"type": "string"}}, "required": ["slug", "categorySlug"]}, "frontmatter": {"type": "object", "properties": {"title": {"type": "string"}, "date": {"type": "string"}, "category": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "date", "category", "description"]}}, "required": ["fields", "frontmatter"]}}, "required": ["node"]}}}, "required": ["edges"]}}, "required": ["site", "allMarkdownRemark"]}, "pageContext": {"type": "object", "properties": {"tag": {"type": "string"}, "currentPage": {"type": "integer"}, "postsLimit": {"type": "integer"}, "postsOffset": {"type": "integer"}, "prevPagePath": {"type": "string"}, "nextPagePath": {"type": "string"}, "hasPrevPage": {"type": "boolean"}, "hasNextPage": {"type": "boolean"}}, "required": ["tag", "currentPage", "postsLimit", "postsOffset", "prevPagePath", "nextPagePath", "hasPrevPage", "hasNextPage"]}}, "required": ["data", "pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "required": ["componentChunkName", "path", "result", "staticQueryHashes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "KAVEN", "frequency" : 627, "males" : "99.84051036682615 %", "females" : "0.1594896331738437 %"}]
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"results" : [{"tech" : 1, "pts" : 62, "connections" : 124096, "capacity" : 3266929, "investments" : 20476046}]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["histoprint"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "Cyclohexanone + Acceptor <=> Cyclohex-2-enone + Reduced acceptor", "orthologs" : {}, "name" : "Cyclohexanone:(acceptor) 2-oxidoreductase", "product_stoichiometries" : ["1", "1"], "enzymes" : ["1.3.99.14"], "equation" : "C00414 + C00028 <=> C02395 + C00030", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R02234", "pathways" : {}, "products" : ["C02395", "C00030"], "substrates" : ["C00414", "C00028"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$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"}}, "required": ["type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "STOP_LOSS_ORDER"}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}}, "required": ["ipv4_tcp", "internal", "resolver_asn", "resolver_net"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"probe_id" : 3907, "resolvers" : [{"ipv4_tcp" : true, "internal" : "213.133.164.35", "resolver_asn" : 13249, "resolver_net" : "213.133.160.0/19"}, {"ipv6_tcp" : true, "resolver_asn" : 15169, "resolver_net" : "74.125.0.0/18", "ipv4_tcp" : true, "internal" : "8.8.8.8", "ipv6_cap" : true, "edns0_client_subnet" : "213.133.161.0/24"}]}
json_instruct
{"type": "object", "properties": {"probe_id": {"type": "integer"}, "resolvers": {"type": "array", "items": {"type": "object", "properties": {"ipv4_tcp": {"type": "boolean"}, "internal": {"type": "string"}, "resolver_asn": {"type": "integer"}, "resolver_net": {"type": "string"}}, "required": ["ipv4_tcp", "internal", "resolver_asn", "resolver_net"]}}}, "required": ["probe_id", "resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Awesomenauts", "description" : "A 2D cartoony side-scrolling game.", "url" : "https://www.awesomenauts.com/"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cardType": {"type": "array", "items": {"type": "string"}}}, "required": ["cardType"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cardType" : ["en"]}
json_instruct
{"type": "object", "properties": {"cardType": {"type": "array", "items": {"type": "string"}}}, "required": ["cardType"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}}, "required": ["@symfony/webpack-encore", "node-sass", "sass-loader"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "datatables.net-bs": {"type": "string"}, "datatables.net-dt": {"type": "string"}, "jquery": {"type": "string"}, "open-iconic": {"type": "string"}, "open-sans-fontface": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "datatables.net-bs", "datatables.net-dt", "jquery", "open-iconic", "open-sans-fontface", "popper.js"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"devDependencies" : {"@symfony/webpack-encore" : "^0.17", "node-sass" : "^4", "sass-loader" : "^6"}, "dependencies" : {"bootstrap" : "^4", "datatables.net-bs" : "^1.10.16", "datatables.net-dt" : "^1.10.16", "jquery" : "^3.2", "open-iconic" : "^1.*", "open-sans-fontface" : "^1.4.0", "popper.js" : "^1.12.9"}}
json_instruct
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}}, "required": ["@symfony/webpack-encore", "node-sass", "sass-loader"]}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "datatables.net-bs": {"type": "string"}, "datatables.net-dt": {"type": "string"}, "jquery": {"type": "string"}, "open-iconic": {"type": "string"}, "open-sans-fontface": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "datatables.net-bs", "datatables.net-dt", "jquery", "open-iconic", "open-sans-fontface", "popper.js"]}}, "required": ["devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"cancelled": {"type": "boolean"}, "description": {"type": "string"}, "end_time": {"type": "integer"}, "link": {"type": "string"}, "location": {"type": "object", "properties": {"address": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "name": {"type": "string"}}, "required": ["address", "city", "country", "latitude", "longitude", "name"]}, "org": {"type": "string"}, "start_time": {"type": "integer"}, "title": {"type": "string"}}, "required": ["cancelled", "description", "end_time", "link", "location", "org", "start_time", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cancelled" : false, "description" : "<p>The Bath Scrum User Group hits 50 this month - that's 50 meetings since May 2012, so let's celebrate with a social gathering at The Cork where we held the first meeting.</p> <p>Since then we have often ventured outside Bath, and often covered topics beyond core Scrum. By we have built a strong community, do come along to catch up and network with other members of the group. The format is flexible: we may run a Lean Coffee session, and bear in mind that both drinks and food will be available at The Cork.</p> <p>Hope to see you all there!</p> ", "end_time" : 1471377600, "link" : "https://www.meetup.com/Agile-Bath-Bristol/events/233182143/", "location" : {"address" : "11/12 Westgate Buildings", "city" : "Bath", "country" : "gb", "latitude" : 51.380001068115234, "longitude" : -2.361346960067749, "name" : "The Cork"}, "org" : "agile", "start_time" : 1471370400, "title" : "Summer Social (BSUG is 50!)"}
json_instruct
{"type": "object", "properties": {"cancelled": {"type": "boolean"}, "description": {"type": "string"}, "end_time": {"type": "integer"}, "link": {"type": "string"}, "location": {"type": "object", "properties": {"address": {"type": "string"}, "city": {"type": "string"}, "country": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}, "name": {"type": "string"}}, "required": ["address", "city", "country", "latitude", "longitude", "name"]}, "org": {"type": "string"}, "start_time": {"type": "integer"}, "title": {"type": "string"}}, "required": ["cancelled", "description", "end_time", "link", "location", "org", "start_time", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index" : 611, "redacted" : false, "hash" : 2825528269, "blacklisted" : false}
json_instruct
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.59490895, "width" : 0.067103624, "ymin" : 0.60020643, "height" : 0.08387953}, "relativeKeypoints" : [{"y" : 0.61325175, "x" : 0.61839086}, {"y" : 0.6691563, "x" : 0.64691836}, {"y" : 0.67494243, "x" : 0.6291712}, {"y" : 0.6763206, "x" : 0.6131988}, {"y" : 0.674665, "x" : 0.5994385}, {"y" : 0.6137177, "x" : 0.6405265}, {"y" : 0.63930374, "x" : 0.65569806}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.9997408], "label" : ["Palm"]}
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xdc763b1cf6364266ad7285a0ca4a034291527f67", "tool" : "osiris", "start" : 1564634291.750228, "end" : 1564634294.2837224, "duration" : 2.533494472503662, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2001", "provinceId" : "12", "regencyId" : "25", "districtId" : "08", "name" : "Bukit Tinggi"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"company_name": {"type": "string"}, "con_date": {"type": "string"}}, "required": ["company_name", "con_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"company_name" : "Foo", "con_date" : "asdfasdfasdf"}
json_instruct
{"type": "object", "properties": {"company_name": {"type": "string"}, "con_date": {"type": "string"}}, "required": ["company_name", "con_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"Code": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "Description": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["Code", "Description"]}}, "required": ["title", "description", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "SpatialReferenceSystemType", "description" : "Information about the type of spatial reference system used to specify Location. Values are: Local (to the organisation using it), International, Regional, Global.", "type" : "object", "properties" : {"Code" : {"description" : "Values: Local (to the organisation using it), International, Regional, Global.", "type" : "string"}, "Description" : {"description" : "Description of the type of spatial reference system used to specify Location. Values are: Local (to the organisation using it), International, Regional, Global.", "type" : "string"}}}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"Code": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "Description": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}}, "required": ["Code", "Description"]}}, "required": ["title", "description", "type", "properties"], "$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": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "Feature", "id" : "viewsistemaviariocompleto.fid-cda359b_16bd380d5a7_448f", "geometry" : {"type" : "MultiLineString", "coordinates" : [[[-48.69255937, -26.89880859], [-48.69055348, -26.89886995], [-48.68865168, -26.89891243]]]}, "geometry_name" : "geom", "properties" : {"id" : 63, "nome" : "R.Jos\u00e9 de Alencar", "cod" : 47, "ptotalvia" : 7, "ppasseio1" : 1, "ppasseio2" : 1, "leidata" : "2406/1988", "hierarquia" : null, "bairro" : "S\u00e3o Vicente", "abrevlogr" : null, "pavto" : "Asfalto", "anopavtoin" : "set/17", "loteamnome" : "-", "nomeloteamento" : "-"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "integer"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Title": {"type": "string"}, "Description": {"type": "string"}, "DataBase": {"type": "array", "items": {"type": "string"}}, "Questions": {"type": "array", "items": {"type": "string"}}}, "required": ["Title", "Description", "DataBase", "Questions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Title" : "DataBase Informations", "Description" : "Extract all the dataBase Informations", "DataBase" : ["sqlserver"], "Questions" : ["SQLSERVER_GetForeignKeys.json", "SQLSERVER_OperationalSystem.json", "SQLSERVER_GetExecutingQuerys.json", "SQLSERVER_ExtractIndex.json", "SQLSERVER_DatabaseVersion.json", "SQLSERVER_CountRows.json", "SQLSERVER_ActiveConnections.json"]}
json_instruct
{"type": "object", "properties": {"Title": {"type": "string"}, "Description": {"type": "string"}, "DataBase": {"type": "array", "items": {"type": "string"}}, "Questions": {"type": "array", "items": {"type": "string"}}}, "required": ["Title", "Description", "DataBase", "Questions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"tsconfig": {"type": "string"}, "entryPoints": {"type": "array", "items": {"type": "string"}}, "entryPointStrategy": {"type": "string"}, "externalPattern": {"type": "array", "items": {"type": "string"}}, "excludeExternals": {"type": "boolean"}, "excludeInternal": {"type": "boolean"}, "validation": {"type": "object", "properties": {"invalidLink": {"type": "boolean"}}, "required": ["invalidLink"]}, "out": {"type": "string"}, "sort": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "readme": {"type": "string"}, "media": {"type": "string"}, "gaID": {"type": "string"}, "excludedFunctionOrMethod": {"type": "array", "items": {"type": "string"}}}, "required": ["tsconfig", "entryPoints", "entryPointStrategy", "externalPattern", "excludeExternals", "excludeInternal", "validation", "out", "sort", "name", "readme", "media", "gaID", "excludedFunctionOrMethod"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tsconfig" : "../../tsconfig.json", "entryPoints" : ["../Runtime/gd.ts"], "entryPointStrategy" : "expand", "externalPattern" : ["Runtime/Cordova/", "Runtime/Electron/", "Runtime/FacebookInstantGames/"], "excludeExternals" : true, "excludeInternal" : true, "validation" : {"invalidLink" : true}, "out" : "../../docs/GDJS Runtime Documentation", "sort" : ["visibility", "alphabetical"], "name" : "GDevelop JavaScript game engine", "readme" : "./typedoc-main-page.md", "media" : "media", "gaID" : "G-4K6TTDG4TT", "excludedFunctionOrMethod" : ["^_"]}
json_instruct
{"type": "object", "properties": {"tsconfig": {"type": "string"}, "entryPoints": {"type": "array", "items": {"type": "string"}}, "entryPointStrategy": {"type": "string"}, "externalPattern": {"type": "array", "items": {"type": "string"}}, "excludeExternals": {"type": "boolean"}, "excludeInternal": {"type": "boolean"}, "validation": {"type": "object", "properties": {"invalidLink": {"type": "boolean"}}, "required": ["invalidLink"]}, "out": {"type": "string"}, "sort": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "readme": {"type": "string"}, "media": {"type": "string"}, "gaID": {"type": "string"}, "excludedFunctionOrMethod": {"type": "array", "items": {"type": "string"}}}, "required": ["tsconfig", "entryPoints", "entryPointStrategy", "externalPattern", "excludeExternals", "excludeInternal", "validation", "out", "sort", "name", "readme", "media", "gaID", "excludedFunctionOrMethod"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "morevillagers:block/hunting_post"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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.015838, 39.72488], [-105.015768, 39.725502], [-105.013655, 39.725658], [-105.000656, 39.725783], [-105.000169, 39.726481], [-105.000148, 39.725707], [-104.987435, 39.725637], [-104.987431, 39.696633], [-104.992384, 39.69666], [-104.992392, 39.69922], [-104.997355, 39.70505], [-105.002463, 39.715712], [-105.009633, 39.721502], [-105.0127, 39.722438], [-105.015838, 39.72488]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 12626}}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"unlock_ticket": {"type": "string"}, "z_c0": {"type": "string"}, "_xsrf": {"type": "string"}, "cap_id": {"type": "string"}, "q_c1": {"type": "string"}}, "required": ["unlock_ticket", "z_c0", "_xsrf", "cap_id", "q_c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"unlock_ticket" : "\"QUJETWRxZ3ZKQWtYQUFBQVlRSlZUUU9qYWxiVC1ENXU2WVhCejJDTlpFQ2FwQXBSdFpsaWxBPT0=|1449827323|4a3dc8a8f1add7d68f446d799ec86f192d9a4e83\"", "z_c0" : "\"QUJETWRxZ3ZKQWtYQUFBQVlRSlZUZnNva2xhMEdldWRoVzVXZU1xUkEwd0VFNENxb0dXUHpnPT0=|1449827323|a2ecf0642368c1b43368bf83d5f2cc1ccbf6649a\"", "_xsrf" : "1452764141227ef365f2d0c7695c0457", "cap_id" : "\"NjY3ZmUxNGVlZDE2NGNmNGFlY2QzOTAzNTU0ZDVlOWI=|1449827304|723c630cd1c47d17fae91e416bbf522f6d2d31b0\"", "q_c1" : "d5271065cdea4b029dfae6debf6e7832|1449827304000|1449827304000"}
json_instruct
{"type": "object", "properties": {"unlock_ticket": {"type": "string"}, "z_c0": {"type": "string"}, "_xsrf": {"type": "string"}, "cap_id": {"type": "string"}, "q_c1": {"type": "string"}}, "required": ["unlock_ticket", "z_c0", "_xsrf", "cap_id", "q_c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"index.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.js", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"index.js" : "sha256-YWfru3WFp4Z86bMmdCP52tC7D+xGWo2v/5C82VA1yQI=", "index.min.js" : "sha256-XcC2e3xSqhla4GLbxVvo2+R8QdjoLYnRwR2wBSNWyJk="}
json_instruct
{"type": "object", "properties": {"index.js": {"type": "string"}, "index.min.js": {"type": "string"}}, "required": ["index.js", "index.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 37093, "cartId" : "42f2dd52-276c-482b-a4d8-e60a63c94275", "preferredProducts" : [4686], "productReviews" : [{"productId" : 348, "reviewText" : "i use it daily when i'm in my outhouse.", "reviewDate" : "2016-05-13T13:36:04.9034302+03:00"}, {"productId" : 2196, "reviewText" : "one of my hobbies is piano. and when i'm playing piano this works great.", "reviewDate" : "2016-07-21T04:29:34.1436854+03:00"}, {"productId" : 2612, "reviewText" : "This Rustic works certainly well. It energetically improves my golf by a lot.", "reviewDate" : "2018-01-17T21:17:55.4781193+02:00"}, {"productId" : 4240, "reviewText" : "My co-worker Delton has one of these. He says it looks slender.", "reviewDate" : "2018-07-22T09:17:35.1303958+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/*.p2asm": {"type": "boolean"}, "**/*.binary": {"type": "boolean"}, "**/*.txt": {"type": "boolean"}, "**/*.obj": {"type": "boolean"}, "**/*.lst": {"type": "boolean"}, "**/*.bin": {"type": "boolean"}, "**/*.bin2": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/*.p2asm", "**/*.binary", "**/*.txt", "**/*.obj", "**/*.lst", "**/*.bin", "**/*.bin2"]}, "topLevel": {"type": "string"}, "explorerExclude.backup": {"type": "null"}}, "required": ["files.exclude", "topLevel", "explorerExclude.backup"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files.exclude" : {"**/.git" : true, "**/.svn" : true, "**/.hg" : true, "**/CVS" : true, "**/.DS_Store" : true, "**/*.p2asm" : true, "**/*.binary" : true, "**/*.txt" : true, "**/*.obj" : true, "**/*.lst" : true, "**/*.bin" : true, "**/*.bin2" : true}, "topLevel" : "isp_measure_panel", "explorerExclude.backup" : null}
json_instruct
{"type": "object", "properties": {"files.exclude": {"type": "object", "properties": {"**/.git": {"type": "boolean"}, "**/.svn": {"type": "boolean"}, "**/.hg": {"type": "boolean"}, "**/CVS": {"type": "boolean"}, "**/.DS_Store": {"type": "boolean"}, "**/*.p2asm": {"type": "boolean"}, "**/*.binary": {"type": "boolean"}, "**/*.txt": {"type": "boolean"}, "**/*.obj": {"type": "boolean"}, "**/*.lst": {"type": "boolean"}, "**/*.bin": {"type": "boolean"}, "**/*.bin2": {"type": "boolean"}}, "required": ["**/.git", "**/.svn", "**/.hg", "**/CVS", "**/.DS_Store", "**/*.p2asm", "**/*.binary", "**/*.txt", "**/*.obj", "**/*.lst", "**/*.bin", "**/*.bin2"]}, "topLevel": {"type": "string"}, "explorerExclude.backup": {"type": "null"}}, "required": ["files.exclude", "topLevel", "explorerExclude.backup"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ETag" : "W/\"b845191df80a4276b09b2d25bc0a08d8\"", "Last-Modified" : "Fri, 21 Jun 2019 22:21:10 GMT", "base" : {"repo" : {"name" : "singularity-compose-feedstock"}}, "closed_at" : "2019-06-21T21:56:27Z", "created_at" : "2019-06-21T19:38:50Z", "head" : {"ref" : "0.0.13"}, "html_url" : "https://github.com/conda-forge/singularity-compose-feedstock/pull/2", "id" : 290725122, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2019-06-21T21:56:27Z", "number" : 2, "state" : "closed", "updated_at" : "2019-06-21T22:21:10Z"}
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@types/codemirror": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "@vitejs/plugin-react": {"type": "string"}, "codemirror": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-codemirror2": {"type": "string"}, "react-dom": {"type": "string"}, "react-json-view": {"type": "string"}, "react-router-dom": {"type": "string"}, "rimraf": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-svgr": {"type": "string"}}, "required": ["@babel/core", "@types/codemirror", "@types/react", "@types/react-dom", "@types/react-router-dom", "@vitejs/plugin-react", "codemirror", "prettier", "react", "react-codemirror2", "react-dom", "react-json-view", "react-router-dom", "rimraf", "sass", "typescript", "vite", "vite-plugin-svgr"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prettier": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "prettier", "start"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "playground", "version" : "0.1.0", "private" : true, "dependencies" : {"@babel/core" : "7.18.2", "@types/codemirror" : "5.60.5", "@types/react" : "16.14.2", "@types/react-dom" : "16.9.10", "@types/react-router-dom" : "5.1.7", "@vitejs/plugin-react" : "1.3.2", "codemirror" : "5.65.4", "prettier" : "2.2.1", "react" : "16.14.0", "react-codemirror2" : "7.2.1", "react-dom" : "16.14.0", "react-json-view" : "1.21.3", "react-router-dom" : "5.2.0", "rimraf" : "3.0.2", "sass" : "^1.52.1", "typescript" : "4.1.3", "vite" : "2.9.9", "vite-plugin-svgr" : "2.1.0"}, "scripts" : {"build" : "tsc && vite build", "prettier" : "prettier --parser typescript ./src/**/*.{ts,tsx} --write", "start" : "echo Starting the development server && vite"}, "browserslist" : {"production" : [">0.2%", "not dead", "not op_mini all"], "development" : ["last 1 chrome version", "last 1 firefox version", "last 1 safari version"]}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@types/codemirror": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "@types/react-router-dom": {"type": "string"}, "@vitejs/plugin-react": {"type": "string"}, "codemirror": {"type": "string"}, "prettier": {"type": "string"}, "react": {"type": "string"}, "react-codemirror2": {"type": "string"}, "react-dom": {"type": "string"}, "react-json-view": {"type": "string"}, "react-router-dom": {"type": "string"}, "rimraf": {"type": "string"}, "sass": {"type": "string"}, "typescript": {"type": "string"}, "vite": {"type": "string"}, "vite-plugin-svgr": {"type": "string"}}, "required": ["@babel/core", "@types/codemirror", "@types/react", "@types/react-dom", "@types/react-router-dom", "@vitejs/plugin-react", "codemirror", "prettier", "react", "react-codemirror2", "react-dom", "react-json-view", "react-router-dom", "rimraf", "sass", "typescript", "vite", "vite-plugin-svgr"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "prettier": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "prettier", "start"]}, "browserslist": {"type": "object", "properties": {"production": {"type": "array", "items": {"type": "string"}}, "development": {"type": "array", "items": {"type": "string"}}}, "required": ["production", "development"]}}, "required": ["name", "version", "private", "dependencies", "scripts", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"title": {"type": "string"}, "level": {"type": "string"}, "principle": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["type", "pattern"]}}, "required": ["id"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "level", "principle", "description", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "id", "level" : "error", "principle" : "http://obofoundry.org/principles/fp-003-uris.html", "description" : "'id' is a required property. The value is a string with no numeric or lowercase characters. This is typically an abbreviation or acronym of the ontology title.", "properties" : {"id" : {"type" : "string", "pattern" : "^[0-9a-z_]+$"}}, "required" : ["id"]}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "level": {"type": "string"}, "principle": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "string"}}, "required": ["type", "pattern"]}}, "required": ["id"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "level", "principle", "description", "properties", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem"]}, "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" : {"items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem" : ["/description"]}, "Texts" : {"Chs" : "\u5c45\u7136\u4f7f\u7528\u690d\u7269\u4f5c\u4e3a\u6b66\u5668\uff0c\u4e0d\u6127\u4e3a\u9c9b\u4eba\u65cf\u51fa\u54c1\uff0c\u592a\u795e\u5947\u4e86\u3002", "Eng" : "Hylotl engineering. A plant as a weapon. Odd."}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u6d77\u5e26\u4e4b\u9524", "Eng" : "Kelp Hammer"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/melee/hammer/kelpsteelhatchet.activeitem"]}, "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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"notifications": {"type": "string"}}, "required": ["notifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"notifications" : "Notificaciones"}
json_instruct
{"type": "object", "properties": {"notifications": {"type": "string"}}, "required": ["notifications"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : "Aude B\u00e9liard"}, {"author" : "Lucie Verreth"}, {"author" : "Pascale Grandjean"}], "doi" : "10.2147/OAJC.S124625", "publication_date" : "2018-02-02", "id" : "EN113536", "url" : "https://pubmed.ncbi.nlm.nih.gov/29386950", "source" : "Open access journal of contraception", "source_url" : "", "licence" : "CC BY-NC", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We report the case of a 38-year-old obese female patient who presented with acute abdominal pain. A bowel infection was first diagnosed and treated with antibiotics. Contrast-enhanced tomography of the abdomen revealed diffuse ischemia of the small intestine with superior mesenteric thrombosis. Laparotomy with segmental resection of both small and large bowel was performed. No predisposing factor of mesenteric venous thrombosis was demonstrated except association of the combined contraceptive with obesity."}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"iso": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "meta": {"type": "object", "properties": {}, "required": []}, "results": {"type": "object", "properties": {"innovations": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "ogp_commitments": {"type": "array", "items": {}}, "citizen_monitoring": {"type": "boolean"}}, "required": ["innovations", "publishers", "ogp_commitments", "citizen_monitoring"]}}, "required": ["iso", "name", "full_name", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"iso" : "rs", "name" : "Serbia", "full_name" : "Serbia \u2013 Republic of Serbia", "meta" : {}, "results" : {"innovations" : [], "publishers" : [], "ogp_commitments" : [], "citizen_monitoring" : true}}
json_instruct
{"type": "object", "properties": {"iso": {"type": "string"}, "name": {"type": "string"}, "full_name": {"type": "string"}, "meta": {"type": "object", "properties": {}, "required": []}, "results": {"type": "object", "properties": {"innovations": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "ogp_commitments": {"type": "array", "items": {}}, "citizen_monitoring": {"type": "boolean"}}, "required": ["innovations", "publishers", "ogp_commitments", "citizen_monitoring"]}}, "required": ["iso", "name", "full_name", "meta", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1026.0, 2052.0, 3078.0, 4104.0, 5130.0, 6156.0, 7182.0, 8208.0, 9234.0, 10260.0, 11286.0, 12312.0, 13338.0, 14364.0, 15390.0, 16416.0, 17442.0, 18468.0, 19494.0, 20520.0, 21546.0, 22572.0, 23598.0, 24624.0, 25650.0, 26676.0, 27702.0, 28728.0, 29754.0, 30780.0, 31806.0, 32832.0, 33858.0, 34884.0, 35910.0, 36936.0, 37962.0, 38988.0, 40014.0, 41040.0, 42066.0, 43092.0, 44118.0, 45144.0, 46170.0, 47196.0, 48222.0, 49248.0, 50274.0, 51300.0, 52326.0, 53352.0, 54378.0, 55404.0, 56430.0, 57456.0, 58482.0, 59508.0, 60534.0, 61560.0, 62586.0, 63612.0, 64638.0, 65664.0, 66690.0, 67716.0, 68742.0, 69768.0, 70794.0, 71820.0, 72846.0, 73872.0, 74898.0, 75924.0, 76950.0, 77976.0, 79002.0, 80028.0, 81054.0, 82080.0, 83106.0, 84132.0, 85158.0, 86184.0, 87210.0, 88236.0, 89262.0, 90288.0, 91314.0, 92340.0, 93366.0, 94392.0, 95418.0, 96444.0, 97470.0, 98496.0, 99522.0, 100548.0, 101574.0, 102600.0], [990203.0, 1979466.0, 2975480.0, 3966242.0, 4948391.0, 5944074.0, 6934306.0, 7920742.0, 8911173.0, 9898490.0, 10893629.0, 11886333.0, 12872628.0, 13860712.0, 14848563.0, 15839436.0, 16945911.0, 17817579.0, 18805380.0, 19797937.0, 20785890.0, 21777971.0, 22765367.0, 23757070.0, 24744019.0, 25735082.0, 26725775.0, 27902091.0, 28709265.0, 29697997.0, 30697359.0, 31688474.0, 32680771.0, 33653233.0, 34651908.0, 35638568.0, 36624760.0, 37612414.0, 38607867.0, 39592976.0, 40596897.0, 41576488.0, 42566811.0, 43560245.0, 44560467.0, 45545479.0, 46612215.0, 47519475.0, 48500238.0, 49499079.0, 50481541.0, 51481912.0, 52633256.0, 53449745.0, 54449554.0, 55435367.0, 56424398.0, 57410492.0, 58403802.0, 59390083.0, 60388152.0, 61372914.0, 62363687.0, 63355652.0, 64341493.0, 65343963.0, 66337292.0, 67311172.0, 68307381.0, 69469052.0, 70292278.0, 71279299.0, 72258535.0, 73260598.0, 74234073.0, 75233442.0, 76216346.0, 77213924.0, 78204866.0, 79809560.0, 80179816.0, 81158053.0, 82166544.0, 83334026.0, 84140378.0, 85128870.0, 86112001.0, 87104902.0, 88094650.0, 89092824.0, 90087789.0, 91063836.0, 92057385.0, 93048911.0, 94047739.0, 95208504.0, 96020749.0, 97025753.0, 98009208.0, 98995570.0]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"export_para_1": {"type": "string"}, "export_para_2": {"type": "string"}, "share": {"type": "string"}, "data_hint": {"type": "string"}, "data_covers": {"type": "string"}, "data_count": {"type": "string"}, "data_last_updated": {"type": "string"}, "no_data": {"type": "string"}, "less_than_one_minute": {"type": "string"}}, "required": ["export_para_1", "export_para_2", "share", "data_hint", "data_covers", "data_count", "data_last_updated", "no_data", "less_than_one_minute"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"export_para_1" : "\u0906\u092a\u0923 \u0916\u093e\u0932\u0940 \u0926\u093f\u0932\u0947\u0932\u0947 \u0936\u0947\u092f\u0930 \u092c\u091f\u0923 \u0935\u093e\u092a\u0930\u0942\u0928 \u0915\u0941\u0923\u093e\u092c\u0930\u094b\u092c\u0930 \u0939\u0940 \u0906\u092a\u0932\u0940 \u0932\u094b\u0915\u0947\u0936\u0928 \u0939\u093f\u0938\u094d\u091f\u0930\u0940 \u0936\u0947\u092f\u0930 \u0915\u0930\u0942 \u0936\u0915\u0924\u093e. \u092c\u091f\u0923 \u0926\u093e\u092c\u0932\u0947 \u0915\u0940 \u0906\u092a\u0932\u094d\u092f\u093e\u0932\u093e \u0932\u094b\u0915\u0947\u0936\u0928 \u0939\u093f\u0938\u094d\u091f\u0930\u0940 \u0915\u0941\u0923\u093e\u092c\u0930\u094b\u092c\u0930 \u0906\u0923\u093f \u0915\u0936\u0940 \u0936\u0947\u092f\u0930 \u0915\u0930\u093e\u092f\u091a\u0940 \u092f\u093e\u092c\u093e\u092c\u0924 \u0938\u0942\u091a\u0928\u093e \u092e\u093f\u0933\u0947\u0932.", "export_para_2" : "\u0932\u094b\u0915\u0947\u0936\u0928 \u0939\u093f\u0938\u094d\u091f\u0930\u0940 \u0939\u0940 \u092b\u0915\u094d\u0924 \u0935\u0947\u0933 \u0906\u0923\u093f \u0932\u094b\u0915\u0947\u0936\u0928 \u0915\u094b\u0911\u0930\u094d\u0921\u0940\u0928\u0947\u091f\u091a\u094d\u092f\u093e \u0938\u094d\u0935\u0930\u0942\u092a\u093e\u0924 \u0936\u0947\u092f\u0930 \u0915\u0947\u0932\u0940 \u091c\u093e\u0924 \u0906\u0939\u0947. \u0924\u0941\u092e\u091a\u0940 \u0915\u094b\u0923\u0924\u0940\u0939\u0940 \u0935\u0948\u092f\u0915\u094d\u0924\u093f\u0915 / \u0916\u093e\u091c\u0917\u0940 \u092e\u093e\u0939\u093f\u0924\u0940 \u0936\u0947\u092f\u0930 \u0915\u0947\u0932\u0940 \u091c\u093e\u0924 \u0928\u093e\u0939\u0940.", "share" : "\u0936\u0947\u092f\u0930", "data_hint" : "\u0932\u0949\u0917 \u091a\u093e \u0921\u0947\u091f\u093e:", "data_covers" : "\u0932\u0949\u0917\u092e\u0927\u094d\u092f\u0947 \u0930\u0947\u0915\u0949\u0930\u094d\u0921 \u0915\u0947\u0932\u0947\u0932\u0940 \u090f\u0915\u0942\u0923 \u0935\u0947\u0933:", "data_count" : "\u0932\u0949\u0917 \u0915\u0947\u0932\u0947\u0932\u094d\u092f\u093e \u092c\u093f\u0902\u0926\u0942\u0902\u091a\u0940 \u0938\u0902\u0916\u094d\u092f\u093e:", "data_last_updated" : "\u0936\u0947\u0935\u091f\u091a\u094d\u092f\u093e \u0905\u092a\u0921\u0947\u091f \u092a\u093e\u0938\u0942\u0928 \u0935\u0947\u0933:", "no_data" : "\u0921\u0947\u091f\u093e \u0928\u093e\u0939\u0940:", "less_than_one_minute" : "\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e\u092a\u0947\u0915\u094d\u0937\u093e \u0915\u092e\u0940"}
json_instruct
{"type": "object", "properties": {"export_para_1": {"type": "string"}, "export_para_2": {"type": "string"}, "share": {"type": "string"}, "data_hint": {"type": "string"}, "data_covers": {"type": "string"}, "data_count": {"type": "string"}, "data_last_updated": {"type": "string"}, "no_data": {"type": "string"}, "less_than_one_minute": {"type": "string"}}, "required": ["export_para_1", "export_para_2", "share", "data_hint", "data_covers", "data_count", "data_last_updated", "no_data", "less_than_one_minute"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ports": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "img": {"type": "string"}, "link": {"type": "string"}, "icon": {"type": "string"}}, "required": ["title", "description", "img", "link", "icon"]}}}, "required": ["ports"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ports" : [{"title" : "WriterBoards", "description" : "An online community that empowers writers to write everyday and collaborate. Click to find out more", "img" : "./asset/servicesStock/writerboards.webp", "link" : "https://writerboards.com", "icon" : ""}, {"title" : "Ornate CSS", "description" : "An open-source grid-based css framework. Visit To find out more.", "img" : "./asset/servicesStock/cssCode.webp", "link" : "https://www.npmjs.com/package/ornate_css", "icon" : ""}, {"title" : "Wyzant Tutoring", "description" : "Currently I am tutoring through Wyzant.com! Feel free to look over my profile for more information.", "img" : "./asset/servicesStock/tutoring.webp", "link" : "https://www.wyzant.com/Tutors/rbm-tutoring", "icon" : ""}]}
json_instruct
{"type": "object", "properties": {"ports": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "img": {"type": "string"}, "link": {"type": "string"}, "icon": {"type": "string"}}, "required": ["title", "description", "img", "link", "icon"]}}}, "required": ["ports"], "$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"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["jquery", "bootstrap"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "sp-forwarding-service", "description" : "A small Heroku service that will consume inbound message webhook calls and forward them through the Transmissions API.", "main" : "index.js", "authors" : ["SparkPost"], "license" : "Apache-2.0", "keywords" : ["sparkpost", "email"], "homepage" : "https://github.com/SparkPost/sp-forwarding-service", "moduleType" : [], "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"jquery" : "^2.2.1", "bootstrap" : "^3.3.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType": {"type": "array", "items": {}}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "bootstrap": {"type": "string"}}, "required": ["jquery", "bootstrap"]}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}, "AccountContextConnection": {"type": "string"}}, "required": ["DefaultConnection", "AccountContextConnection"]}, "EmailSender": {"type": "object", "properties": {"EmailAddress": {"type": "string"}, "Password": {"type": "string"}, "Username": {"type": "string"}}, "required": ["EmailAddress", "Password", "Username"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "EmailSender", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ConnectionStrings" : {"DefaultConnection" : "Server=;Database=FlightManagerDb;Trusted_Connection=True;MultipleActiveResultSets=true", "AccountContextConnection" : "Server=(localdb)\\mssqllocaldb;Database=FlightManager;Trusted_Connection=True;MultipleActiveResultSets=true"}, "EmailSender" : {"EmailAddress" : "FitzzzFlights@gmail.com", "Password" : "Fitz3Flights", "Username" : "FitzzzFlights"}, "Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "AllowedHosts" : "*"}
json_instruct
{"type": "object", "properties": {"ConnectionStrings": {"type": "object", "properties": {"DefaultConnection": {"type": "string"}, "AccountContextConnection": {"type": "string"}}, "required": ["DefaultConnection", "AccountContextConnection"]}, "EmailSender": {"type": "object", "properties": {"EmailAddress": {"type": "string"}, "Password": {"type": "string"}, "Username": {"type": "string"}}, "required": ["EmailAddress", "Password", "Username"]}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}}, "required": ["ConnectionStrings", "EmailSender", "Logging", "AllowedHosts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 3306020045, "parent" : 3306020, "name" : "SINGKIL WETAN", "latitude" : null, "longitude" : null, "postal" : [54172], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "integer"}}, "scores_total": {"type": "integer"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "array", "items": {"type": "integer"}}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "0x7c1de2239aff01e768d650f0242ac4ade6c668cf2407db3d8590d6836bdfeaa5", "title" : "EnlightDAO\u6838\u5fc3\u56e2\u961f\u201c\u961f\u540d\u201d\u6295\u7968", "body" : "\u72c2\u62fd\u9177\u70ab\u5c4c\u70b8\u5929\uff0c\u51b7\u8273\u9ad8\u8d35\u63a5\u5730\u6c14", "choices" : ["\u7834\u6d6a\u5c0f\u7ec4", "W3 Dokr", "\u5fae\u5149W3\u9b54\u6cd5\u5b66\u9662", "web3\u4f20\u9001\u95e8", "W3\u7834\u6d6a\u5b66\u9662", "Enlight curator\u5fae\u5149\u89c4\u5212\u8005", "\u5149\u4e4b\u52a9", "Inspirer", "\u706f\u5854lighthouse", "\u5149\u7c92\u5b50", "\u9a91\u8c61\u4eba", "Enlight family", "Foundation", "\u5fae\u5149\u57fa\u5730"], "start" : 1638068400, "end" : 1638284400, "type" : "approval", "scores" : [6600, 6000, 0, 0, 600, 600, 6000, 0, 600, 6000, 0, 0, 600, 0], "scores_total" : 6600, "scores_state" : "final", "scores_updated" : 1638284433, "snapshot" : "19295116", "state" : "closed", "author" : "0x4CF15a2504F64586F3AB27c3ADF58453F2b5A67f", "space" : {"id" : "enlightdao.eth", "name" : "EnlightDAO"}, "votes" : 2, "votes_data" : [{"id" : "0xf092c1a546dac4d7377ee847a0be431faf29f7e322a3626de33778129bd67d2e", "voter" : "0xa9E1BAE837d0D3b5879a69550d7C387Ce57aD753", "created" : 1638070200, "choice" : [1, 2, 7, 10], "space" : {"id" : "enlightdao.eth"}}, {"id" : "0xbc3d8dc4dc7c510016df3ee87f27793e38d3b955748741521de5329994708ec2", "voter" : "0x1534f20bF35904a10A1AD4c06641515D1c5d60bA", "created" : 1638068522, "choice" : [1, 5, 6, 9, 13], "space" : {"id" : "enlightdao.eth"}}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "integer"}}, "scores_total": {"type": "integer"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "array", "items": {"type": "integer"}}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " How to find the inverse of a logarithmic function, f(x) = log2 (x)\n\n[imath]f(x)=\\log _{2} x[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=wLVbffxyOs8"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"bitbucket-to-elasticsearch": {"type": "string"}}, "required": ["bitbucket-to-elasticsearch"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "unit": {"type": "string"}, "integration": {"type": "string"}, "setup-integration": {"type": "string"}}, "required": ["test", "unit", "integration", "setup-integration"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "axios-mock-adapter": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "regenerator-runtime": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "axios-mock-adapter", "babel-core", "babel-jest", "jest", "regenerator-runtime"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bunyan": {"type": "string"}, "client-oauth2": {"type": "string"}, "commander": {"type": "string"}, "elasticsearch": {"type": "string"}, "lodash": {"type": "string"}, "p-queue": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["axios", "bunyan", "client-oauth2", "commander", "elasticsearch", "lodash", "p-queue", "uuid"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bitbucket-to-elasticsearch", "version" : "1.3.1", "description" : "A utility to import the information from Bitbucket cloud to Elastic Search for analytics.", "main" : "index.js", "repository" : "https://github.com/devsu/bitbucket-to-elasticsearch", "author" : "Cesar Salazar @ Devsu", "license" : "MIT", "bin" : {"bitbucket-to-elasticsearch" : "./index.js"}, "scripts" : {"test" : "yarn run unit && yarn run integration", "unit" : "jest -c jest.config.unit.js", "integration" : "./integration-tests/run.sh", "setup-integration" : "./integration-tests/setup.sh"}, "devDependencies" : {"@babel/core" : "^7.0.0", "@babel/preset-env" : "^7.0.0", "axios-mock-adapter" : "^1.15.0", "babel-core" : "^7.0.0-0", "babel-jest" : "^23.4.2", "jest" : "^23.5.0", "regenerator-runtime" : "^0.12.1"}, "dependencies" : {"axios" : "^0.18.0", "bunyan" : "^1.8.12", "client-oauth2" : "^4.2.1", "commander" : "^2.19.0", "elasticsearch" : "^15.1.1", "lodash" : "^4.17.11", "p-queue" : "^3.0.0", "uuid" : "^3.3.2"}}
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"}, "bin": {"type": "object", "properties": {"bitbucket-to-elasticsearch": {"type": "string"}}, "required": ["bitbucket-to-elasticsearch"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "unit": {"type": "string"}, "integration": {"type": "string"}, "setup-integration": {"type": "string"}}, "required": ["test", "unit", "integration", "setup-integration"]}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "axios-mock-adapter": {"type": "string"}, "babel-core": {"type": "string"}, "babel-jest": {"type": "string"}, "jest": {"type": "string"}, "regenerator-runtime": {"type": "string"}}, "required": ["@babel/core", "@babel/preset-env", "axios-mock-adapter", "babel-core", "babel-jest", "jest", "regenerator-runtime"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "bunyan": {"type": "string"}, "client-oauth2": {"type": "string"}, "commander": {"type": "string"}, "elasticsearch": {"type": "string"}, "lodash": {"type": "string"}, "p-queue": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["axios", "bunyan", "client-oauth2", "commander", "elasticsearch", "lodash", "p-queue", "uuid"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bin", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1906, 5], [1912, 7], [1913, 6], [1914, 8], [1915, 16], [1916, 15], [1917, 16], [1918, 16], [1919, 12], [1920, 18], [1921, 21], [1922, 29], [1923, 21], [1924, 15], [1925, 23], [1926, 11], [1927, 15], [1928, 15], [1929, 10], [1930, 22], [1931, 14], [1932, 12], [1933, 16], [1934, 11], [1935, 11], [1936, 11], [1937, 13], [1938, 15], [1939, 8], [1940, 11], [1941, 14], [1942, 10], [1943, 9], [1945, 6], [1947, 10], [1948, 7], [1949, 7], [1950, 6], [1952, 6], [1953, 8], [1954, 8], [1955, 6], [1956, 5], [1958, 9], [1959, 10], [1960, 7], [1963, 7], [1964, 6], [1968, 6], [1969, 7], [1971, 6], [1988, 5], [1997, 6], [2001, 7], [2002, 5], [2006, 5], [2010, 5], [2012, 7], [2014, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.ac1f6896.chunk.js": {"type": "string"}, "static/js/2.ac1f6896.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.8fb029c8401a989afeaeced787d7b091.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.a3e46dbb.chunk.css.map": {"type": "string"}, "static/js/2.ac1f6896.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.ac1f6896.chunk.js", "static/js/2.ac1f6896.chunk.js.map", "index.html", "precache-manifest.8fb029c8401a989afeaeced787d7b091.js", "service-worker.js", "static/css/main.a3e46dbb.chunk.css.map", "static/js/2.ac1f6896.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.a3e46dbb.chunk.css", "main.js" : "/static/js/main.ddee6a6d.chunk.js", "main.js.map" : "/static/js/main.ddee6a6d.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.b6d1813f.js", "runtime-main.js.map" : "/static/js/runtime-main.b6d1813f.js.map", "static/js/2.ac1f6896.chunk.js" : "/static/js/2.ac1f6896.chunk.js", "static/js/2.ac1f6896.chunk.js.map" : "/static/js/2.ac1f6896.chunk.js.map", "index.html" : "/index.html", "precache-manifest.8fb029c8401a989afeaeced787d7b091.js" : "/precache-manifest.8fb029c8401a989afeaeced787d7b091.js", "service-worker.js" : "/service-worker.js", "static/css/main.a3e46dbb.chunk.css.map" : "/static/css/main.a3e46dbb.chunk.css.map", "static/js/2.ac1f6896.chunk.js.LICENSE.txt" : "/static/js/2.ac1f6896.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.b6d1813f.js", "static/js/2.ac1f6896.chunk.js", "static/css/main.a3e46dbb.chunk.css", "static/js/main.ddee6a6d.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.ac1f6896.chunk.js": {"type": "string"}, "static/js/2.ac1f6896.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "precache-manifest.8fb029c8401a989afeaeced787d7b091.js": {"type": "string"}, "service-worker.js": {"type": "string"}, "static/css/main.a3e46dbb.chunk.css.map": {"type": "string"}, "static/js/2.ac1f6896.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.ac1f6896.chunk.js", "static/js/2.ac1f6896.chunk.js.map", "index.html", "precache-manifest.8fb029c8401a989afeaeced787d7b091.js", "service-worker.js", "static/css/main.a3e46dbb.chunk.css.map", "static/js/2.ac1f6896.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$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": {"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" : [[[-73.433208, 40.724935], [-73.41125, 40.718863], [-73.407846, 40.718139], [-73.411579, 40.712678], [-73.415641, 40.709761], [-73.419296, 40.708364], [-73.429962, 40.706699], [-73.433208, 40.724935]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 46283}}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}, "run_speed": {"type": "number"}, "walk_speed": {"type": "number"}, "air_speed": {"type": "number"}, "fall_speed": {"type": "number"}, "fast_fall_speed": {"type": "number"}, "air_acceleration": {"type": "number"}, "gravity": {"type": "number"}, "sh_air_time": {"type": "integer"}, "jumps": {"type": "integer"}, "wall_jump": {"type": "boolean"}, "wall_cling": {"type": "boolean"}, "crawl": {"type": "boolean"}, "tether": {"type": "boolean"}, "jumpsquat": {"type": "integer"}, "soft_landing_lag": {"type": "integer"}, "hard_landing_lag": {"type": "integer"}, "fh_air_time": {"type": "integer"}, "traction": {"type": "number"}, "gravity2": {"type": "number"}, "air_friction": {"type": "number"}, "initial_dash": {"type": "number"}, "run_acceleration": {"type": "number"}, "run_deceleration": {"type": "number"}, "jump_height": {"type": "integer"}, "hop_height": {"type": "number"}, "air_jump_height": {"type": "integer"}}, "required": ["name", "weight", "run_speed", "walk_speed", "air_speed", "fall_speed", "fast_fall_speed", "air_acceleration", "gravity", "sh_air_time", "jumps", "wall_jump", "wall_cling", "crawl", "tether", "jumpsquat", "soft_landing_lag", "hard_landing_lag", "fh_air_time", "traction", "gravity2", "air_friction", "initial_dash", "run_acceleration", "run_deceleration", "jump_height", "hop_height", "air_jump_height"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Bayonetta", "weight" : 84, "run_speed" : 1.6, "walk_speed" : 0.9, "air_speed" : 0.97, "fall_speed" : 1.77, "fast_fall_speed" : 2.832, "air_acceleration" : 0.085, "gravity" : 0.12, "sh_air_time" : 38, "jumps" : 2, "wall_jump" : true, "wall_cling" : true, "crawl" : false, "tether" : false, "jumpsquat" : 4, "soft_landing_lag" : 2, "hard_landing_lag" : 4, "fh_air_time" : 54, "traction" : 0.055, "gravity2" : 0.015, "air_friction" : 0.008, "initial_dash" : 1.7, "run_acceleration" : 0.0942, "run_deceleration" : 0.04, "jump_height" : 39, "hop_height" : 21.354742, "air_jump_height" : 42}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}, "run_speed": {"type": "number"}, "walk_speed": {"type": "number"}, "air_speed": {"type": "number"}, "fall_speed": {"type": "number"}, "fast_fall_speed": {"type": "number"}, "air_acceleration": {"type": "number"}, "gravity": {"type": "number"}, "sh_air_time": {"type": "integer"}, "jumps": {"type": "integer"}, "wall_jump": {"type": "boolean"}, "wall_cling": {"type": "boolean"}, "crawl": {"type": "boolean"}, "tether": {"type": "boolean"}, "jumpsquat": {"type": "integer"}, "soft_landing_lag": {"type": "integer"}, "hard_landing_lag": {"type": "integer"}, "fh_air_time": {"type": "integer"}, "traction": {"type": "number"}, "gravity2": {"type": "number"}, "air_friction": {"type": "number"}, "initial_dash": {"type": "number"}, "run_acceleration": {"type": "number"}, "run_deceleration": {"type": "number"}, "jump_height": {"type": "integer"}, "hop_height": {"type": "number"}, "air_jump_height": {"type": "integer"}}, "required": ["name", "weight", "run_speed", "walk_speed", "air_speed", "fall_speed", "fast_fall_speed", "air_acceleration", "gravity", "sh_air_time", "jumps", "wall_jump", "wall_cling", "crawl", "tether", "jumpsquat", "soft_landing_lag", "hard_landing_lag", "fh_air_time", "traction", "gravity2", "air_friction", "initial_dash", "run_acceleration", "run_deceleration", "jump_height", "hop_height", "air_jump_height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "released": {"type": "string"}, "characters": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "title_en", "title_jp", "picture", "synopsis", "type", "episodes", "tags", "released", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 218, "title" : "Kidou Senkan Nadesico", "title_en" : "Martian Successor Nadesico", "title_jp" : "\u6a5f\u52d5\u6226\u8266\u30ca\u30c7\u30b7\u30b3", "picture" : "http://cdn.myanimelist.net/images/anime/3/53955.jpg", "synopsis" : "Akito doesn't want to fight. Despite a childhood spent on the anime Gekiganger 3, a Mecha show, he'd rather cook than pilot a Mecha. Fate intervenes when his home on Mars is destroyed, and he is transported instantly to the Earth, mysteriously. He has questions no one can answer fully, but follows a girl from a chance meeting in hopes to discover any. The girl, Yurika, is captain of the private battleship Nadesico, and in order to follow her, he enlists as their cook. Possessing the nanite implants that allow to control mechas, he's a handy backup pilot for the mechas of the Nadesico. He joins a crew bent on avenging Mars that seems to be composed of only misfits, otakus, and ditzes; however, in reality, they are handpicked experts. They take their own private war back to Mars to face the harsh reality that life may not always be like a Giant Mecha series.", "type" : "TV", "episodes" : 26, "tags" : ["action", "comedy", "mecha", "military", "parody", "romance", "sci-fi", "shounen", "space"], "released" : "1996-10-01T03:00:00.000Z", "characters" : [2460, 2459, 2472, 2465, 2469, 15731, 2470, 2468, 21703, 2471, 2461, 21523, 21521, 2466, 2463, 100665, 22181, 2462, 2467, 41560, 17342, 2464, 92653, 15730, 37349, 15729, 21524]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "released": {"type": "string"}, "characters": {"type": "array", "items": {"type": "integer"}}}, "required": ["id", "title", "title_en", "title_jp", "picture", "synopsis", "type", "episodes", "tags", "released", "characters"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "s2missions5i70-7mission570-7", "type" : "GOAL", "data" : {}, "start" : "s5i70-7", "end" : "mission570-7"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"MaApiModuleConfigKey": {"type": "string"}, "MaApiModuleConfig": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiResponse": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceCurrency": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceDetails": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceInfo": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiBreadcrumbs": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttributesListValue": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttribute": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttributes": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilters": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFbLoginResponse": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "required": ["MaApiModuleConfigKey", "MaApiModuleConfig", "MaApiResponse", "MaApiPriceCurrency", "MaApiPriceDetails", "MaApiPriceInfo", "MaApiBreadcrumbs", "MaApiFilterAttributesListValue", "MaApiFilterAttribute", "MaApiFilterAttributes", "MaApiFilters", "MaApiFbLoginResponse"]}}, "required": ["__symbolic", "version", "metadata"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"__symbolic" : "module", "version" : 4, "metadata" : {"MaApiModuleConfigKey" : "maApiModuleConfig", "MaApiModuleConfig" : {"__symbolic" : "interface"}, "MaApiResponse" : {"__symbolic" : "interface"}, "MaApiPriceCurrency" : {"__symbolic" : "interface"}, "MaApiPriceDetails" : {"__symbolic" : "interface"}, "MaApiPriceInfo" : {"__symbolic" : "interface"}, "MaApiBreadcrumbs" : {"__symbolic" : "interface"}, "MaApiFilterAttributesListValue" : {"__symbolic" : "interface"}, "MaApiFilterAttribute" : {"__symbolic" : "interface"}, "MaApiFilterAttributes" : {"__symbolic" : "interface"}, "MaApiFilters" : {"__symbolic" : "interface"}, "MaApiFbLoginResponse" : {"__symbolic" : "interface"}}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"MaApiModuleConfigKey": {"type": "string"}, "MaApiModuleConfig": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiResponse": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceCurrency": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceDetails": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiPriceInfo": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiBreadcrumbs": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttributesListValue": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttribute": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilterAttributes": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFilters": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}, "MaApiFbLoginResponse": {"type": "object", "properties": {"__symbolic": {"type": "string"}}, "required": ["__symbolic"]}}, "required": ["MaApiModuleConfigKey", "MaApiModuleConfig", "MaApiResponse", "MaApiPriceCurrency", "MaApiPriceDetails", "MaApiPriceInfo", "MaApiBreadcrumbs", "MaApiFilterAttributesListValue", "MaApiFilterAttribute", "MaApiFilterAttributes", "MaApiFilters", "MaApiFbLoginResponse"]}}, "required": ["__symbolic", "version", "metadata"]}, "$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": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"adcode" : "440803001", "name" : "\u89e3\u653e\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803002", "name" : "\u7231\u56fd\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803003", "name" : "\u5de5\u519c\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803004", "name" : "\u53cb\u8c0a\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803005", "name" : "\u65b0\u5174\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803006", "name" : "\u6d77\u6ee8\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803009", "name" : "\u5efa\u8bbe\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803010", "name" : "\u4e1c\u65b0\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803011", "name" : "\u65b0\u56ed\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803012", "name" : "\u6d77\u5934\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803013", "name" : "\u4e50\u534e\u8857\u9053", "level" : "street", "parent" : "440803"}, {"adcode" : "440803014", "name" : "\u6cc9\u5e84\u8857\u9053", "level" : "street", "parent" : "440803"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "null"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "string"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"key" : "/books/OL8520849M", "title" : "Ultra Black Hair Growth II", "subtitle" : null, "publishers" : ["Ubh Pubns"], "authors" : ["Cathy Howse"], "isbn_10" : "0962833029", "isbn_13" : "9780962833021", "publish_date" : "October 2000", "subjects" : ["Beauty & Grooming - Hair", "Health & Fitness", "Health/Fitness", "Beauty & Grooming - General"]}
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "null"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "string"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "2011", "provinceId" : "33", "regencyId" : "20", "districtId" : "03", "name" : "Gidanglelo"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "object", "properties": {"adapter": {"type": "string"}, "value": {"type": "string"}}, "required": ["adapter", "value"]}}}, "required": ["main"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "fabric-language-kotlin": {"type": "string"}, "minecraft": {"type": "string"}, "java": {"type": "string"}}, "required": ["fabricloader", "fabric", "fabric-language-kotlin", "minecraft", "java"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schemaVersion" : 1, "id" : "unobtainium", "version" : "${version}", "name" : "Unobtainium", "description" : "but what if we could", "authors" : ["Isaac Aronson"], "contact" : {"homepage" : "https://pingas.org/", "sources" : "https://github.com/aronson/unobtainium"}, "license" : "CC0-1.0", "icon" : "assets/unobtainium/icon.png", "environment" : "*", "entrypoints" : {"main" : [{"adapter" : "kotlin", "value" : "org.pingas.unobtainium"}]}, "mixins" : ["unobtainium.mixins.json"], "depends" : {"fabricloader" : ">=0.12.12", "fabric" : "*", "fabric-language-kotlin" : ">=1.7.1+kotlin.1.6.10", "minecraft" : "1.18.x", "java" : ">=17"}}
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "contact": {"type": "object", "properties": {"homepage": {"type": "string"}, "sources": {"type": "string"}}, "required": ["homepage", "sources"]}, "license": {"type": "string"}, "icon": {"type": "string"}, "environment": {"type": "string"}, "entrypoints": {"type": "object", "properties": {"main": {"type": "array", "items": {"type": "object", "properties": {"adapter": {"type": "string"}, "value": {"type": "string"}}, "required": ["adapter", "value"]}}}, "required": ["main"]}, "mixins": {"type": "array", "items": {"type": "string"}}, "depends": {"type": "object", "properties": {"fabricloader": {"type": "string"}, "fabric": {"type": "string"}, "fabric-language-kotlin": {"type": "string"}, "minecraft": {"type": "string"}, "java": {"type": "string"}}, "required": ["fabricloader", "fabric", "fabric-language-kotlin", "minecraft", "java"]}}, "required": ["schemaVersion", "id", "version", "name", "description", "authors", "contact", "license", "icon", "environment", "entrypoints", "mixins", "depends"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"divisionCode" : 410724100, "post" : "453800", "divisionName" : "\u57ce\u5173\u9547", "isLeaf" : 1}, {"divisionCode" : 410724101, "post" : "453800", "divisionName" : "\u7167\u955c\u9547", "isLeaf" : 1}, {"divisionCode" : 410724102, "post" : "453800", "divisionName" : "\u9ec4\u5824\u9547", "isLeaf" : 1}, {"divisionCode" : 410724103, "post" : "453800", "divisionName" : "\u4e2d\u548c\u9547", "isLeaf" : 1}, {"divisionCode" : 410724104, "post" : "453800", "divisionName" : "\u5f90\u8425\u9547", "isLeaf" : 1}, {"divisionCode" : 410724105, "post" : "453800", "divisionName" : "\u51af\u5e84\u9547", "isLeaf" : 1}, {"divisionCode" : 410724106, "post" : "453800", "divisionName" : "\u4ea2\u6751\u9547", "isLeaf" : 1}, {"divisionCode" : 410724107, "post" : "453800", "divisionName" : "\u53f2\u5e84\u9547", "isLeaf" : 1}, {"divisionCode" : 410724200, "post" : "453800", "divisionName" : "\u4f4d\u5e84\u4e61", "isLeaf" : 1}, {"divisionCode" : 410724203, "post" : "453800", "divisionName" : "\u5927\u65b0\u5e84\u4e61", "isLeaf" : 1}, {"divisionCode" : 410724204, "post" : "453800", "divisionName" : "\u592a\u5c71\u4e61", "isLeaf" : 1}, {"divisionCode" : 410724400, "post" : "453800", "divisionName" : "\u539f\u79cd\u573a", "isLeaf" : 1}, {"divisionCode" : 410724401, "post" : "453800", "divisionName" : "\u56ed\u827a\u573a", "isLeaf" : 1}, {"divisionCode" : 410724402, "post" : "453800", "divisionName" : "\u519c\u573a", "isLeaf" : 1}, {"divisionCode" : 410724560, "post" : "453800", "divisionName" : "\u897f\u5de5\u533a\u7ba1\u7406\u59d4\u5458\u4f1a", "isLeaf" : 1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 68423, "cartId" : "87378eb5-b38a-4d60-bf66-cf2f1f532e49", "preferredProducts" : [4285, 957], "productReviews" : [{"productId" : 2166, "reviewText" : "My vulture loves to play with it.", "reviewDate" : "2019-09-13T11:35:31.2319438+03:00"}, {"productId" : 3492, "reviewText" : "This Intuitive works too well. It nonchalantly improves my baseball by a lot.", "reviewDate" : "2017-04-05T12:46:15.8071979+03:00"}, {"productId" : 4057, "reviewText" : "My co-worker Aurthur has one of these. He says it looks white.", "reviewDate" : "2016-09-06T15:22:10.3649741+03:00"}, {"productId" : 3837, "reviewText" : "heard about this on hip-hop music radio, decided to give it a try.", "reviewDate" : "2016-12-29T01:57:05.9790156+02:00"}, {"productId" : 2919, "reviewText" : "My penguin loves to play with it.", "reviewDate" : "2016-07-18T04:04:52.4122379+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Palanca de montar Cocking Handle para MP5K", "ShortName" : "PM MP5K", "Description" : "Palanca de montar est\u00e1ndar para subfusiles HK MP5K."}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 37352, "cartId" : "86e83587-192f-4840-88f0-2a77c0062b3f", "preferredProducts" : [2411], "productReviews" : [{"productId" : 1617, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2020-03-01T12:01:20.3067081+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"definitions": {"type": "object", "properties": {}, "required": []}, "properties": {"type": "object", "properties": {"foo": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["foo"]}}, "required": ["definitions", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"definitions" : {}, "properties" : {"foo" : {"$ref" : "missing"}}}
json_instruct
{"type": "object", "properties": {"definitions": {"type": "object", "properties": {}, "required": []}, "properties": {"type": "object", "properties": {"foo": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["foo"]}}, "required": ["definitions", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"jquery.shave.js": {"type": "string"}, "jquery.shave.min.js": {"type": "string"}, "shave.es.js": {"type": "string"}, "shave.es.min.js": {"type": "string"}, "shave.js": {"type": "string"}, "shave.min.js": {"type": "string"}}, "required": ["jquery.shave.js", "jquery.shave.min.js", "shave.es.js", "shave.es.min.js", "shave.js", "shave.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jquery.shave.js" : "sha512-IGdsmWzpdb37yT2K9ViMXSYwJHc8uw0uDZKYyy/LDeC61zG42tF/0lm4HbUubZhL/OrVcC7mA5KVACSOgir9TA==", "jquery.shave.min.js" : "sha512-puTtb10FwebqXwhGk+5YKAWx4bK2doi3BNWaa/LV0mmy0E6Yl7ILlhhpd/9mX+ayxuh89/D1opHfEgLNxOYocw==", "shave.es.js" : "sha512-r4bP9yUvp3ayPNpWGMnCbVQfTE0NJ+BMR9pSBVAdUHaZXIHvrAsnqD8tNHBE1LxVKACtXHMsG7smbdRCAnwJGw==", "shave.es.min.js" : "sha512-mswdB29eoWNZhL6MaTyaXQZaTaNM6XhNodFwrc/FmHH6T+qhslBAlgYaf6VOf3LBj92NfXeZKlDf9P69n0pTbw==", "shave.js" : "sha512-E8jZrJ9RPfcJ1BtHlIMGAgdf5FK+/o5aPIMzV/ulnZ6ZuwNV6CAQHMl0MfhP7JAzFzVeV0UMhs27uCKVEfaQ1A==", "shave.min.js" : "sha512-p+Habzzl92oFqo88CYW87t3ffDZdAF4QBJ2KHe2RTApk7QZJsjaGy2E4ZLvMFaqEMRrdfyhMLF+riRJtahnrpg=="}
json_instruct
{"type": "object", "properties": {"jquery.shave.js": {"type": "string"}, "jquery.shave.min.js": {"type": "string"}, "shave.es.js": {"type": "string"}, "shave.es.min.js": {"type": "string"}, "shave.js": {"type": "string"}, "shave.min.js": {"type": "string"}}, "required": ["jquery.shave.js", "jquery.shave.min.js", "shave.es.js", "shave.es.min.js", "shave.js", "shave.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900793710": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793711": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793712": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793713": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793714": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793715": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793716": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900793710", "900793711", "900793712", "900793713", "900793714", "900793715", "900793716"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900793710" : {"nama" : "TPS 1", "dapil" : [1402, 11407, 2140402]}, "900793711" : {"nama" : "TPS 2", "dapil" : [1402, 11407, 2140402]}, "900793712" : {"nama" : "TPS 3", "dapil" : [1402, 11407, 2140402]}, "900793713" : {"nama" : "TPS 4", "dapil" : [1402, 11407, 2140402]}, "900793714" : {"nama" : "TPS 5", "dapil" : [1402, 11407, 2140402]}, "900793715" : {"nama" : "TPS 6", "dapil" : [1402, 11407, 2140402]}, "900793716" : {"nama" : "TPS 7", "dapil" : [1402, 11407, 2140402]}}
json_instruct
{"type": "object", "properties": {"900793710": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793711": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793712": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793713": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793714": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793715": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900793716": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900793710", "900793711", "900793712", "900793713", "900793714", "900793715", "900793716"], "$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": "integer"}, "description": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["id", "description", "symbol"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 1, "description" : "\u042d\u0442\u043e \u0442\u0438\u043f\u0430 \u043d\u0443 \u0441\u043e\u0439\u0434\u0435\u0442 \u043b\u0430\u0434\u0433\u043d", "symbol" : "(_)"}, {"id" : 2, "description" : "lesxusdasd", "symbol" : ":_:"}, {"id" : 3, "description" : "huq", "symbol" : "_:_"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "description": {"type": "string"}, "symbol": {"type": "string"}}, "required": ["id", "description", "symbol"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"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" : "145", "name" : "\u795e\u793e\u53e3", "name_kana" : "\uff76\uff90\uff94\uff7c\uff9b\uff78\uff9e\uff81"}, {"code" : "190", "name" : "\u5ddd\u4e95\u753a", "name_kana" : "\uff76\uff9c\uff72\uff8f\uff81"}, {"code" : "270", "name" : "\u4e80\u5c71", "name_kana" : "\uff76\uff92\uff94\uff8f"}, {"code" : "640", "name" : "\u52dd\u6d66", "name_kana" : "\uff76\uff82\uff73\uff97"}, {"code" : "758", "name" : "\u4e0a\u524d\u6d25", "name_kana" : "\uff76\uff90\uff8f\uff74\uff82\uff9e"}, {"code" : "761", "name" : "\u4e0a\u98ef\u7530", "name_kana" : "\uff76\uff90\uff72\uff72\uff80\uff9e"}]
json_instruct
{"type": "array", "items": {"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": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_6ojp9e", "name" : "antoicoa"}, "date" : {"day" : 1617408000, "full" : 1617484950, "month" : 1617235200, "week" : 1616889600}, "id" : "t3_mjhlvv", "misc" : {"postHint" : "link"}, "picture" : {"filesize" : 64052, "fullUrl" : "https://external-preview.redd.it/9vH-rzvs-0pql9oQS6Jv8kvJwg-Hv9rIS4JsBUBv1g8.jpg?auto=webp&s=8c9b6bf5e54b32d14e142d5379ef126c9a6531a1", "hash" : "3352f36993", "height" : 336, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAIABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAAIH/8QAHxAAAQQCAgMAAAAAAAAAAAAAAgEDBBEABRIhQWFx/8QAFAEBAAAAAAAAAAAAAAAAAAAABP/EABwRAAEDBQAAAAAAAAAAAAAAAAEAAhEDE1HB8P/aAAwDAQACEQMRAD8AzlnTlG18WU1LacGSHMBZeESVE6WxT4vvIfSQetkMTXSUG2yRpLu0tS7vxfeMYc1HXInpRiwBoIxpf//Z", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/kgX_UgEm5U9BV675gxN27x6jW3QwUzT4BHRb8lHVn6s.jpg", "url" : "https://external-preview.redd.it/9vH-rzvs-0pql9oQS6Jv8kvJwg-Hv9rIS4JsBUBv1g8.jpg?width=640&crop=smart&auto=webp&s=0ebbbf9054f6158bbe5ea276937c3dccb6f127ef", "width" : 640}, "score" : {"comments" : 3, "downs" : 0, "isCurated" : false, "ratio" : 1, "ups" : 3, "value" : 3}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["World"], "title" : "Another world/continental fantasy map", "url" : "https://www.reddit.com/r/dndmaps/comments/mjhlvv/another_worldcontinental_fantasy_map/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "data": {"type": "object", "properties": {"actionCategory": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "actionType": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "actions": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "description": {"type": "object", "properties": {"chat": {"type": "string"}, "unidentified": {"type": "string"}, "value": {"type": "string"}}, "required": ["chat", "unidentified", "value"]}, "featType": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "level": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}, "prerequisites": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "array", "items": {}}, "source": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "traits": {"type": "object", "properties": {"custom": {"type": "string"}, "rarity": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "value": {"type": "array", "items": {"type": "string"}}}, "required": ["custom", "rarity", "value"]}}, "required": ["actionCategory", "actionType", "actions", "description", "featType", "level", "prerequisites", "rules", "source", "traits"]}, "effects": {"type": "array", "items": {}}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": "integer"}}, "required": ["default"]}, "type": {"type": "string"}}, "required": ["_id", "data", "effects", "flags", "img", "name", "permission", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "EZ24QwnFteLCrgLg", "data" : {"actionCategory" : {"value" : ""}, "actionType" : {"value" : "passive"}, "actions" : {"value" : ""}, "description" : {"chat" : "", "unidentified" : "", "value" : "<p>You are comfortable and socially capable in almost any cultural context. When you use the Society skill to Subsist, if you roll a critical failure, you get a failure instead; if you roll a success, you get a critical success instead; and if you roll a critical success, you can provide for another additional creature. Furthermore, when you attempt a Society check to Recall Knowledge about cultural practices and roll a critical failure, you get a failure instead.</p>"}, "featType" : {"value" : "archetype"}, "level" : {"value" : 6}, "prerequisites" : ["Magaambyan Attendant Dedication", "Emerald Boughs Affiliation", "expert in Society"], "rules" : [], "source" : {"value" : ""}, "traits" : {"custom" : "", "rarity" : {"value" : "common"}, "value" : ["skill", "archetype"]}}, "effects" : [], "flags" : {}, "img" : "systems/pf2e/icons/features/feats/feats.jpg", "name" : "Emerald Boughs Accustomation", "permission" : {"default" : 0}, "type" : "feat"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "data": {"type": "object", "properties": {"actionCategory": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "actionType": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "actions": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "description": {"type": "object", "properties": {"chat": {"type": "string"}, "unidentified": {"type": "string"}, "value": {"type": "string"}}, "required": ["chat", "unidentified", "value"]}, "featType": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "level": {"type": "object", "properties": {"value": {"type": "integer"}}, "required": ["value"]}, "prerequisites": {"type": "array", "items": {"type": "string"}}, "rules": {"type": "array", "items": {}}, "source": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "traits": {"type": "object", "properties": {"custom": {"type": "string"}, "rarity": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "value": {"type": "array", "items": {"type": "string"}}}, "required": ["custom", "rarity", "value"]}}, "required": ["actionCategory", "actionType", "actions", "description", "featType", "level", "prerequisites", "rules", "source", "traits"]}, "effects": {"type": "array", "items": {}}, "flags": {"type": "object", "properties": {}, "required": []}, "img": {"type": "string"}, "name": {"type": "string"}, "permission": {"type": "object", "properties": {"default": {"type": "integer"}}, "required": ["default"]}, "type": {"type": "string"}}, "required": ["_id", "data", "effects", "flags", "img", "name", "permission", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "Locker", "definitions" : ["A small lockable cupboard or compartment, typically as one of a number placed together for public use, e.g. in schools or railway stations.", "A chest or compartment on a ship or boat for clothes, stores, equipment, or ammunition.", "A device that locks something."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Neighborhoods\\YelpFusion\\": {"type": "string"}}, "required": ["Neighborhoods\\YelpFusion\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "type", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "neighborhoods/yelp-fusion", "description" : "A library that interfaces with the Yelp Fusion (v3) API", "keywords" : ["yelp", "yelp-fusion"], "license" : "MIT", "authors" : [{"name" : "Matt Stypa", "email" : "matt.stypa@neighborhoods.com"}, {"name" : "Rashaud Teague", "email" : "rashaud.teague@neighborhoods.com"}], "type" : "project", "require" : {"php" : ">=5.6", "guzzlehttp/guzzle" : "~6.0"}, "require-dev" : {"phpunit/phpunit" : "5.5.*", "squizlabs/php_codesniffer" : "3.*"}, "autoload" : {"psr-4" : {"Neighborhoods\\YelpFusion\\" : "src/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "squizlabs/php_codesniffer": {"type": "string"}}, "required": ["phpunit/phpunit", "squizlabs/php_codesniffer"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Neighborhoods\\YelpFusion\\": {"type": "string"}}, "required": ["Neighborhoods\\YelpFusion\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "keywords", "license", "authors", "type", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"towns" : [{"name" : "Cabanatuan", "url" : "cabanatuan"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"w\u0259\u00b7\u1e25er\u00b7m\u014d\u00b7w\u00b7n\u00eem": {"type": "object", "properties": {"psa.42.6|9": {"type": "array", "items": {"type": "string"}}}, "required": ["psa.42.6|9"]}}, "required": ["w\u0259\u00b7\u1e25er\u00b7m\u014d\u00b7w\u00b7n\u00eem"]}, "meanings": {"type": "object", "properties": {"hermon": {"type": "integer"}}, "required": ["hermon"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"pos" : "proper", "translits" : {"w\u0259\u00b7\u1e25er\u00b7m\u014d\u00b7w\u00b7n\u00eem" : {"psa.42.6|9" : ["of the Jordan\uff64", "and Hermon\uff64", "from the Hill"]}}, "meanings" : {"hermon" : 1}, "meaningsCount" : 1, "occurences" : 1}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"w\u0259\u00b7\u1e25er\u00b7m\u014d\u00b7w\u00b7n\u00eem": {"type": "object", "properties": {"psa.42.6|9": {"type": "array", "items": {"type": "string"}}}, "required": ["psa.42.6|9"]}}, "required": ["w\u0259\u00b7\u1e25er\u00b7m\u014d\u00b7w\u00b7n\u00eem"]}, "meanings": {"type": "object", "properties": {"hermon": {"type": "integer"}}, "required": ["hermon"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"author" : {"id" : "t2_7s8szr0l", "name" : "InspiraSean86"}, "date" : {"day" : 1607040000, "full" : 1607080152, "month" : 1606780800, "week" : 1606608000}, "id" : "t3_k6izoz", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 116279, "fullUrl" : "https://preview.redd.it/uvg9100tk5361.jpg?auto=webp&s=0efbd88486a61af1ca5a00932565a47761c4e919", "hash" : "b0f3477ed2", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAgMEBf/EACQQAAEEAQMDBQAAAAAAAAAAAAECAwQRIQAFMQYSEyJBUXGB/8QAFQEBAQAAAAAAAAAAAAAAAAAABQb/xAAZEQEBAAMBAAAAAAAAAAAAAAABAgASUYH/2gAMAwEAAhEDEQA/AJmCwNyMaO0htSkH1DHI4OaOPytJXORJnSWm4gCmT4kkAikjAF/Axo94pmPGdaSlLiQUX2g2Aqs39a1+nojKOmXphT3yHLBWrke2NT1UzG6vPcaJKdQz/9k=", "thumbnailUrl" : "https://b.thumbs.redditmedia.com/yON9L4f88GsDyzuWKpx7XDbX4aQSw-UQG3n7IeXrFbw.jpg", "url" : "https://preview.redd.it/uvg9100tk5361.jpg?width=640&crop=smart&auto=webp&s=f274814f2101bda837e80dcd5ed58d11b5b465c2", "width" : 640}, "score" : {"comments" : 31, "downs" : 0, "isCurated" : false, "ratio" : 0.99, "ups" : 1195, "value" : 1195}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : [], "title" : "A fortified, mining town", "url" : "https://www.reddit.com/r/dndmaps/comments/k6izoz/a_fortified_mining_town/"}
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "misc": {"type": "object", "properties": {"postHint": {"type": "string"}}, "required": ["postHint"]}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "thumbnailUrl": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "thumbnailUrl", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "misc", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"account": {"type": "object", "properties": {"email_address": {"type": "string"}}, "required": ["email_address"]}}, "required": ["account"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"account" : {"email_address" : "chris@hellosign.com"}}
json_instruct
{"type": "object", "properties": {"account": {"type": "object", "properties": {"email_address": {"type": "string"}}, "required": ["email_address"]}}, "required": ["account"], "$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"}, "dependencies": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "testFiles": {"type": "array", "items": {"type": "string"}}, "targetVersions": {"type": "object", "properties": {"branch": {"type": "string"}, "tag": {"type": "string"}, "commits": {"type": "string"}, "target": {"type": "string"}, "pxt": {"type": "string"}}, "required": ["branch", "tag", "commits", "target", "pxt"]}, "yotta": {"type": "object", "properties": {"config": {"type": "object", "properties": {"microbit-dal": {"type": "object", "properties": {"bluetooth": {"type": "object", "properties": {"enabled": {"type": "integer"}}, "required": ["enabled"]}}, "required": ["bluetooth"]}}, "required": ["microbit-dal"]}}, "required": ["config"]}, "public": {"type": "boolean"}}, "required": ["name", "dependencies", "description", "files", "testFiles", "targetVersions", "yotta", "public"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "nbiot", "dependencies" : {"core" : "*"}, "description" : "SARA N2 NB-IoT package for pxt-microbit", "files" : ["README.md", "nbiot.ts", "_locales/no/nbiot-strings.json", "_locales/no/nbiot-jsdoc-strings.json"], "testFiles" : ["test.ts"], "targetVersions" : {"branch" : "v1.2.11", "tag" : "v1.2.11", "commits" : "https://github.com/Microsoft/pxt-microbit/commits/38ad5ed0afd98a8d3ba9380f33db341cd7b25136", "target" : "1.2.11", "pxt" : "4.4.7"}, "yotta" : {"config" : {"microbit-dal" : {"bluetooth" : {"enabled" : 0}}}}, "public" : true}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"core": {"type": "string"}}, "required": ["core"]}, "description": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "testFiles": {"type": "array", "items": {"type": "string"}}, "targetVersions": {"type": "object", "properties": {"branch": {"type": "string"}, "tag": {"type": "string"}, "commits": {"type": "string"}, "target": {"type": "string"}, "pxt": {"type": "string"}}, "required": ["branch", "tag", "commits", "target", "pxt"]}, "yotta": {"type": "object", "properties": {"config": {"type": "object", "properties": {"microbit-dal": {"type": "object", "properties": {"bluetooth": {"type": "object", "properties": {"enabled": {"type": "integer"}}, "required": ["enabled"]}}, "required": ["bluetooth"]}}, "required": ["microbit-dal"]}}, "required": ["config"]}, "public": {"type": "boolean"}}, "required": ["name", "dependencies", "description", "files", "testFiles", "targetVersions", "yotta", "public"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"rps": {"type": "integer"}, "connections": {"type": "integer"}, "threads": {"type": "integer"}}, "required": ["rps", "connections", "threads"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"rps" : 1, "connections" : 1, "threads" : 1}, {"rps" : 100, "connections" : 4, "threads" : 4}, {"rps" : 500, "connections" : 8, "threads" : 8}, {"rps" : 1000, "connections" : 40, "threads" : 32}, {"rps" : 5000, "connections" : 80, "threads" : 32}, {"rps" : 10000, "connections" : 128, "threads" : 32}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"rps": {"type": "integer"}, "connections": {"type": "integer"}, "threads": {"type": "integer"}}, "required": ["rps", "connections", "threads"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "Hi Claus,\n\n\nIf HDRshop is built on MFC (Microsoft Foundation Classes) then it will need\nat least one DLL to run (MFC42.dll), which is perhaps missing from Vista?\nOther MFC DLLs my also be required.\nYou should be able to download these from Mircosoft.\n\n\nThanks,\nGlen Harding\nDivision of Optometry\nUniversity of Bradford\n\n\n-----Original Message-----\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2007-December/004642.html).</sup>", "attachments" : [], "created_by_name" : "G HARDING", "created_at" : "December 21, 2007 at 01:45AM", "created_by" : "G_HARDING", "parent_id" : "radiance-general_004641", "id" : "radiance-general_004642"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created_by_name", "created_at", "created_by", "parent_id", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "100137283", "city" : {"code" : 4600, "name" : "\uc804\ub77c\ub0a8\ub3c4"}, "region" : {"code" : "2460101", "name" : "\ubaa9\ud3ec\uc2dc"}, "party" : "\uc815\uc758\ub2f9", "name" : "\uc724\uc18c\ud558", "hasEmail" : true}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "city": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "region": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "name"]}, "party": {"type": "string"}, "name": {"type": "string"}, "hasEmail": {"type": "boolean"}}, "required": ["id", "city", "region", "party", "name", "hasEmail"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Cmd": {"type": "string"}, "Data": {"type": "null"}}, "required": ["Cmd", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Cmd" : "REQ_ALL_ADDR", "Data" : null}
json_instruct
{"type": "object", "properties": {"Cmd": {"type": "string"}, "Data": {"type": "null"}}, "required": ["Cmd", "Data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\Controllers\\": {"type": "string"}, "app\\Models\\": {"type": "string"}, "app\\Config\\": {"type": "string"}, "app\\Modules\\": {"type": "string"}}, "required": ["app\\Controllers\\", "app\\Models\\", "app\\Config\\", "app\\Modules\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "yussan/php-mvc-boilerplate", "description" : "pure php mvc(model view controller) boilerplate", "authors" : [{"name" : "yussandeveloper", "email" : "yussandeveloper@gmail.com"}], "autoload" : {"psr-4" : {"app\\Controllers\\" : "app/Controllers", "app\\Models\\" : "app/Models", "app\\Config\\" : "app/Config", "app\\Modules\\" : "app/Modules"}}, "require" : {}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"app\\Controllers\\": {"type": "string"}, "app\\Models\\": {"type": "string"}, "app\\Config\\": {"type": "string"}, "app\\Modules\\": {"type": "string"}}, "required": ["app\\Controllers\\", "app\\Models\\", "app\\Config\\", "app\\Modules\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "authors", "autoload", "require"], "$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"}, "enabledForApps": {"type": "boolean"}, "method": {"type": "string"}, "path": {"type": "string"}, "previews": {"type": "array", "items": {}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "type", "required", "description", "location"]}}, "description": {"type": "string"}, "responses": {"type": "array", "items": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"status": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["status", "content-type"]}, "body": {"type": "array", "items": {"type": "object", "properties": {"referrer": {"type": "string"}, "count": {"type": "integer"}, "uniques": {"type": "integer"}}, "required": ["referrer", "count", "uniques"]}}}, "required": ["headers", "body"]}}, "idName": {"type": "string"}, "documentationUrl": {"type": "string"}}, "required": ["name", "enabledForApps", "method", "path", "previews", "params", "description", "responses", "idName", "documentationUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "List referrers", "enabledForApps" : true, "method" : "GET", "path" : "/repos/:owner/:repo/traffic/popular/referrers", "previews" : [], "params" : [{"name" : "owner", "type" : "string", "required" : true, "description" : "", "location" : "url"}, {"name" : "repo", "type" : "string", "required" : true, "description" : "", "location" : "url"}], "description" : "Get the top 10 referrers over the last 14 days.", "responses" : [{"headers" : {"status" : "200 OK", "content-type" : "application/json; charset=utf-8"}, "body" : [{"referrer" : "Google", "count" : 4, "uniques" : 3}, {"referrer" : "stackoverflow.com", "count" : 2, "uniques" : 2}, {"referrer" : "eggsonbread.com", "count" : 1, "uniques" : 1}, {"referrer" : "yandex.ru", "count" : 1, "uniques" : 1}]}], "idName" : "get-top-referrers", "documentationUrl" : "https://developer.github.com/v3/repos/traffic/#list-referrers"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "enabledForApps": {"type": "boolean"}, "method": {"type": "string"}, "path": {"type": "string"}, "previews": {"type": "array", "items": {}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "boolean"}, "description": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "type", "required", "description", "location"]}}, "description": {"type": "string"}, "responses": {"type": "array", "items": {"type": "object", "properties": {"headers": {"type": "object", "properties": {"status": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["status", "content-type"]}, "body": {"type": "array", "items": {"type": "object", "properties": {"referrer": {"type": "string"}, "count": {"type": "integer"}, "uniques": {"type": "integer"}}, "required": ["referrer", "count", "uniques"]}}}, "required": ["headers", "body"]}}, "idName": {"type": "string"}, "documentationUrl": {"type": "string"}}, "required": ["name", "enabledForApps", "method", "path", "previews", "params", "description", "responses", "idName", "documentationUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"cms": {"type": "boolean"}}, "required": ["cms"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "9aed9c9c6cc3ebd1d0ce", "c" : {"cms" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"cms": {"type": "boolean"}}, "required": ["cms"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "blockus:block/cod_crate"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.ignoreWords" : ["fastly"]}
json_instruct
{"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Serrouville", "circ" : "3\u00e8me circonscription", "dpt" : "Meurthe-et-Moselle", "inscrits" : 476, "abs" : 314, "votants" : 162, "blancs" : 8, "nuls" : 5, "exp" : 149, "res" : [{"nuance" : "REM", "nom" : "M. Xavier PALUSZKIEWICZ", "voix" : 88}, {"nuance" : "FI", "nom" : "M. Patrice ZOLFO", "voix" : 61}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"ofi.js": {"type": "string"}, "ofi.min.js": {"type": "string"}}, "required": ["ofi.js", "ofi.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ofi.js" : "sha512-Jjw5w9tWsSpo3jyFdj+XPvhHk61oQIkDKIKKcES2eq6KoZMr2wwJtey/R13ZJqqY7vL1M4ykRlkkDyUjNELuKA==", "ofi.min.js" : "sha512-JgRVw2e/U8o/rGCtrBVX5Eq/woCDoEWBACByptHZeqDueBpSk8Nat7SOf4yimk94Stpx4EIZTbJtJMUv68l7kQ=="}
json_instruct
{"type": "object", "properties": {"ofi.js": {"type": "string"}, "ofi.min.js": {"type": "string"}}, "required": ["ofi.js", "ofi.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "Put your trailer reversing skills to the test!"}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "b9160de9fa7de69c36aac4da9de177eb0d12f8fb"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "plus_code": {"type": "object", "properties": {"compound_code": {"type": "string"}, "global_code": {"type": "string"}}, "required": ["compound_code", "global_code"]}, "rating": {"type": "number"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "plus_code", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"html_attributions" : [], "results" : [{"business_status" : "OPERATIONAL", "geometry" : {"location" : {"lat" : 26.1827563, "lng" : 90.1389401}, "viewport" : {"northeast" : {"lat" : 26.1839130302915, "lng" : 90.1402171802915}, "southwest" : {"lat" : 26.1812150697085, "lng" : 90.1375192197085}}}, "icon" : "https://maps.gstatic.com/mapfiles/place_api/icons/v1/png_71/hospital-71.png", "icon_background_color" : "#F88181", "icon_mask_base_uri" : "https://maps.gstatic.com/mapfiles/place_api/icons/v2/hospital-H_pinlet", "name" : "Patakata Sub Centre", "opening_hours" : {"open_now" : true}, "place_id" : "ChIJM88lcuhxWDcRE729qSj_BYg", "plus_code" : {"compound_code" : "54MQ+4H Jaharnura, Assam, India", "global_code" : "7MRG54MQ+4H"}, "rating" : 3.5, "reference" : "ChIJM88lcuhxWDcRE729qSj_BYg", "scope" : "GOOGLE", "types" : ["hospital", "health", "point_of_interest", "establishment"], "user_ratings_total" : 2, "vicinity" : "Unnamed Road, Jaharnura"}], "status" : "OK"}
json_instruct
{"type": "object", "properties": {"html_attributions": {"type": "array", "items": {}}, "results": {"type": "array", "items": {"type": "object", "properties": {"business_status": {"type": "string"}, "geometry": {"type": "object", "properties": {"location": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "viewport": {"type": "object", "properties": {"northeast": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}, "southwest": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}, "required": ["northeast", "southwest"]}}, "required": ["location", "viewport"]}, "icon": {"type": "string"}, "icon_background_color": {"type": "string"}, "icon_mask_base_uri": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "object", "properties": {"open_now": {"type": "boolean"}}, "required": ["open_now"]}, "place_id": {"type": "string"}, "plus_code": {"type": "object", "properties": {"compound_code": {"type": "string"}, "global_code": {"type": "string"}}, "required": ["compound_code", "global_code"]}, "rating": {"type": "number"}, "reference": {"type": "string"}, "scope": {"type": "string"}, "types": {"type": "array", "items": {"type": "string"}}, "user_ratings_total": {"type": "integer"}, "vicinity": {"type": "string"}}, "required": ["business_status", "geometry", "icon", "icon_background_color", "icon_mask_base_uri", "name", "opening_hours", "place_id", "plus_code", "rating", "reference", "scope", "types", "user_ratings_total", "vicinity"]}}, "status": {"type": "string"}}, "required": ["html_attributions", "results", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-autoprefixer": {"type": "string"}, "grunt-compare-size": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-haml": {"type": "string"}, "grunt-contrib-imagemin": {"type": "string"}, "grunt-contrib-jasmine": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-csscss": {"type": "string"}, "grunt-datauri-variables": {"type": "string"}, "grunt-shell": {"type": "string"}, "grunt-template-jasmine-istanbul": {"type": "string"}, "load-grunt-tasks": {"type": "string"}}, "required": ["grunt", "grunt-autoprefixer", "grunt-compare-size", "grunt-contrib-coffee", "grunt-contrib-concat", "grunt-contrib-haml", "grunt-contrib-imagemin", "grunt-contrib-jasmine", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-csscss", "grunt-datauri-variables", "grunt-shell", "grunt-template-jasmine-istanbul", "load-grunt-tasks"]}}, "required": ["name", "version", "main", "description", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "uxkit", "version" : "0.0.5", "main" : ["src/springs.js", "src/springs.scss"], "description" : "A modular front-end web framework inspired by iOS and built on delightful animations.", "devDependencies" : {"grunt" : "~0.4.1", "grunt-autoprefixer" : "~0.5.0", "grunt-compare-size" : "~0.4.0", "grunt-contrib-coffee" : "~0.10.1", "grunt-contrib-concat" : "~0.3.0", "grunt-contrib-haml" : "~0.2.0", "grunt-contrib-imagemin" : "~0.4.0", "grunt-contrib-jasmine" : "~0.6.4", "grunt-contrib-sass" : "~0.6.0", "grunt-contrib-uglify" : "~0.2.7", "grunt-contrib-watch" : "~0.5.3", "grunt-csscss" : "~0.6.2", "grunt-datauri-variables" : "^0.4.0", "grunt-shell" : "~0.6.4", "grunt-template-jasmine-istanbul" : "~0.3.0", "load-grunt-tasks" : "~0.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-autoprefixer": {"type": "string"}, "grunt-compare-size": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-haml": {"type": "string"}, "grunt-contrib-imagemin": {"type": "string"}, "grunt-contrib-jasmine": {"type": "string"}, "grunt-contrib-sass": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-csscss": {"type": "string"}, "grunt-datauri-variables": {"type": "string"}, "grunt-shell": {"type": "string"}, "grunt-template-jasmine-istanbul": {"type": "string"}, "load-grunt-tasks": {"type": "string"}}, "required": ["grunt", "grunt-autoprefixer", "grunt-compare-size", "grunt-contrib-coffee", "grunt-contrib-concat", "grunt-contrib-haml", "grunt-contrib-imagemin", "grunt-contrib-jasmine", "grunt-contrib-sass", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-csscss", "grunt-datauri-variables", "grunt-shell", "grunt-template-jasmine-istanbul", "load-grunt-tasks"]}}, "required": ["name", "version", "main", "description", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-env": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel-cli", "babel-preset-env", "chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "test01", "version" : "0.1.0", "description" : "nuestro primero test", "main" : "dist/lib/test01.js", "scripts" : {"build" : "babel lib/test01.js -d dist", "test" : "mocha"}, "repository" : {"type" : "git", "url" : "git+https://github.com/alejandrovt/test01.git"}, "keywords" : ["test", "alejo"], "author" : "Alejandro Villada T. <alejandrovt@gmail.com>", "license" : "MIT", "devDependencies" : {"babel-cli" : "^6.26.0", "babel-preset-env" : "^1.7.0", "chai" : "^4.1.2", "mocha" : "^5.2.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-preset-env": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["babel-cli", "babel-preset-env", "chai", "mocha"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "boolean"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"user" : "aakilfernandes", "repos" : 1, "login" : "aakilfernandes", "id" : 1577353, "avatar_url" : "https://avatars2.githubusercontent.com/u/1577353?v=3", "url" : "https://api.github.com/users/aakilfernandes", "html_url" : "https://github.com/aakilfernandes", "followers_url" : "https://api.github.com/users/aakilfernandes/followers", "following_url" : "https://api.github.com/users/aakilfernandes/following{/other_user}", "gists_url" : "https://api.github.com/users/aakilfernandes/gists{/gist_id}", "starred_url" : "https://api.github.com/users/aakilfernandes/starred{/owner}{/repo}", "subscriptions_url" : "https://api.github.com/users/aakilfernandes/subscriptions", "organizations_url" : "https://api.github.com/users/aakilfernandes/orgs", "repos_url" : "https://api.github.com/users/aakilfernandes/repos", "events_url" : "https://api.github.com/users/aakilfernandes/events{/privacy}", "received_events_url" : "https://api.github.com/users/aakilfernandes/received_events", "type" : "User", "site_admin" : false, "name" : "Aakil Fernandes", "company" : null, "blog" : "www.aakilfernandes.com", "location" : "New York City", "email" : "aakilfernandes@gmail.com", "hireable" : true, "bio" : null, "public_repos" : 40, "public_gists" : 23, "followers" : 30, "following" : 10, "created_at" : "2012-03-26T18:44:25Z", "updated_at" : "2016-11-04T20:15:27Z"}
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gists_url": {"type": "string"}, "starred_url": {"type": "string"}, "subscriptions_url": {"type": "string"}, "organizations_url": {"type": "string"}, "repos_url": {"type": "string"}, "events_url": {"type": "string"}, "received_events_url": {"type": "string"}, "type": {"type": "string"}, "site_admin": {"type": "boolean"}, "name": {"type": "string"}, "company": {"type": "null"}, "blog": {"type": "string"}, "location": {"type": "string"}, "email": {"type": "string"}, "hireable": {"type": "boolean"}, "bio": {"type": "null"}, "public_repos": {"type": "integer"}, "public_gists": {"type": "integer"}, "followers": {"type": "integer"}, "following": {"type": "integer"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["user", "repos", "login", "id", "avatar_url", "url", "html_url", "followers_url", "following_url", "gists_url", "starred_url", "subscriptions_url", "organizations_url", "repos_url", "events_url", "received_events_url", "type", "site_admin", "name", "company", "blog", "location", "email", "hireable", "bio", "public_repos", "public_gists", "followers", "following", "created_at", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"id" : 35588, "title" : "Ernest Giles, explorer, ca. 1863-1872 / photographers George Perry and unknown", "primoId" : "ADLIB110343326", "slug" : "adlib110343326", "shortcode" : "", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525670022501.jpg", "content" : "portraits, explorers, Adult Males", "imageType" : "portrait", "date" : "2018-05-07 05:13:42", "dateText" : "ca. 1863-1872", "timestamp" : "", "instagramUsername" : "", "featuredMedia" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525670022501.jpg", "sizes" : {"medium" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525670022501-300x178.jpg", "width" : 300, "height" : 178, "__typename" : "MediaSize"}, "full" : {"sourceUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie1525670022501.jpg", "width" : 1400, "height" : 832, "__typename" : "MediaSize"}, "__typename" : "MediaSizes"}, "__typename" : "Media"}, "__typename" : "NewSelfWalesPortrait"}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, "date": {"type": "string"}, "dateText": {"type": "string"}, "timestamp": {"type": "string"}, "instagramUsername": {"type": "string"}, "featuredMedia": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "sizes": {"type": "object", "properties": {"medium": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "full": {"type": "object", "properties": {"sourceUrl": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "width", "height", "__typename"]}, "__typename": {"type": "string"}}, "required": ["medium", "full", "__typename"]}, "__typename": {"type": "string"}}, "required": ["sourceUrl", "sizes", "__typename"]}, "__typename": {"type": "string"}}, "required": ["id", "title", "primoId", "slug", "shortcode", "imageUrl", "content", "imageType", "date", "dateText", "timestamp", "instagramUsername", "featuredMedia", "__typename"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["1800669"], "\uc81c\uc548\uc77c\uc790" : ["2008-08-19"], "\uc81c\uc548\uc790" : ["\uc758\uc7a5"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c18\ub300(2008~2012)\uc81c277\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : ["2008-08-19"], "\uc758\uacb0\uc77c" : ["2008-08-19"], "\ud68c\uc758\uba85" : ["\uc81c277\ud68c\uc81c1\ucc28"], "\ud68c\uc758\uacb0\uacfc" : ["\uc6d0\uc548\uac00\uacb0"], "\ud68c\uc758\ub85d" : [""]}}
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"entities": {"type": "array", "items": {"type": "object", "properties": {"entityValue": {"type": "string"}, "lastUpdatedTime": {"type": "object", "properties": {"hour": {"type": "integer"}, "__class__": {"type": "string"}, "month": {"type": "integer"}, "second": {"type": "integer"}, "microsecond": {"type": "integer"}, "year": {"type": "integer"}, "day": {"type": "integer"}, "minute": {"type": "integer"}}, "required": ["hour", "__class__", "month", "second", "microsecond", "year", "day", "minute"]}, "tags": {"type": "object", "properties": {"K": {"type": "string"}}, "required": ["K"]}, "eventArn": {"type": "string"}, "statusCode": {"type": "string"}}, "required": ["entityValue", "lastUpdatedTime", "tags", "eventArn", "statusCode"]}}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "date": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["x-amzn-requestid", "date", "content-length", "content-type"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["entities", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"status_code" : 200, "data" : {"entities" : [{"entityValue" : "vol-12345", "lastUpdatedTime" : {"hour" : 3, "__class__" : "datetime", "month" : 1, "second" : 57, "microsecond" : 255000, "year" : 2017, "day" : 19, "minute" : 18}, "tags" : {"K" : "V"}, "eventArn" : "arn:aws:health:us-east-1::event/EBS_12345678-1234-1234-1234-123456789012", "statusCode" : "IMPAIRED"}], "ResponseMetadata" : {"RetryAttempts" : 0, "HTTPStatusCode" : 200, "RequestId" : "8323a5f0-ff65-11e6-a2b7-a95efeece90c", "HTTPHeaders" : {"x-amzn-requestid" : "8323a5f0-ff65-11e6-a2b7-a95efeece90c", "date" : "Thu, 02 Mar 2017 16:30:14 GMT", "content-length" : "579", "content-type" : "application/x-amz-json-1.1"}}}}
json_instruct
{"type": "object", "properties": {"status_code": {"type": "integer"}, "data": {"type": "object", "properties": {"entities": {"type": "array", "items": {"type": "object", "properties": {"entityValue": {"type": "string"}, "lastUpdatedTime": {"type": "object", "properties": {"hour": {"type": "integer"}, "__class__": {"type": "string"}, "month": {"type": "integer"}, "second": {"type": "integer"}, "microsecond": {"type": "integer"}, "year": {"type": "integer"}, "day": {"type": "integer"}, "minute": {"type": "integer"}}, "required": ["hour", "__class__", "month", "second", "microsecond", "year", "day", "minute"]}, "tags": {"type": "object", "properties": {"K": {"type": "string"}}, "required": ["K"]}, "eventArn": {"type": "string"}, "statusCode": {"type": "string"}}, "required": ["entityValue", "lastUpdatedTime", "tags", "eventArn", "statusCode"]}}, "ResponseMetadata": {"type": "object", "properties": {"RetryAttempts": {"type": "integer"}, "HTTPStatusCode": {"type": "integer"}, "RequestId": {"type": "string"}, "HTTPHeaders": {"type": "object", "properties": {"x-amzn-requestid": {"type": "string"}, "date": {"type": "string"}, "content-length": {"type": "string"}, "content-type": {"type": "string"}}, "required": ["x-amzn-requestid", "date", "content-length", "content-type"]}}, "required": ["RetryAttempts", "HTTPStatusCode", "RequestId", "HTTPHeaders"]}}, "required": ["entities", "ResponseMetadata"]}}, "required": ["status_code", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0x483b2942b24681c258bc5b63cd0921e6c5ea997a", "tool" : "manticore", "start" : 1564149383.8743699, "end" : 1564151185.953806, "duration" : 1802.0794360637665, "analysis" : [[], []]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.53552824, "width" : 0.04961759, "ymin" : 0.59580845, "height" : 0.06202221}, "relativeKeypoints" : [{"y" : 0.6019695, "x" : 0.55525446}, {"y" : 0.64912885, "x" : 0.5728188}, {"y" : 0.6511913, "x" : 0.5588248}, {"y" : 0.65002036, "x" : 0.546345}, {"y" : 0.6467156, "x" : 0.5356539}, {"y" : 0.6058722, "x" : 0.5721533}, {"y" : 0.6275166, "x" : 0.58204186}], "format" : "RELATIVE_BOUNDING_BOX"}, "score" : [0.99974686], "label" : ["Palm"]}
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeypoints": {"type": "array", "items": {"type": "object", "properties": {"y": {"type": "number"}, "x": {"type": "number"}}, "required": ["y", "x"]}}, "format": {"type": "string"}}, "required": ["relativeBoundingBox", "relativeKeypoints", "format"]}, "score": {"type": "array", "items": {"type": "number"}}, "label": {"type": "array", "items": {"type": "string"}}}, "required": ["locationData", "score", "label"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "required": ["id", "url", "author", "title", "text", "published_date", "section"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 3923, "url" : "http://proxy-pubminefi.diffusion.finances.gouv.fr/pub/document/18/18945.pdf", "author" : "Michel Sapin", "title" : "INVITATION PRESSE - Michel SAPIN remettra le 28e Prix TURGOT du meilleur livre d'\u00e9conomie financi\u00e8re, le 25 mars \u00e0 19 h", "text" : " \n \n \n \nMICHEL SAPIN \nMINISTRE DES FINANCES ET DES COMPTES PUBLICS \n \nI n v i t a t i o n p re s s e \nI n v i t a t i o n p re s s e \nwww.economie.gouv.fr \n@Min_Finances \n \n \n \n \n \n \n \n Paris, le 24 mars 2015 \nN\u00b0 247 \n \nMichel SAPIN, \nministre des Finances et des Comptes publics \n \n \nremettra le 28e Prix TURGOT du meilleur livre d\u2019\u00e9conomie financi\u00e8re \n \n \nMercredi 25 mars 2015 \u00e0 19 h 00 \n \nA Bercy \nCentre de Conf\u00e9rences Pierre Mend\u00e8s France \n139, rue de Bercy \n75012 PARIS \n \n \n \nAccueil des invit\u00e9s \u00e0 partir de 17 h 00 \nOuverture de la c\u00e9r\u00e9monie \u00e0 17 h 45 pr\u00e9cises \nPr\u00e9sentation des nomin\u00e9s \u00e0 18 h 05 \nCocktail \u00e0 20 h 00 \n \n \nGrand rendez-vous annuel de la litt\u00e9rature \u00e9conomique et financi\u00e8re, le Prix Turgot, pr\u00e9sid\u00e9 \npar Jean-Louis CHAMBON, contribue au rayonnement de la pens\u00e9e \u00e9conomique nationale et \nfrancophone \n \nLe prix Turgot r\u00e9compense chaque ann\u00e9e depuis 1987 le meilleur livre d\u2019\u00e9conomie financi\u00e8re. Le prix est \norganis\u00e9 par l'Association des El\u00e8ves et Anciens El\u00e8ves de l'Institut de Haute Finance (IHFi) avec la \ncollaboration des principales maisons d'\u00e9dition fran\u00e7aises, de la presse \u00e9conomique (Les Echos, BFM \nBusiness) et le soutien de nombreux partenaires du monde de l'\u00e9conomie, de la finance, des entreprises et \ndes universit\u00e9s. \n \n \n \nAccr\u00e9ditations aupr\u00e8s du bureau de presse de Bercy \n01 53 18 33 80 \n \n \nContact presse : \n \nCabinet de Michel SAPIN \n \n01 53 18 41 13 \nsec.mfcp-presse@cabinets.finances.gouv.fr \n \nPRIX TURGOT : \n \n \nJean-Louis CHAMBON - 06 85 52 74 50 \n", "published_date" : "2015-03-24", "section" : "Communiques"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "author": {"type": "string"}, "title": {"type": "string"}, "text": {"type": "string"}, "published_date": {"type": "string"}, "section": {"type": "string"}}, "required": ["id", "url", "author", "title", "text", "published_date", "section"], "$schema": "http://json-schema.org/draft-07/schema#"}