input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Abstract Composition", "creation_date" : "1948", "creation_date_earliest" : "1948-01-01", "creation_date_latest" : "1948-01-01", "medium" : "color lithograph", "accession_number" : "85.80.15", "id" : "cmoa:things/e9c2454c-e01a-4879-a4d8-cf2f908889de", "credit_line" : "Gift of Irene Pasinski", "date_acquired" : "1986-02-06", "department" : "Contemporary Art", "physical_location" : "Not on View", "item_width" : 28.0, "item_height" : 22.0, "item_depth" : 0.0, "item_diameter" : 0.0, "web_url" : "http://collection.cmoa.org/CollectionDetail.aspx?item=1025793", "provenance_text" : "Irene Pasinski, Pittsburgh, PA", "classification" : "prints", "images" : [{"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=103232&size=Medium"}, {"image_url" : "http://collection.cmoa.org/CollectionImage.aspx?irn=63855&size=Medium"}], "creator" : [{"artist_id" : "cmoa:parties/00a3a4a1-f2f3-48b6-adc6-e36267d39752", "party_type" : "Person", "full_name" : "Joan Mir\u00f3", "cited_name" : "Mir\u00f3, Joan", "role" : null, "nationality" : "Spanish", "birth_date" : "1893-01-01", "death_date" : "1983-01-01", "birth_place" : "Barcelona (Barcelona province, Catalonia, Spain)", "death_place" : "Palma de Mallorca (Illes Balears province, Comunidad Aut\u00f3noma de las Islas Baleares, Spain)"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"}, "date_acquired": {"type": "string"}, "department": {"type": "string"}, "physical_location": {"type": "string"}, "item_width": {"type": "number"}, "item_height": {"type": "number"}, "item_depth": {"type": "number"}, "item_diameter": {"type": "number"}, "web_url": {"type": "string"}, "provenance_text": {"type": "string"}, "classification": {"type": "string"}, "images": {"type": "array", "items": {"type": "object", "properties": {"image_url": {"type": "string"}}, "required": ["image_url"]}}, "creator": {"type": "array", "items": {"type": "object", "properties": {"artist_id": {"type": "string"}, "party_type": {"type": "string"}, "full_name": {"type": "string"}, "cited_name": {"type": "string"}, "role": {"type": "null"}, "nationality": {"type": "string"}, "birth_date": {"type": "string"}, "death_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_place": {"type": "string"}}, "required": ["artist_id", "party_type", "full_name", "cited_name", "role", "nationality", "birth_date", "death_date", "birth_place", "death_place"]}}}, "required": ["title", "creation_date", "creation_date_earliest", "creation_date_latest", "medium", "accession_number", "id", "credit_line", "date_acquired", "department", "physical_location", "item_width", "item_height", "item_depth", "item_diameter", "web_url", "provenance_text", "classification", "images", "creator"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"geometry" : {"type" : "Point", "coordinates" : [-114.44, 34.72]}, "type" : "Feature", "id" : "86436", "properties" : {"other_cities" : "", "city" : "Topock", "state" : "AZ", "county" : "Mohave County"}} | json_instruct | {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_cities": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["other_cities", "city", "state", "county"]}}, "required": ["geometry", "type", "id", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Terra.actionHeader.close": {"type": "string"}, "Terra.actionHeader.back": {"type": "string"}, "Terra.actionHeader.previous": {"type": "string"}, "Terra.actionHeader.next": {"type": "string"}, "Terra.actionHeader.maximize": {"type": "string"}, "Terra.actionHeader.minimize": {"type": "string"}}, "required": ["Terra.actionHeader.close", "Terra.actionHeader.back", "Terra.actionHeader.previous", "Terra.actionHeader.next", "Terra.actionHeader.maximize", "Terra.actionHeader.minimize"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Terra.actionHeader.close" : "Cerrar", "Terra.actionHeader.back" : "Retroceder", "Terra.actionHeader.previous" : "Anterior", "Terra.actionHeader.next" : "Siguiente", "Terra.actionHeader.maximize" : "Maximizar", "Terra.actionHeader.minimize" : "Minimizar"} | json_instruct | {"type": "object", "properties": {"Terra.actionHeader.close": {"type": "string"}, "Terra.actionHeader.back": {"type": "string"}, "Terra.actionHeader.previous": {"type": "string"}, "Terra.actionHeader.next": {"type": "string"}, "Terra.actionHeader.maximize": {"type": "string"}, "Terra.actionHeader.minimize": {"type": "string"}}, "required": ["Terra.actionHeader.close", "Terra.actionHeader.back", "Terra.actionHeader.previous", "Terra.actionHeader.next", "Terra.actionHeader.maximize", "Terra.actionHeader.minimize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3da89a68-c2e5-4a8a-9099-bb0039fe2e68", "sourceName" : "kilde", "sourcePath" : "/folkeregisterperson/kjoenn/", "targetInstanceVariable" : "/InstanceVariable/9edd6e3e-818e-4075-b972-8688bcbf48ad"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "sourceName": {"type": "string"}, "sourcePath": {"type": "string"}, "targetInstanceVariable": {"type": "string"}}, "required": ["id", "sourceName", "sourcePath", "targetInstanceVariable"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "muraena", "definition" : "A genus of large eels of the family Mir\u00e6nid\u00e6. They differ from the common eel in lacking pectoral fins and in having the dorsal and anal fins continuous. The murry (Mur\u00e6na Helen\u00e6) of Southern Europe was the mur\u00e6na of the Romans. It is highly valued as a food fish."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [2.0639699647983574, 2.610099183026437, 1.9596433475969097, 1.7303154677772794, 3.3473376786992666, 2.6693595454261927, 2.2501223154870518, 1.4746292740122524, 2.116107985107504, 2.5237612334618933] | json_instruct | {"type": "array", "items": {"type": "number"}, "$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"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "description", "type", "license", "version", "keywords", "require", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "payter/wp-remp-connector", "description" : "WP plugin, helper for retrievie of REMP CRM user data", "type" : "wordpress-plugin", "license" : "MIT", "version" : "0.1.0", "keywords" : ["REMP", "WP", "Plugin", "CRM"], "require" : {"php" : ">=7.1.0", "guzzlehttp/guzzle" : "~6.0"}, "authors" : [{"name" : "Peter PayteR Ga\u0161par\u00edk", "email" : "payter86@gmail.com"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "guzzlehttp/guzzle"]}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}}, "required": ["name", "description", "type", "license", "version", "keywords", "require", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rating" : "5", "uuid" : "685", "review_date" : "2009-04-09", "helpful" : "1", "reviewer_id" : "A2XZA5IYV73BFL", "not_helpful" : "1", "review_text" : "What can I say except that this does exactly what it should. I no longer have to borrow my mother's food press to make blackberry jelly. Next year I'll make sure to make even more, since I won't be stuck doing it on a schedule.", "summary" : "NO more borrowing", "product_name" : "Mirro 9605000A Canning Accessories Food Press with Wooden Pestle Cookware, Silver", "product_id" : "B00002N5ZQ"} | json_instruct | {"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "string"}, "product_id": {"type": "string"}}, "required": ["rating", "uuid", "review_date", "helpful", "reviewer_id", "not_helpful", "review_text", "summary", "product_name", "product_id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"bytes": {"type": "integer"}, "elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Disposition": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Server": {"type": "string"}, "Vary": {"type": "string"}, "x-amz-meta-cachetime": {"type": "string"}}, "required": ["Cache-Control", "Connection", "Content-Disposition", "Content-Encoding", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Server", "Vary", "x-amz-meta-cachetime"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["bytes", "elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bytes" : 1206103, "elapsed" : "1.953", "endpoint-url" : "https://opendata.arcgis.com/datasets/dbbcc688ab9c4b53ac03df44e02ae704_0.geojson", "entry-date" : "2021-12-28T00:22:26.852552", "request-headers" : {"Accept" : "*/*", "Accept-Encoding" : "gzip, deflate", "Connection" : "keep-alive", "User-Agent" : "DLUHC Digital Land"}, "resource" : "a993375ec694f798bbfacff2a8553141a537436d017c6f30e161c6c4b55b5292", "response-headers" : {"Cache-Control" : "must-revalidate", "Connection" : "keep-alive", "Content-Disposition" : "attachment; filename=\"Tree_Preservation_Order_Points.geojson\"", "Content-Encoding" : "gzip", "Content-Length" : "148981", "Content-Type" : "application/json", "Date" : "Tue, 28 Dec 2021 00:22:28 GMT", "ETag" : "\"5c9398016fdae6a8c1c90d5aa8d36eb6\"", "Last-Modified" : "Sun, 26 Dec 2021 03:32:32 GMT", "Server" : "openresty", "Vary" : "Accept-Encoding", "x-amz-meta-cachetime" : "1695"}, "ssl-verify" : true, "status" : "200"} | json_instruct | {"type": "object", "properties": {"bytes": {"type": "integer"}, "elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "request-headers": {"type": "object", "properties": {"Accept": {"type": "string"}, "Accept-Encoding": {"type": "string"}, "Connection": {"type": "string"}, "User-Agent": {"type": "string"}}, "required": ["Accept", "Accept-Encoding", "Connection", "User-Agent"]}, "resource": {"type": "string"}, "response-headers": {"type": "object", "properties": {"Cache-Control": {"type": "string"}, "Connection": {"type": "string"}, "Content-Disposition": {"type": "string"}, "Content-Encoding": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Date": {"type": "string"}, "ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "Server": {"type": "string"}, "Vary": {"type": "string"}, "x-amz-meta-cachetime": {"type": "string"}}, "required": ["Cache-Control", "Connection", "Content-Disposition", "Content-Encoding", "Content-Length", "Content-Type", "Date", "ETag", "Last-Modified", "Server", "Vary", "x-amz-meta-cachetime"]}, "ssl-verify": {"type": "boolean"}, "status": {"type": "string"}}, "required": ["bytes", "elapsed", "endpoint-url", "entry-date", "request-headers", "resource", "response-headers", "ssl-verify", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Interop\\Container": {"type": "string"}}, "required": ["Interop\\Container"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "license", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "container-interop/container-interop", "type" : "library", "description" : "Dependency injection containers interoperability", "license" : "MIT", "autoload" : {"psr-0" : {"Interop\\Container" : "src/"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Interop\\Container": {"type": "string"}}, "required": ["Interop\\Container"]}}, "required": ["psr-0"]}}, "required": ["name", "type", "description", "license", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"LogTraces": {"type": "boolean"}, "Interactive": {"type": "boolean"}, "module": {"type": "object", "properties": {"Username": {"type": "string"}, "Password": {"type": "string"}, "Realm": {"type": "string"}, "Host": {"type": "string"}, "Port": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["Username", "Password", "Realm", "Host", "Port", "ignore"]}}, "required": ["LogTraces", "Interactive", "module"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LogTraces" : true, "Interactive" : false, "module" : {"Username" : "guest", "Password" : "guest", "Realm" : "RabbitMQ Management", "Host" : "localhost", "Port" : "15672", "ignore" : [["queue", "Regex", "^amq"], ["exchange", "Regex", "my-exchange"]]}} | json_instruct | {"type": "object", "properties": {"LogTraces": {"type": "boolean"}, "Interactive": {"type": "boolean"}, "module": {"type": "object", "properties": {"Username": {"type": "string"}, "Password": {"type": "string"}, "Realm": {"type": "string"}, "Host": {"type": "string"}, "Port": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["Username", "Password", "Realm", "Host", "Port", "ignore"]}}, "required": ["LogTraces", "Interactive", "module"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "debug-test": {"type": "string"}}, "required": ["build", "dev", "test", "debug-test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "mocha": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-stage-2", "chai", "eslint", "eslint-loader", "mocha", "webpack"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "bugs", "homepage", "keywords", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "grapha", "version" : "0.1.5", "description" : "grapha.js - A javascript es6 graph library", "main" : "lib/grapha.min.js", "scripts" : {"build" : "WEBPACK_ENV=build webpack", "dev" : "WEBPACK_ENV=dev webpack -w", "test" : "mocha --compilers js:babel-core/register --colors ./test/*.test.js", "debug-test" : "mocha --inspect-brk --compilers js:babel-core/register --colors ./test/*.test.js"}, "author" : "Florian Marienwald", "license" : "MIT", "devDependencies" : {"babel" : "^6.23.0", "babel-core" : "^6.26.0", "babel-eslint" : "^7.2.3", "babel-loader" : "^7.1.2", "babel-preset-es2015" : "^6.24.1", "babel-preset-stage-2" : "^6.24.1", "chai" : "^4.1.1", "eslint" : "^4.5.0", "eslint-loader" : "^1.9.0", "mocha" : "^3.5.0", "webpack" : "^3.5.5"}, "bugs" : {"url" : "https://github.com/Nowai/grapha.js/issues"}, "homepage" : "https://github.com/Nowai/grapha.js", "keywords" : ["graph", "es6", "data", "structure", "search", "algorithm"], "repository" : {"type" : "git", "url" : "git+https://github.com/Nowai/grapha.js.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}, "debug-test": {"type": "string"}}, "required": ["build", "dev", "test", "debug-test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-stage-2": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "mocha": {"type": "string"}, "webpack": {"type": "string"}}, "required": ["babel", "babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "babel-preset-stage-2", "chai", "eslint", "eslint-loader", "mocha", "webpack"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "bugs", "homepage", "keywords", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "isModifier": {"type": "boolean"}, "isSummary": {"type": "boolean"}, "binding": {"type": "object", "properties": {"extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueString": {"type": "string"}}, "required": ["url", "valueString"]}}, "strength": {"type": "string"}, "description": {"type": "string"}, "valueSetReference": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["extension", "strength", "description", "valueSetReference"]}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "isModifier", "isSummary", "binding", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resourceType" : "DataElement", "id" : "GuidanceResponse.status", "meta" : {"lastUpdated" : "2019-10-24T11:53:00+11:00"}, "url" : "http://hl7.org/fhir/DataElement/GuidanceResponse.status", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"id" : "GuidanceResponse.status", "path" : "GuidanceResponse.status", "short" : "success | data-requested | data-required | in-progress | failure | entered-in-error", "definition" : "The status of the response. If the evaluation is completed successfully, the status will indicate success. However, in order to complete the evaluation, the engine may require more information. In this case, the status will be data-required, and the response will contain a description of the additional required information. If the evaluation completed successfully, but the engine determines that a potentially more accurate response could be provided if more data was available, the status will be data-requested, and the response will contain a description of the additional requested information.", "comment" : "This element is labeled as a modifier because the status contains codes that mark the resource as not currently valid.", "min" : 1, "max" : "1", "type" : [{"code" : "code"}], "isModifier" : true, "isSummary" : true, "binding" : {"extension" : [{"url" : "http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName", "valueString" : "GuidanceResponseStatus"}], "strength" : "required", "description" : "The status of a guidance response", "valueSetReference" : {"reference" : "http://hl7.org/fhir/ValueSet/guidance-response-status"}}, "mapping" : [{"identity" : "w5", "map" : "status"}]}]} | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "comment": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "isModifier": {"type": "boolean"}, "isSummary": {"type": "boolean"}, "binding": {"type": "object", "properties": {"extension": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "valueString": {"type": "string"}}, "required": ["url", "valueString"]}}, "strength": {"type": "string"}, "description": {"type": "string"}, "valueSetReference": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["extension", "strength", "description", "valueSetReference"]}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["id", "path", "short", "definition", "comment", "min", "max", "type", "isModifier", "isSummary", "binding", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "PELALAWAN", "originalFilename" : "9. FILE FHOTO IMG_2551.jpg", "namaPartai" : "Partai NasDem", "id" : 65572, "noUrut" : 1, "nama" : "HERMANSYUR, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9.FHOTO HERDI.jpg", "namaPartai" : "Partai NasDem", "id" : 81023, "noUrut" : 2, "nama" : "HERDI SUSWORO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9. FHOTO ADEK RIANTI.jpg", "namaPartai" : "Partai NasDem", "id" : 161738, "noUrut" : 3, "nama" : "ADEK ARIANTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9. FHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 68454, "noUrut" : 4, "nama" : "ARSAD, S.Sos, M.IP", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9.FHOTO BUJANG FARIS.jpg", "namaPartai" : "Partai NasDem", "id" : 262412, "noUrut" : 5, "nama" : "BUJANG FARIS", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9. FHOTO CATUR YULI.jpg", "namaPartai" : "Partai NasDem", "id" : 160113, "noUrut" : 6, "nama" : "CATUR YULI RIYANTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9. IMG.jpg", "namaPartai" : "Partai NasDem", "id" : 237174, "noUrut" : 7, "nama" : "MUHAMMAD ABDUL HAFIIZH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "PELALAWAN", "originalFilename" : "9. FHOTO.jpg", "namaPartai" : "Partai NasDem", "id" : 206421, "noUrut" : 8, "nama" : "IGUSTIANI", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"hatena_blog_entry_id": {"type": "string"}, "hatena_blog_entry_url": {"type": "string"}, "minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["hatena_blog_entry_id", "hatena_blog_entry_url", "minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hatena_blog_entry_id" : "11696248318755859262", "hatena_blog_entry_url" : "https://bouzuya.hatenablog.com/entry/2013/07/17/224158", "minutes" : 8, "pubdate" : "2013-07-17T22:32:38+09:00", "tags" : ["book"], "title" : "\u30c6\u30b9\u30c8\u99c6\u52d5\u958b\u767a\u5165\u9580\u3092\u8aad\u3093\u3067\u3044\u308b"} | json_instruct | {"type": "object", "properties": {"hatena_blog_entry_id": {"type": "string"}, "hatena_blog_entry_url": {"type": "string"}, "minutes": {"type": "integer"}, "pubdate": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}}, "required": ["hatena_blog_entry_id", "hatena_blog_entry_url", "minutes", "pubdate", "tags", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "limit": {"type": "integer"}}, "required": ["id", "limit"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "6283839764676@c.us", "limit" : 2}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "limit": {"type": "integer"}}, "required": ["id", "limit"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ivoomi i1": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "number"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}, "ivoomi me 4": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "number"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}}, "required": ["ivoomi i1", "ivoomi me 4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ivoomi i1" : {"deviceName" : "i1", "marketingName" : "i1", "manufacturer" : "ivoomi", "brand" : "ivoomi", "display" : {"width" : 1280, "height" : 640, "touch" : true, "size" : 5.45}, "type" : "smartphone", "platform" : "android"}, "ivoomi me 4" : {"deviceName" : "Me 4", "marketingName" : "Me 4", "manufacturer" : "ivoomi", "brand" : "ivoomi", "display" : {"width" : 854, "height" : 480, "touch" : true, "size" : 4.5}, "type" : "smartphone", "platform" : "android"}} | json_instruct | {"type": "object", "properties": {"ivoomi i1": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "number"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}, "ivoomi me 4": {"type": "object", "properties": {"deviceName": {"type": "string"}, "marketingName": {"type": "string"}, "manufacturer": {"type": "string"}, "brand": {"type": "string"}, "display": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "touch": {"type": "boolean"}, "size": {"type": "number"}}, "required": ["width", "height", "touch", "size"]}, "type": {"type": "string"}, "platform": {"type": "string"}}, "required": ["deviceName", "marketingName", "manufacturer", "brand", "display", "type", "platform"]}}, "required": ["ivoomi i1", "ivoomi me 4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"query": {"type": "string"}, "display_query": {"type": "string"}, "url": {"type": "string"}}, "required": ["query", "display_query", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"query" : "\u539f\u795e", "display_query" : "\u539f\u795e 1.6 \u7248\u672c pv", "url" : "https://www.zhihu.com/search?q=\u539f\u795e"}, {"query" : "\u8001\u53cb\u8bb0\u91cd\u805a", "display_query" : "\u300c\u8001\u53cb\u8bb0\u300d\u91cd\u805a\u7279\u8f91", "url" : "https://www.zhihu.com/search?q=\u8001\u53cb\u8bb0\u91cd\u805a"}, {"query" : "\u4e00\u4eba\u4e4b\u4e0b", "display_query" : "\u300a\u4e00\u4eba\u4e4b\u4e0b\u300b560 \u8bdd", "url" : "https://www.zhihu.com/search?q=\u4e00\u4eba\u4e4b\u4e0b"}, {"query" : "\u4e91\u5357\u5927\u8c61", "display_query" : "\u4e91\u5357\u5927\u8c61\u7ec4\u56e2\u538b\u9a6c\u8def", "url" : "https://www.zhihu.com/search?q=\u4e91\u5357\u5927\u8c61"}, {"query" : "\u4f55\u5146\u6b66", "display_query" : "\u4f55\u5146\u6b66\u901d\u4e16", "url" : "https://www.zhihu.com/search?q=\u4f55\u5146\u6b66"}, {"query" : "\u6d77\u8d3c\u738b", "display_query" : "\u6d77\u8d3c\u738b 1014 \u8bdd\u60c5\u62a5", "url" : "https://www.zhihu.com/search?q=\u6d77\u8d3c\u738b"}, {"query" : "\u4ee4\u4eba\u5fc3\u52a8\u7684offer\u7b2c\u4e09\u5b63", "display_query" : "\u300c\u4ee4\u4eba\u5fc3\u52a8\u7684 offer\u300d\u7b2c\u4e09\u5b63\u662f\u533b\u5b66\u4e13\u573a", "url" : "https://www.zhihu.com/search?q=\u4ee4\u4eba\u5fc3\u52a8\u7684offer\u7b2c\u4e09\u5b63"}, {"query" : "\u753b\u6c5f\u6e56\u4e4b\u4e0d\u826f\u4eba\u7b2c\u56db\u5b63", "display_query" : "\u300c\u753b\u6c5f\u6e56\u4e4b\u4e0d\u826f\u4eba\u300d\u7b2c\u56db\u5b63\u7b2c 6 \u96c6", "url" : "https://www.zhihu.com/search?q=\u753b\u6c5f\u6e56\u4e4b\u4e0d\u826f\u4eba\u7b2c\u56db\u5b63"}, {"query" : "\u4e2d\u56fd\u5973\u6392", "display_query" : "\u4e2d\u56fd\u5973\u6392\u4e0d\u654c\u65e5\u672c", "url" : "https://www.zhihu.com/search?q=\u4e2d\u56fd\u5973\u6392"}, {"query" : "\u9e3f\u8499\u5e73\u677f", "display_query" : "\u534e\u4e3a\u5c06\u53d1\u5e03\u9e3f\u8499\u5e73\u677f", "url" : "https://www.zhihu.com/search?q=\u9e3f\u8499\u5e73\u677f"}, {"query" : "\u65e5\u672c\u4eac\u90fd\u5927\u5b66", "display_query" : "\u65e5\u672c\u4eac\u90fd\u5927\u5b66\u53d6\u6d88\u5df2\u6388\u535a\u58eb\u5b66\u4f4d", "url" : "https://www.zhihu.com/search?q=\u65e5\u672c\u4eac\u90fd\u5927\u5b66"}, {"query" : "\u59da\u975e\u62c9", "display_query" : "\u59da\u975e\u62c9 \u590f\u8fbe", "url" : "https://www.zhihu.com/search?q=\u59da\u975e\u62c9"}, {"query" : "\u7fdf\u5929\u4e34\u56de\u590d", "display_query" : "\u7fdf\u5929\u4e34\u56de\u590d\u8fd1\u671f\u88ab\u9a82\u4e8b\u4ef6", "url" : "https://www.zhihu.com/search?q=\u7fdf\u5929\u4e34\u56de\u590d"}, {"query" : "\u96c4\u5b89", "display_query" : "\u96c4\u5b89\u88ab\u786e\u8ba4\u4e3a\u5a5a\u4fd7\u6539\u9769\u5b9e\u9a8c\u533a", "url" : "https://www.zhihu.com/search?q=\u96c4\u5b89"}, {"query" : "\u865a\u5e7b\u5f15\u64ce5", "display_query" : "\u865a\u5e7b\u5f15\u64ce 5 \u62a2\u5148\u4f53\u9a8c", "url" : "https://www.zhihu.com/search?q=\u865a\u5e7b\u5f15\u64ce5"}, {"query" : "\u5e7f\u5dde\u75ab\u60c5", "display_query" : "\u5e7f\u5dde\u786e\u8bca\u75c5\u4f8b\u5bc6\u63a5\u8005", "url" : "https://www.zhihu.com/search?q=\u5e7f\u5dde\u75ab\u60c5"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"query": {"type": "string"}, "display_query": {"type": "string"}, "url": {"type": "string"}}, "required": ["query", "display_query", "url"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 4207, "citation_title" : "Why Exchange Rate Bands? Monetary Independence in Spite of Fixed Exchange Rates", "citation_author" : ["Lars E.O. Svensson"], "citation_publication_date" : "1992-11-01", "issue_date" : "1992-11-01", "revision_date" : "None", "topics" : ["International Economics", "International Finance"], "program" : ["International Finance and Macroeconomics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nThe paper argues that the reason real world fixed exchange rate regimes usually have finite bands instead of completely fixed exchange rates between realignments is that exchange rate bands, counter to the textbook result, give central banks some monetary independence, even with free international capital mobility. The nature and amount of monetary independence is specified, informally, and in a formal model, and quantified with Swedish krona data. Altogether the amount of monetary independence appears sizable. For instance, an increase in the Swedish krona band from zero to about plus or minus two percent may reduce the krona interest rate's standard deviation by about one-half.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"accounts": {"type": "null"}, "annual_return": {"type": "null"}, "branch_company_details": {"type": "null"}, "can_file": {"type": "null"}, "company_name": {"type": "null"}, "company_number": {"type": "string"}, "company_status": {"type": "null"}, "company_status_detail": {"type": "null"}, "confirmation_statement": {"type": "null"}, "date_of_cessation": {"type": "null"}, "date_of_creation": {"type": "null"}, "etag": {"type": "null"}, "external_registration_number": {"type": "null"}, "foreign_company_details": {"type": "null"}, "has_been_liquidated": {"type": "null"}, "has_charges": {"type": "null"}, "has_insolvency_history": {"type": "null"}, "is_community_interest_company": {"type": "null"}, "jurisdiction": {"type": "null"}, "last_full_members_list_date": {"type": "null"}, "links": {"type": "object", "properties": {"charges": {"type": "string"}}, "required": ["charges"]}, "previous_company_names": {"type": "null"}, "registered_office_address": {"type": "null"}, "registered_office_is_in_dispute": {"type": "null"}, "sic_codes": {"type": "null"}, "subtype": {"type": "null"}, "type": {"type": "null"}, "undeliverable_registered_office_address": {"type": "null"}}, "required": ["accounts", "annual_return", "branch_company_details", "can_file", "company_name", "company_number", "company_status", "company_status_detail", "confirmation_statement", "date_of_cessation", "date_of_creation", "etag", "external_registration_number", "foreign_company_details", "has_been_liquidated", "has_charges", "has_insolvency_history", "is_community_interest_company", "jurisdiction", "last_full_members_list_date", "links", "previous_company_names", "registered_office_address", "registered_office_is_in_dispute", "sic_codes", "subtype", "type", "undeliverable_registered_office_address"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"accounts" : null, "annual_return" : null, "branch_company_details" : null, "can_file" : null, "company_name" : null, "company_number" : "%s", "company_status" : null, "company_status_detail" : null, "confirmation_statement" : null, "date_of_cessation" : null, "date_of_creation" : null, "etag" : null, "external_registration_number" : null, "foreign_company_details" : null, "has_been_liquidated" : null, "has_charges" : null, "has_insolvency_history" : null, "is_community_interest_company" : null, "jurisdiction" : null, "last_full_members_list_date" : null, "links" : {"charges" : "/company/%s/charges"}, "previous_company_names" : null, "registered_office_address" : null, "registered_office_is_in_dispute" : null, "sic_codes" : null, "subtype" : null, "type" : null, "undeliverable_registered_office_address" : null}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"accounts": {"type": "null"}, "annual_return": {"type": "null"}, "branch_company_details": {"type": "null"}, "can_file": {"type": "null"}, "company_name": {"type": "null"}, "company_number": {"type": "string"}, "company_status": {"type": "null"}, "company_status_detail": {"type": "null"}, "confirmation_statement": {"type": "null"}, "date_of_cessation": {"type": "null"}, "date_of_creation": {"type": "null"}, "etag": {"type": "null"}, "external_registration_number": {"type": "null"}, "foreign_company_details": {"type": "null"}, "has_been_liquidated": {"type": "null"}, "has_charges": {"type": "null"}, "has_insolvency_history": {"type": "null"}, "is_community_interest_company": {"type": "null"}, "jurisdiction": {"type": "null"}, "last_full_members_list_date": {"type": "null"}, "links": {"type": "object", "properties": {"charges": {"type": "string"}}, "required": ["charges"]}, "previous_company_names": {"type": "null"}, "registered_office_address": {"type": "null"}, "registered_office_is_in_dispute": {"type": "null"}, "sic_codes": {"type": "null"}, "subtype": {"type": "null"}, "type": {"type": "null"}, "undeliverable_registered_office_address": {"type": "null"}}, "required": ["accounts", "annual_return", "branch_company_details", "can_file", "company_name", "company_number", "company_status", "company_status_detail", "confirmation_statement", "date_of_cessation", "date_of_creation", "etag", "external_registration_number", "foreign_company_details", "has_been_liquidated", "has_charges", "has_insolvency_history", "is_community_interest_company", "jurisdiction", "last_full_members_list_date", "links", "previous_company_names", "registered_office_address", "registered_office_is_in_dispute", "sic_codes", "subtype", "type", "undeliverable_registered_office_address"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 2032, "group" : "24302120", "joblink" : true, "name" : "Verzinker/in", "potential" : 100, "skills" : [{"id" : 61532, "skill" : "Feuerverzinken", "replaceable" : true}, {"id" : 61535, "skill" : "Galvanisieren", "replaceable" : true}, {"id" : 61548, "skill" : "Oberfl\u00e4chentechnik", "replaceable" : true}, {"id" : 61557, "skill" : "Verzinken", "replaceable" : true}, {"id" : 61625, "skill" : "Schmelztechnik (Metall)", "replaceable" : true}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replaceable": {"type": "boolean"}}, "required": ["id", "skill", "replaceable"]}}}, "required": ["id", "group", "joblink", "name", "potential", "skills"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"h_std_he_2955_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_lay_he_2955_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}}, "required": ["h_std_he_2955_0_0", "h_std_he_2955_1_0", "h_std_he_2955_2_0", "h_std_he_2955_3_0", "h_std_he_2955_7_0", "h_lay_he_2955_2_0"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h_std_he_2955_0_0" : {"x" : "-20", "y" : "112", "flipped" : false}, "h_std_he_2955_1_0" : {"x" : "-20", "y" : "112", "flipped" : true}, "h_std_he_2955_2_0" : {"x" : "-21", "y" : "112", "flipped" : true}, "h_std_he_2955_3_0" : {"x" : "-21", "y" : "111", "flipped" : true}, "h_std_he_2955_7_0" : {"x" : "-21", "y" : "111", "flipped" : true}, "h_lay_he_2955_2_0" : {"x" : "21", "y" : "66", "flipped" : true}} | json_instruct | {"type": "object", "properties": {"h_std_he_2955_0_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_1_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_3_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_std_he_2955_7_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}, "h_lay_he_2955_2_0": {"type": "object", "properties": {"x": {"type": "string"}, "y": {"type": "string"}, "flipped": {"type": "boolean"}}, "required": ["x", "y", "flipped"]}}, "required": ["h_std_he_2955_0_0", "h_std_he_2955_1_0", "h_std_he_2955_2_0", "h_std_he_2955_3_0", "h_std_he_2955_7_0", "h_lay_he_2955_2_0"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : 78087, "cartId" : "251c7d3c-80ab-4e40-9439-485db8b28c94", "preferredProducts" : [4343, 955, 4330, 4388, 2316, 2228, 1452, 4921], "productReviews" : [{"productId" : 4161, "reviewText" : "i use it barely when i'm in my store.", "reviewDate" : "2016-06-10T13:28:56.5762598+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": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"lukaz32": {"type": "string"}}, "required": ["lukaz32"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "swift_version", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "CreditCardEvaluator", "version" : "0.1.0", "summary" : "A tiny library for validating credit card numbers.", "description" : "A tiny library for validating credit card numbers according to Luhn's Algorithm.", "homepage" : "https://github.com/Lukaz32/credit-card-evaluator", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"lukaz32" : "lucasmp.at@gmail.com"}, "source" : {"git" : "https://github.com/Lukaz32/credit-card-evaluator.git", "tag" : "0.1.0"}, "platforms" : {"ios" : "8.0"}, "swift_version" : "5.0", "source_files" : "CreditCardEvaluator/Classes/**/*"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"lukaz32": {"type": "string"}}, "required": ["lukaz32"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "swift_version", "source_files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "opening_hours", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/5592831198", "properties" : {"name" : "Ferme de Ch\u00eavre Roche", "opening_hours" : "th-sa 13:00-19:00", "shop" : "farm", "id" : "node/5592831198"}, "geometry" : {"type" : "Point", "coordinates" : [6.7129777, 48.0393292]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "opening_hours": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "opening_hours", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dart.flutterSdkPath": {"type": "string"}}, "required": ["dart.flutterSdkPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dart.flutterSdkPath" : "/Users/qoli/GitHub/FileStorage/.fvm/flutter_sdk"} | json_instruct | {"type": "object", "properties": {"dart.flutterSdkPath": {"type": "string"}}, "required": ["dart.flutterSdkPath"], "$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"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"@types/pouchdb": {"type": "string"}, "@types/pouchdb-find": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/pouchdb", "@types/pouchdb-find", "typescript"]}, "dependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "node": {"type": "string"}, "pouchdb": {"type": "string"}, "pouchdb-find": {"type": "string"}, "pouchdb-silverlining": {"type": "string"}, "relational-pouch": {"type": "string"}}, "required": ["browserify", "node", "pouchdb", "pouchdb-find", "pouchdb-silverlining", "relational-pouch"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "website", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"build" : "rm -rf ./build/ && rm -rf ./src/website/js/ && yarn tsc && yarn run browserify build/ts/main.js -o src/website/js/main.js"}, "devDependencies" : {"@types/pouchdb" : "^6.4.0", "@types/pouchdb-find" : "^6.3.6", "typescript" : "^4.0.3"}, "dependencies" : {"browserify" : "^17.0.0", "node" : "^15.3.0", "pouchdb" : "^7.2.2", "pouchdb-find" : "^7.2.2", "pouchdb-silverlining" : "^0.1.0", "relational-pouch" : "^4.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "devDependencies": {"type": "object", "properties": {"@types/pouchdb": {"type": "string"}, "@types/pouchdb-find": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/pouchdb", "@types/pouchdb-find", "typescript"]}, "dependencies": {"type": "object", "properties": {"browserify": {"type": "string"}, "node": {"type": "string"}, "pouchdb": {"type": "string"}, "pouchdb-find": {"type": "string"}, "pouchdb-silverlining": {"type": "string"}, "relational-pouch": {"type": "string"}}, "required": ["browserify", "node", "pouchdb", "pouchdb-find", "pouchdb-silverlining", "relational-pouch"]}}, "required": ["name", "version", "main", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "latest": {"type": "string"}, "repository": {"type": "string"}, "url": {"type": "string"}, "shortDescription": {"type": "string"}, "category": {"type": "string"}, "author": {"type": "string"}, "commercial": {"type": "boolean"}, "date": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"tweakVersion": {"type": "string"}, "iOSVersion": {"type": "string"}, "repository": {"type": "string"}, "date": {"type": "string"}, "outcome": {"type": "object", "properties": {"calculatedStatus": {"type": "string"}, "percentage": {"type": "integer"}, "good": {"type": "integer"}, "bad": {"type": "integer"}, "total": {"type": "integer"}, "arch32": {"type": "object", "properties": {"total": {"type": "integer"}, "good": {"type": "integer"}, "bad": {"type": "integer"}, "percentage": {"type": "integer"}, "calculatedStatus": {"type": "string"}}, "required": ["total", "good", "bad", "percentage", "calculatedStatus"]}}, "required": ["calculatedStatus", "percentage", "good", "bad", "total", "arch32"]}, "users": {"type": "array", "items": {"type": "object", "properties": {"status": {"type": "string"}, "device": {"type": "string"}, "issues": {"type": "string"}, "date": {"type": "string"}, "userName": {"type": "string"}, "issueNumber": {"type": "integer"}, "arch32": {"type": "boolean"}}, "required": ["status", "device", "issues", "date", "userName", "issueNumber", "arch32"]}}}, "required": ["tweakVersion", "iOSVersion", "repository", "date", "outcome", "users"]}}}, "required": ["id", "name", "latest", "repository", "url", "shortDescription", "category", "author", "commercial", "date", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "com.jammytea.musicwall", "name" : "Music wall", "latest" : "1.0", "repository" : "Jammytea's repo", "url" : "http://cydia.saurik.com/package/com.jammytea.musicwall/", "shortDescription" : "A home and lock screen music background widgets", "category" : "Widgets", "author" : "jammytea", "commercial" : false, "date" : "2018-09-14T15:23:35Z", "versions" : [{"tweakVersion" : "1.0", "iOSVersion" : "11.2.2", "repository" : "Jammytea's repo", "date" : "2018-09-14T15:23:35Z", "outcome" : {"calculatedStatus" : "Working", "percentage" : 100, "good" : 1, "bad" : 0, "total" : 1, "arch32" : {"total" : 0, "good" : 0, "bad" : 0, "percentage" : 0, "calculatedStatus" : "Unknown"}}, "users" : [{"status" : "working", "device" : "iPhone10,5", "issues" : "", "date" : "2018-09-14T15:22:35Z", "userName" : "jammytea", "issueNumber" : 50384, "arch32" : false}]}, {"tweakVersion" : "1.0", "iOSVersion" : "12.1.2", "repository" : "Jammytea's repo", "date" : "2019-03-27T20:40:01Z", "outcome" : {"calculatedStatus" : "Working", "percentage" : 100, "good" : 1, "bad" : 0, "total" : 1, "arch32" : {"total" : 0, "good" : 0, "bad" : 0, "percentage" : 0, "calculatedStatus" : "Unknown"}}, "users" : [{"status" : "working", "device" : "iPhone10,5", "issues" : "", "date" : "2019-03-27T20:40:01Z", "userName" : "jammytea", "issueNumber" : 81184, "arch32" : false}]}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "latest": {"type": "string"}, "repository": {"type": "string"}, "url": {"type": "string"}, "shortDescription": {"type": "string"}, "category": {"type": "string"}, "author": {"type": "string"}, "commercial": {"type": "boolean"}, "date": {"type": "string"}, "versions": {"type": "array", "items": {"type": "object", "properties": {"tweakVersion": {"type": "string"}, "iOSVersion": {"type": "string"}, "repository": {"type": "string"}, "date": {"type": "string"}, "outcome": {"type": "object", "properties": {"calculatedStatus": {"type": "string"}, "percentage": {"type": "integer"}, "good": {"type": "integer"}, "bad": {"type": "integer"}, "total": {"type": "integer"}, "arch32": {"type": "object", "properties": {"total": {"type": "integer"}, "good": {"type": "integer"}, "bad": {"type": "integer"}, "percentage": {"type": "integer"}, "calculatedStatus": {"type": "string"}}, "required": ["total", "good", "bad", "percentage", "calculatedStatus"]}}, "required": ["calculatedStatus", "percentage", "good", "bad", "total", "arch32"]}, "users": {"type": "array", "items": {"type": "object", "properties": {"status": {"type": "string"}, "device": {"type": "string"}, "issues": {"type": "string"}, "date": {"type": "string"}, "userName": {"type": "string"}, "issueNumber": {"type": "integer"}, "arch32": {"type": "boolean"}}, "required": ["status", "device", "issues", "date", "userName", "issueNumber", "arch32"]}}}, "required": ["tweakVersion", "iOSVersion", "repository", "date", "outcome", "users"]}}}, "required": ["id", "name", "latest", "repository", "url", "shortDescription", "category", "author", "commercial", "date", "versions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"css/tableexport.css": {"type": "string"}, "css/tableexport.min.css": {"type": "string"}, "js/tableexport.js": {"type": "string"}, "js/tableexport.min.js": {"type": "string"}}, "required": ["css/tableexport.css", "css/tableexport.min.css", "js/tableexport.js", "js/tableexport.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/tableexport.css" : "sha256-3kWN2cUL0cL02R8HFLapE0ghPakzQGSE6CgmfHZofl8=", "css/tableexport.min.css" : "sha256-YhYwub+U5KdoeThmXxqFiOKSBRDAknSrrt+6HJ7Sr7g=", "js/tableexport.js" : "sha256-roxCkP3G8JedBRDoXJb7rGJGFbG3ddrr+nWgvWOeN8A=", "js/tableexport.min.js" : "sha256-RSQyUDkD1YW3PjAgKl6a3f1xv7y8QP6zRt8yjt6QcIg="} | json_instruct | {"type": "object", "properties": {"css/tableexport.css": {"type": "string"}, "css/tableexport.min.css": {"type": "string"}, "js/tableexport.js": {"type": "string"}, "js/tableexport.min.js": {"type": "string"}}, "required": ["css/tableexport.css", "css/tableexport.min.css", "js/tableexport.js", "js/tableexport.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.375, 20.25], [142.375, 20.333333333333332], [142.5, 20.333333333333332], [142.5, 20.25], [142.375, 20.25]]]}, "properties" : {"code" : 304233, "url" : "http://madefor.github.io/0410/api/v1/304233.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/304233.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"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" : 76747, "cartId" : "61d8d718-64de-4f64-80c3-85ecab45fa66", "preferredProducts" : [2095, 3301, 2024, 2456, 735, 3755, 4856, 3132, 3319], "productReviews" : [{"productId" : 3582, "reviewText" : "My co-worker Delton has one of these. He says it looks slender.", "reviewDate" : "2019-10-20T14:27:58.570395+03:00"}, {"productId" : 1792, "reviewText" : "this Computers is amiable.", "reviewDate" : "2020-04-11T20:33:07.0439804+03:00"}, {"productId" : 4690, "reviewText" : "I saw one of these in Spratly Islands and I bought one.", "reviewDate" : "2019-11-10T06:44:14.3325428+02:00"}, {"productId" : 1078, "reviewText" : "My velociraptor loves to play with it.", "reviewDate" : "2016-09-14T13:59:21.0628905+03:00"}, {"productId" : 2591, "reviewText" : "I tried to manhandle it but got bun all over it.", "reviewDate" : "2017-10-12T10:34:42.7813868+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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "pokecube:block/nanab_fence_inventory"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"slim/slim": {"type": "string"}, "irap/autoloader": {"type": "string"}, "irap/core-libs": {"type": "string"}, "irap/mysql-objects": {"type": "string"}, "irap/migrations": {"type": "string"}, "programster/guzzle-wrapper": {"type": "string"}, "programster/orm-generator": {"type": "string"}, "symfony/dotenv": {"type": "string"}}, "required": ["slim/slim", "irap/autoloader", "irap/core-libs", "irap/mysql-objects", "irap/migrations", "programster/guzzle-wrapper", "programster/orm-generator", "symfony/dotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"slim/slim" : "^3.11", "irap/autoloader" : "^1.0", "irap/core-libs" : "^1.1", "irap/mysql-objects" : "^3.2", "irap/migrations" : "^1.0", "programster/guzzle-wrapper" : "^1.0", "programster/orm-generator" : "^0.1.0", "symfony/dotenv" : "^3.4"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"slim/slim": {"type": "string"}, "irap/autoloader": {"type": "string"}, "irap/core-libs": {"type": "string"}, "irap/mysql-objects": {"type": "string"}, "irap/migrations": {"type": "string"}, "programster/guzzle-wrapper": {"type": "string"}, "programster/orm-generator": {"type": "string"}, "symfony/dotenv": {"type": "string"}}, "required": ["slim/slim", "irap/autoloader", "irap/core-libs", "irap/mysql-objects", "irap/migrations", "programster/guzzle-wrapper", "programster/orm-generator", "symfony/dotenv"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"build": {"type": "object", "properties": {"env": {"type": "object", "properties": {"GATSBY_FIREBASE_API_KEY": {"type": "string"}, "GATSBY_FIREBASE_AUTH_DOMAIN": {"type": "string"}, "GATSBY_FIREBASE_DATABASE_URL": {"type": "string"}, "GATSBY_FIREBASE_PROJECT_ID": {"type": "string"}, "GATSBY_FIREBASE_STORAGE_BUCKET": {"type": "string"}, "GATSBY_FIREBASE_MESSAGING_SENDER_ID": {"type": "string"}, "GATSBY_FIREBASE_APP_ID": {"type": "string"}, "GATSBY_FIREBASE_MEASUREMENT_ID": {"type": "string"}}, "required": ["GATSBY_FIREBASE_API_KEY", "GATSBY_FIREBASE_AUTH_DOMAIN", "GATSBY_FIREBASE_DATABASE_URL", "GATSBY_FIREBASE_PROJECT_ID", "GATSBY_FIREBASE_STORAGE_BUCKET", "GATSBY_FIREBASE_MESSAGING_SENDER_ID", "GATSBY_FIREBASE_APP_ID", "GATSBY_FIREBASE_MEASUREMENT_ID"]}}, "required": ["env"]}, "env": {"type": "object", "properties": {"GATSBY_FIREBASE_API_KEY": {"type": "string"}, "GATSBY_FIREBASE_AUTH_DOMAIN": {"type": "string"}, "GATSBY_FIREBASE_DATABASE_URL": {"type": "string"}, "GATSBY_FIREBASE_PROJECT_ID": {"type": "string"}, "GATSBY_FIREBASE_STORAGE_BUCKET": {"type": "string"}, "GATSBY_FIREBASE_MESSAGING_SENDER_ID": {"type": "string"}, "GATSBY_FIREBASE_APP_ID": {"type": "string"}, "GATSBY_FIREBASE_MEASUREMENT_ID": {"type": "string"}}, "required": ["GATSBY_FIREBASE_API_KEY", "GATSBY_FIREBASE_AUTH_DOMAIN", "GATSBY_FIREBASE_DATABASE_URL", "GATSBY_FIREBASE_PROJECT_ID", "GATSBY_FIREBASE_STORAGE_BUCKET", "GATSBY_FIREBASE_MESSAGING_SENDER_ID", "GATSBY_FIREBASE_APP_ID", "GATSBY_FIREBASE_MEASUREMENT_ID"]}}, "required": ["build", "env"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"build" : {"env" : {"GATSBY_FIREBASE_API_KEY" : "@gatsby_firebase_api_key", "GATSBY_FIREBASE_AUTH_DOMAIN" : "@gatsby_firebase_auth_domain", "GATSBY_FIREBASE_DATABASE_URL" : "@gatsby_firebase_database_url", "GATSBY_FIREBASE_PROJECT_ID" : "@gatsby_firebase_project_id", "GATSBY_FIREBASE_STORAGE_BUCKET" : "@gatsby_firebase_storage_bucket", "GATSBY_FIREBASE_MESSAGING_SENDER_ID" : "@gatsby_firebase_messaging_sender_id", "GATSBY_FIREBASE_APP_ID" : "@gatsby_firebase_app_id", "GATSBY_FIREBASE_MEASUREMENT_ID" : "@gatsby_firebase_measurement_id"}}, "env" : {"GATSBY_FIREBASE_API_KEY" : "@gatsby_firebase_api_key", "GATSBY_FIREBASE_AUTH_DOMAIN" : "@gatsby_firebase_auth_domain", "GATSBY_FIREBASE_DATABASE_URL" : "@gatsby_firebase_database_url", "GATSBY_FIREBASE_PROJECT_ID" : "@gatsby_firebase_project_id", "GATSBY_FIREBASE_STORAGE_BUCKET" : "@gatsby_firebase_storage_bucket", "GATSBY_FIREBASE_MESSAGING_SENDER_ID" : "@gatsby_firebase_messaging_sender_id", "GATSBY_FIREBASE_APP_ID" : "@gatsby_firebase_app_id", "GATSBY_FIREBASE_MEASUREMENT_ID" : "@gatsby_firebase_measurement_id"}} | json_instruct | {"type": "object", "properties": {"build": {"type": "object", "properties": {"env": {"type": "object", "properties": {"GATSBY_FIREBASE_API_KEY": {"type": "string"}, "GATSBY_FIREBASE_AUTH_DOMAIN": {"type": "string"}, "GATSBY_FIREBASE_DATABASE_URL": {"type": "string"}, "GATSBY_FIREBASE_PROJECT_ID": {"type": "string"}, "GATSBY_FIREBASE_STORAGE_BUCKET": {"type": "string"}, "GATSBY_FIREBASE_MESSAGING_SENDER_ID": {"type": "string"}, "GATSBY_FIREBASE_APP_ID": {"type": "string"}, "GATSBY_FIREBASE_MEASUREMENT_ID": {"type": "string"}}, "required": ["GATSBY_FIREBASE_API_KEY", "GATSBY_FIREBASE_AUTH_DOMAIN", "GATSBY_FIREBASE_DATABASE_URL", "GATSBY_FIREBASE_PROJECT_ID", "GATSBY_FIREBASE_STORAGE_BUCKET", "GATSBY_FIREBASE_MESSAGING_SENDER_ID", "GATSBY_FIREBASE_APP_ID", "GATSBY_FIREBASE_MEASUREMENT_ID"]}}, "required": ["env"]}, "env": {"type": "object", "properties": {"GATSBY_FIREBASE_API_KEY": {"type": "string"}, "GATSBY_FIREBASE_AUTH_DOMAIN": {"type": "string"}, "GATSBY_FIREBASE_DATABASE_URL": {"type": "string"}, "GATSBY_FIREBASE_PROJECT_ID": {"type": "string"}, "GATSBY_FIREBASE_STORAGE_BUCKET": {"type": "string"}, "GATSBY_FIREBASE_MESSAGING_SENDER_ID": {"type": "string"}, "GATSBY_FIREBASE_APP_ID": {"type": "string"}, "GATSBY_FIREBASE_MEASUREMENT_ID": {"type": "string"}}, "required": ["GATSBY_FIREBASE_API_KEY", "GATSBY_FIREBASE_AUTH_DOMAIN", "GATSBY_FIREBASE_DATABASE_URL", "GATSBY_FIREBASE_PROJECT_ID", "GATSBY_FIREBASE_STORAGE_BUCKET", "GATSBY_FIREBASE_MESSAGING_SENDER_ID", "GATSBY_FIREBASE_APP_ID", "GATSBY_FIREBASE_MEASUREMENT_ID"]}}, "required": ["build", "env"], "$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"}, "objects": {"type": "object", "properties": {"E01002880": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002880"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01002880" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00014443", "LAD11CD" : "E09000020"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00014444", "LAD11CD" : "E09000020"}, "arcs" : [[3, 4, -2, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00014466", "LAD11CD" : "E09000020"}, "arcs" : [[6, 7]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00014467", "LAD11CD" : "E09000020"}, "arcs" : [[-6, -1, 8, 9]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00014469", "LAD11CD" : "E09000020"}, "arcs" : [[-7, 10, -4, -10, 11]]}]}}, "arcs" : [[[4293, 459], [2389, 3087], [-1535, 1483]], [[5147, 5029], [4651, -882]], [[9798, 4147], [201, -658], [-2159, -399], [-1698, -2163], [-1849, -468]], [[4901, 5156], [2556, 1957]], [[7457, 7113], [1642, -214], [699, -2752]], [[5147, 5029], [-246, 127]], [[4712, 7446], [-3254, 390]], [[1458, 7836], [-1458, 349], [73, 1518], [3146, 296], [3074, -47], [2975, -1427], [-4556, -1079]], [[4293, 459], [-1842, -459], [74, 3022]], [[2525, 3022], [2376, 2134]], [[4712, 7446], [2745, -333]], [[2525, 3022], [-549, -149], [633, 1104], [-1201, -52], [-1111, 1557], [722, 713], [439, 1641]]], "transform" : {"scale" : [3.683735871271125e-07, 3.564046660198512e-07], "translate" : [-0.218699794912841, 51.51232826548673]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01002880": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01002880"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"month" : "1", "num" : 2407, "link" : "", "year" : "2021", "news" : "", "safe_title" : "Depth and Breadth", "transcript" : "", "alt" : "A death-first search is when you lose your keys and travel to the depths of hell to find them, and then if they're not there you start checking your coat pockets.", "img" : "https://imgs.xkcd.com/comics/depth_and_breadth.png", "title" : "Depth and Breadth", "day" : "4", "mirror_img" : "https://raw.githubusercontent.com/aghontpi/mirror-xkcd-api/main/api/2407/depth_and_breadth.png"} | json_instruct | {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "string"}, "day": {"type": "string"}, "mirror_img": {"type": "string"}}, "required": ["month", "num", "link", "year", "news", "safe_title", "transcript", "alt", "img", "title", "day", "mirror_img"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-red-contrib-jwt": {"type": "string"}, "node-red-contrib-md5": {"type": "string"}, "node-red-contrib-uuid": {"type": "string"}, "node-red-node-email": {"type": "string"}, "node-red-node-mysql": {"type": "string"}}, "required": ["node-red-contrib-jwt", "node-red-contrib-md5", "node-red-contrib-uuid", "node-red-node-email", "node-red-node-mysql"]}}, "required": ["name", "description", "version", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-red-project", "description" : "A Node-RED Project", "version" : "0.0.1", "private" : true, "dependencies" : {"node-red-contrib-jwt" : "^0.1.0", "node-red-contrib-md5" : "^1.0.4", "node-red-contrib-uuid" : "0.0.4", "node-red-node-email" : "^1.8.2", "node-red-node-mysql" : "^0.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"node-red-contrib-jwt": {"type": "string"}, "node-red-contrib-md5": {"type": "string"}, "node-red-contrib-uuid": {"type": "string"}, "node-red-node-email": {"type": "string"}, "node-red-node-mysql": {"type": "string"}}, "required": ["node-red-contrib-jwt", "node-red-contrib-md5", "node-red-contrib-uuid", "node-red-node-email", "node-red-node-mysql"]}}, "required": ["name", "description", "version", "private", "dependencies"], "$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"}, "name": {"type": "string"}, "description": {"type": "string"}, "licence": {"type": "string"}, "author": {"type": "string"}, "require": {"type": "string"}, "category": {"type": "string"}, "hasDependency": {"type": "boolean"}, "hasOwnDeamon": {"type": "boolean"}, "maxDependancyInstallTime": {"type": "integer"}}, "required": ["id", "name", "description", "licence", "author", "require", "category", "hasDependency", "hasOwnDeamon", "maxDependancyInstallTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "pushbullet", "name" : "PushBullet", "description" : "Plugin pour utiliser PushBullet", "licence" : "AGPL", "author" : "St\u00e9phane Cazeaux", "require" : "3.0", "category" : "communication", "hasDependency" : false, "hasOwnDeamon" : true, "maxDependancyInstallTime" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "licence": {"type": "string"}, "author": {"type": "string"}, "require": {"type": "string"}, "category": {"type": "string"}, "hasDependency": {"type": "boolean"}, "hasOwnDeamon": {"type": "boolean"}, "maxDependancyInstallTime": {"type": "integer"}}, "required": ["id", "name", "description", "licence", "author", "require", "category", "hasDependency", "hasOwnDeamon", "maxDependancyInstallTime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01d"}], "base" : "stations", "main" : {"temp" : 11.77, "feels_like" : 9.97, "temp_min" : 10.06, "temp_max" : 12.18, "pressure" : 1025, "humidity" : 37, "sea_level" : 1025, "grnd_level" : 989}, "visibility" : 10000, "wind" : {"speed" : 2.04, "deg" : 147, "gust" : 2.21}, "clouds" : {"all" : 0}, "dt" : 1646831226, "sys" : {"type" : 2, "id" : 2021121, "country" : "DE", "sunrise" : 1646804771, "sunset" : 1646845873}, "timezone" : 3600, "id" : 2921044, "name" : "Germany", "cod" : 200} | json_instruct | {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "number"}, "feels_like": {"type": "number"}, "temp_min": {"type": "number"}, "temp_max": {"type": "number"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}, "sea_level": {"type": "integer"}, "grnd_level": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity", "sea_level", "grnd_level"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}, "gust": {"type": "number"}}, "required": ["speed", "deg", "gust"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$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"}, "scripts": {"type": "object", "properties": {"parse-typo": {"type": "string"}}, "required": ["parse-typo"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@types/node", "ts-node"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "misc", "version" : "0.0.1", "private" : true, "scripts" : {"parse-typo" : "ts-node src/typography_parser.ts"}, "dependencies" : {}, "devDependencies" : {"@types/node" : "^12.7.11", "ts-node" : "^8.4.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"parse-typo": {"type": "string"}}, "required": ["parse-typo"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@types/node", "ts-node"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import React from'react';import'./App.css';function App(){return React.createElement(\"div\",null,React.createElement(App,null));}export default App;", "map" : {"version" : 3, "sources" : ["/Users/maverick/Documents/CodingProjects/Fitbit Client/fitbit-client/src/App.js"], "names" : ["React", "App"], "mappings" : "AAAA,MAAOA,CAAAA,KAAP,KAAkB,OAAlB,CACA,MAAO,WAAP,CAEA,QAASC,CAAAA,GAAT,EAAe,CACb,MACE,gCACE,oBAAC,GAAD,MADF,CADF,CAKD,CAED,cAAeA,CAAAA,GAAf", "sourcesContent" : ["import React from 'react';\nimport './App.css';\n\nfunction App() {\n return (\n <div>\n <App/>\n </div>\n );\n}\n\nexport default App;\n"]}, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x36456d4eefe285cca74f8d67a19f59083e34218f", "tool" : "honeybadger", "start" : 1565858647.6979525, "end" : 1565858654.4181535, "duration" : 6.720201015472412, "analysis" : [{"errors" : [], "file" : "/unique_chucks/16/0x36456d4eefe285cca74f8d67a19f59083e34218f.sol", "name" : "Multidrop"}, {"errors" : [], "file" : "/unique_chucks/16/0x36456d4eefe285cca74f8d67a19f59083e34218f.sol", "name" : "Ownable"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "The label says 'Vivid Crimson', but it looks like pink to me!", "bonuses" : [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "realPrice" : 48} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "Another possible \"River5\" problem. For the last two days the NYT Daily podcast hasn't shown up on \"podcatch.com\". I was willing to write it off as a one-time glitch yesterday, but when it happened again today, I'm starting to get concerned. Here's the <a href=\"http://www.feedvalidator.org/check.cgi?url=http%3A%2F%2Frss.art19.com%2Fthe-daily\">feedvalidator</a> link to the feed. As you can see it's saying it's not valid, but I also fed it through my own <a href=\"https://github.com/scripting/nodeFeedDebug\">feed debugger</a>, which exactly mimicks what River5 does with feeds, and it seems okay with it. I'm starting a <a href=\"https://github.com/scripting/Scripting-News/issues/62\">thread</a> for this. ", "created" : "Tue, 23 Jan 2018 18:04:49 GMT", "type" : "outline"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}}, "required": ["text", "created", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "1845_cam-image_array_.jpg", "user/throttle" : 0.0, "user/angle" : 0.1545121818780899, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "user/angle", "user/mode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rewards": {"type": "object", "properties": {"recipes": {"type": "array", "items": {"type": "string"}}}, "required": ["recipes"]}, "criteria": {"type": "object", "properties": {"has_crystal_ice": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}}, "required": ["items"]}}, "required": ["trigger", "conditions"]}}, "required": ["has_crystal_ice"]}, "requirements": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rewards", "criteria", "requirements"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rewards" : {"recipes" : ["elementalitems:feet_ice", "elementalitems:legs_ice", "elementalitems:chest_ice", "elementalitems:head_ice", "elementalitems:sword_ice", "elementalitems:shovel_ice", "elementalitems:axe_ice", "elementalitems:pickaxe_ice", "elementalitems:arrow_ice", "elementalitems:block_crystal_ice"]}, "criteria" : {"has_crystal_ice" : {"trigger" : "minecraft:inventory_changed", "conditions" : {"items" : [{"item" : "elementalitems:crystal_ice"}]}}}, "requirements" : [["has_crystal_ice"]]} | json_instruct | {"type": "object", "properties": {"rewards": {"type": "object", "properties": {"recipes": {"type": "array", "items": {"type": "string"}}}, "required": ["recipes"]}, "criteria": {"type": "object", "properties": {"has_crystal_ice": {"type": "object", "properties": {"trigger": {"type": "string"}, "conditions": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}}, "required": ["items"]}}, "required": ["trigger", "conditions"]}}, "required": ["has_crystal_ice"]}, "requirements": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["rewards", "criteria", "requirements"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[142.375, 36.5], [142.375, 36.583333333333336], [142.5, 36.583333333333336], [142.5, 36.5], [142.375, 36.5]]]}, "properties" : {"code" : 544263, "url" : "http://madefor.github.io/0410/api/v1/544263.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/544263.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["asterisk-services", "bestbuy-hehe", "bestbuy-hehe-test", "gearworks", "hapipass-local", "heli", "housekeeper", "jolly", "nicest", "nodewrite-core-sessions", "pancakes-recipe", "postmile-web", "scheduling-api"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ItsAlwaysSpring": {"type": "array", "items": {"type": "string"}}}, "required": ["ItsAlwaysSpring"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ItsAlwaysSpring" : ["LimitedWardrobe", "DreamingOfAWhiteChristmas", "SnowedIn", "HeatWave", "SoCalization", "DoTheyKnowItsChristmasTime", "ForestOfPerpetualAutumn", "JustifiedTrope", "Anime", "LampshadeHanging", "UnlimitedWardrobe", "NonSerialMovie", "DayInTheLimelight", "AnIcePerson", "JustifiedTrope", "GaiasVengeance", "WordOfGod", "LampshadeHanging", "LampshadeHanging", "LampshadeHanging", "AllThereInTheManual", "TimeSkip", "IdiotHero", "UnlimitedWardrobe", "AllThereInTheManual", "IdiotHero", "AnthropomorphicFood", "AvertedTrope", "ArcWords", "CaliforniaDoubling", "TimeSkip", "PunctuatedForEmphasis", "JustifiedTrope", "CaliforniaDoubling", "ChristmasEpisode", "TheMovie", "WalkingShirtlessScene", "DummiedOut", "InUniverse", "AfterTheEnd", "CrapsackWorld", "JustifiedTrope", "InUniverse", "GameplayAndStorySegregation", "AlternativeCalendar", "InUniverseGameClock", "DummiedOut", "JustifiedTrope", "JustifiedTrope", "GameplayAndStorySegregation", "AlternativeCalendar", "HumongousMecha", "WordOfGod", "WebcomicTime", "Uncancelled", "CutShort", "LampshadeHanging", "ClipShow", "ChristmasEpisode", "LampshadeHanging", "ChristmasEpisode", "OriginsEpisode", "UmbrellaOfTogetherness", "RomanticRain", "WordOfGod", "ClipShow", "SmallSecludedWorld", "TruthInTelevision", "DeathWorld", "SarcasmMode", "SmallSecludedWorld", "DeathWorld", "SarcasmMode", "BeachEpisode", "ComicBookTime", "CaliforniaDoubling", "LimitedWardrobe", "NPC", "GoodBadBugs", "VideoGameRemake", "SceneryPorn", "RealIsBrown", "VideoGameRemake", "SceneryPorn", "DreamingOfAWhiteChristmas", "FlatWorld", "WebcomicTime", "TimeSkip", "ChristmasEpisode", "ExpositoryThemeTune", "ChristmasEpisode", "DreamingOfAWhiteChristmas", "HalloweenEpisode", "ChristmasEpisode", "DuckSeasonRabbitSeason", "AnimatedAdaptation", "SpringIsLate", "ChristmasEpisode", "DreamingOfAWhiteChristmas", "HalloweenEpisode"]} | json_instruct | {"type": "object", "properties": {"ItsAlwaysSpring": {"type": "array", "items": {"type": "string"}}}, "required": ["ItsAlwaysSpring"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 1010, "commit" : "53498669e2ecfb43d0a68c627510919087740873", "date" : "2021-05-04T05:01:08.741Z"}, "versionStart" : {"versionNum" : 1009, "commit" : "054401a92e1698b800cc844b6d56fa6ec7431e90", "date" : "2021-05-04T04:29:32.352Z"}, "changes" : ["blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/info.json", "blockchains/smartchain/assets/0xbcb24AFb019BE7E93EA9C43B7E22Bb55D5B7f45D/logo.png"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/5ac134f5-1859-36ab-948f-4ccd26f9e52b", "expression" : [{"id" : "http://data.doremus.org/expression/33597e61-2579-370c-b374-627830167a64"}, {"id" : "http://data.doremus.org/expression/2c3c9821-0605-3bed-aeed-73e36af55009"}, {"id" : "http://data.doremus.org/expression/867c9e70-c56a-30fe-a284-e11b517bd0e9"}, {"id" : "http://data.doremus.org/expression/07ae8131-d010-3380-9b83-0c893d71118e"}, {"id" : "http://data.doremus.org/expression/0d0d86d0-6157-35ee-8650-b46a68d5299f"}, {"id" : "http://data.doremus.org/expression/03d6eff1-3e29-3686-9d1b-66e19ebf2d3d"}, {"id" : "http://data.doremus.org/expression/332680e7-dd06-3e3a-a511-500a2df867d7"}, {"id" : "http://data.doremus.org/expression/f18a5724-7249-32fc-ac68-3516e7f4f127"}, {"id" : "http://data.doremus.org/expression/52d9be71-24a9-3d53-9c18-1c92c8e5dd3f"}, {"id" : "http://data.doremus.org/expression/43ff6fd7-7643-3d5a-aaa4-cb0cf84283a1"}, {"id" : "http://data.doremus.org/expression/b1126b4b-4d20-3c27-b3f1-5e5f06a1a622"}, {"id" : "http://data.doremus.org/expression/b6a100ab-be80-3225-9a35-5bacacfee8dd"}, {"id" : "http://data.doremus.org/expression/a32b895f-d7ae-30b0-9341-4122d216c8de"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "communities/W04000645.json", "poly" : "-3.6714939999999388 51.471276,-3.6677170000000388 51.479188,-3.6677170000000388 51.483464,-3.6560440000000654 51.484533,-3.6550139999999374 51.490092,-3.659477000000038 51.493084,-3.6608509999999796 51.502702,-3.6680599999999686 51.502702,-3.6687469999999394 51.498642,-3.673897000000011 51.498428,-3.6756129999999985 51.504412,-3.679732999999942 51.509754,-3.6927799999999706 51.506549,-3.7047959999999875 51.50548,-3.714751999999976 51.501206,-3.7363820000000487 51.499496,-3.7363820000000487 51.47876,-3.7039379999999937 51.472879697651884,-3.6714939999999388 51.471276"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "poly": {"type": "string"}}, "required": ["id", "poly"], "$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"}, "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": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "pastafarian", "description" : "A tiny event emitter-based finite state machine", "main" : "pastafarian.js", "authors" : ["Patrik Johnson <patrik@zebros.fi>"], "license" : "ISC", "keywords" : ["statemachine", "fsm", "state", "event"], "homepage" : "https://github.com/orbitbot/pastafarian", "moduleType" : ["globals"], "ignore" : [".*", "*.json", "README.md", "node_modules", "test"]} | 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": {"type": "string"}}, "ignore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "main", "authors", "license", "keywords", "homepage", "moduleType", "ignore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mqtt": {"type": "string"}}, "required": ["mqtt"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "java-script-simple-mqtt-device", "version" : "1.0.0", "description" : "Java Script examples for the IoT Edge Connect", "main" : "src/app.js", "keywords" : ["akamai", "iec", "iot", "mqtt", "broker"], "author" : "Tomasz Weglinski (tweglins@akamai.com)", "license" : "Apache 2", "dependencies" : {"mqtt" : "^2.18.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mqtt": {"type": "string"}}, "required": ["mqtt"]}}, "required": ["name", "version", "description", "main", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-g2jg-mp3f-m9rj", "modified" : "2022-04-29T03:00:46Z", "published" : "2022-04-29T03:00:46Z", "aliases" : ["CVE-2004-2078"], "details" : "Red-M Red-Alert 2.7.5 with software 3.1 build 24 allows remote attackers to cause a denial of service (reboot and loss of logged events) via a long request to TCP port 80, possibly triggering a buffer overflow.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2004-2078"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/15086"}, {"type" : "WEB", "url" : "http://genhex.org/releases/031003.txt"}, {"type" : "WEB", "url" : "http://marc.info/?l=full-disclosure&m=107635119005407&w=2"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/10832"}, {"type" : "WEB", "url" : "http://securitytracker.com/id?1009001"}, {"type" : "WEB", "url" : "http://www.osvdb.org/3891"}, {"type" : "WEB", "url" : "http://www.securiteam.com/securitynews/5SP0C0KC0A.html"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/353211"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/9618"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"license": {"type": "string"}, "scripts": {"type": "object", "properties": {"examples": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "publish-gh-pages": {"type": "string"}, "write-translations": {"type": "string"}, "version": {"type": "string"}, "rename-version": {"type": "string"}, "compile-scss": {"type": "string"}, "link-lint": {"type": "string"}, "lint": {"type": "string"}}, "required": ["examples", "start", "build", "publish-gh-pages", "write-translations", "version", "rename-version", "compile-scss", "link-lint", "lint"]}, "devDependencies": {"type": "object", "properties": {"docusaurus": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["docusaurus", "node-sass"]}, "dependencies": {"type": "object", "properties": {"fast-glob": {"type": "string"}, "fs-extra": {"type": "string"}, "replace-in-file": {"type": "string"}}, "required": ["fast-glob", "fs-extra", "replace-in-file"]}}, "required": ["license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"license" : "Apache-2.0", "scripts" : {"examples" : "docusaurus-examples", "start" : "docusaurus-start", "build" : "docusaurus-build && node script/do-redirects.js", "publish-gh-pages" : "docusaurus-publish", "write-translations" : "docusaurus-write-translations", "version" : "docusaurus-version", "rename-version" : "docusaurus-rename-version", "compile-scss" : "node-sass scss/custom.scss > static/css/custom.css", "link-lint" : "docusaurus-build && node script/link-lint.js", "lint" : "npm run link-lint"}, "devDependencies" : {"docusaurus" : "^1.12.0", "node-sass" : "^4.12.0"}, "dependencies" : {"fast-glob" : "^3.0.4", "fs-extra" : "^8.1.0", "replace-in-file" : "^4.1.3"}} | json_instruct | {"type": "object", "properties": {"license": {"type": "string"}, "scripts": {"type": "object", "properties": {"examples": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "publish-gh-pages": {"type": "string"}, "write-translations": {"type": "string"}, "version": {"type": "string"}, "rename-version": {"type": "string"}, "compile-scss": {"type": "string"}, "link-lint": {"type": "string"}, "lint": {"type": "string"}}, "required": ["examples", "start", "build", "publish-gh-pages", "write-translations", "version", "rename-version", "compile-scss", "link-lint", "lint"]}, "devDependencies": {"type": "object", "properties": {"docusaurus": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["docusaurus", "node-sass"]}, "dependencies": {"type": "object", "properties": {"fast-glob": {"type": "string"}, "fs-extra": {"type": "string"}, "replace-in-file": {"type": "string"}}, "required": ["fast-glob", "fs-extra", "replace-in-file"]}}, "required": ["license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"sdk": {"type": "object", "properties": {"version": {"type": "string"}, "rollForward": {"type": "string"}}, "required": ["version", "rollForward"]}, "tools": {"type": "object", "properties": {"dotnet": {"type": "string"}}, "required": ["dotnet"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}, "Microsoft.DotNet.Helix.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk", "Microsoft.DotNet.Helix.Sdk"]}}, "required": ["sdk", "tools", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sdk" : {"version" : "5.0.302", "rollForward" : "major"}, "tools" : {"dotnet" : "5.0.302"}, "msbuild-sdks" : {"Microsoft.DotNet.Arcade.Sdk" : "6.0.0-beta.21403.5", "Microsoft.DotNet.Helix.Sdk" : "6.0.0-beta.21403.5"}} | json_instruct | {"type": "object", "properties": {"sdk": {"type": "object", "properties": {"version": {"type": "string"}, "rollForward": {"type": "string"}}, "required": ["version", "rollForward"]}, "tools": {"type": "object", "properties": {"dotnet": {"type": "string"}}, "required": ["dotnet"]}, "msbuild-sdks": {"type": "object", "properties": {"Microsoft.DotNet.Arcade.Sdk": {"type": "string"}, "Microsoft.DotNet.Helix.Sdk": {"type": "string"}}, "required": ["Microsoft.DotNet.Arcade.Sdk", "Microsoft.DotNet.Helix.Sdk"]}}, "required": ["sdk", "tools", "msbuild-sdks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_9256": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9256"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_9256" : {"publicdate" : "2014-10-13 13:57:19", "title" : "Omnilingual"}} | json_instruct | {"type": "object", "properties": {"id_9256": {"type": "object", "properties": {"publicdate": {"type": "string"}, "title": {"type": "string"}}, "required": ["publicdate", "title"]}}, "required": ["id_9256"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"meta": {"type": "object", "properties": {"generated_at": {"type": "string"}, "location": {"type": "string"}, "api_version": {"type": "string"}, "total_events": {"type": "integer"}}, "required": ["generated_at", "location", "api_version", "total_events"]}, "events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "rsvp_count": {"type": "integer"}, "url": {"type": "string"}, "group_id": {"type": "string"}, "group_name": {"type": "string"}, "group_url": {"type": "string"}, "formatted_time": {"type": "string"}, "start_time": {"type": "string"}, "end_time": {"type": "string"}, "platform": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["id", "name", "description", "location", "rsvp_count", "url", "group_id", "group_name", "group_url", "formatted_time", "start_time", "end_time", "platform", "latitude", "longitude"]}}}, "required": ["meta", "events"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"meta" : {"generated_at" : "2017-12-09T03:00:01.786Z", "location" : "Singapore", "api_version" : "v1", "total_events" : 1}, "events" : [{"id" : "1976380459303071", "name" : "STAR WARS | Lightsaber Making for Children: Sith or Jedi?", "description" : "LIMITED SPACES. Can you feel the Force within you? Are you the Last Jedi? Click 'Interested' to stay updated and secure your Lightsaber soon: http://lightsaber09dec.peatix.com/\n\nJoin Din Chan from Madlab in completing your Jedi journey. Learn about electronics and soldering to construct your very own lightsaber.\n\nRecommended for children aged 9 years and above. Youth and adult learners are welcomed. No prior experience needed.\n\n\nTrainer profile:\n\nArtist Din Chan is known to use science and technology in his art work. \nHis work is based on interaction of the audience through movement and their senses.\nHe use everyday item to create his work from a pencil that sings, painting with lights and a musical weighing scale.\n\nHe hopes that his artwork shows how technology can be applied creatively and is not as intimidating and can be fun when applied.\n\nSecure your Lightsaber soon: http://lightsaber09dec.peatix.com/", "location" : "MOX, Katong Point, 451 Joo Chiat Rd, Singapore 427664", "rsvp_count" : 2, "url" : "https://www.facebook.com/events/1976380459303071", "group_id" : "545948028820917", "group_name" : "MakerSpace.sg", "group_url" : "http://www.facebook.com/545948028820917", "formatted_time" : "09 Dec 2017, Sat, 2:30 pm", "start_time" : "2017-12-09T06:30:00.000Z", "end_time" : "2017-12-09T08:30:00.000Z", "platform" : "facebook", "latitude" : 1.30692, "longitude" : 103.90451}]} | json_instruct | {"type": "object", "properties": {"meta": {"type": "object", "properties": {"generated_at": {"type": "string"}, "location": {"type": "string"}, "api_version": {"type": "string"}, "total_events": {"type": "integer"}}, "required": ["generated_at", "location", "api_version", "total_events"]}, "events": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "location": {"type": "string"}, "rsvp_count": {"type": "integer"}, "url": {"type": "string"}, "group_id": {"type": "string"}, "group_name": {"type": "string"}, "group_url": {"type": "string"}, "formatted_time": {"type": "string"}, "start_time": {"type": "string"}, "end_time": {"type": "string"}, "platform": {"type": "string"}, "latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["id", "name", "description", "location", "rsvp_count", "url", "group_id", "group_name", "group_url", "formatted_time", "start_time", "end_time", "platform", "latitude", "longitude"]}}}, "required": ["meta", "events"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["aureooms-js-collections"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "jquery": {"type": "string"}, "underscore": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-plugin-external-helpers": {"type": "string"}, "babel-preset-env": {"type": "string"}, "clean-css": {"type": "string"}, "eslint": {"type": "string"}, "node-getopt": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-replace": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "postcss": {"type": "string"}}, "required": ["autoprefixer", "jquery", "underscore", "babel-cli", "babel-plugin-external-helpers", "babel-preset-env", "clean-css", "eslint", "node-getopt", "rollup", "rollup-plugin-babel", "rollup-plugin-replace", "rollup-plugin-uglify", "postcss"]}}, "required": ["name", "version", "description", "author", "license", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mirapol", "version" : "0.0.1", "description" : "A story format aimed to be a middle ground between Harlowe and SugarCube.", "author" : {"name" : "Florent UGUET", "email" : "florent.uguet@gmail.com"}, "license" : "MIT", "repository" : {"type" : "git", "url" : ""}, "scripts" : {}, "devDependencies" : {"autoprefixer" : "^9.1.0", "jquery" : "^3.3.1", "underscore" : "^1.9.1", "babel-cli" : "^6.26.0", "babel-plugin-external-helpers" : "^6.22.0", "babel-preset-env" : "^1.6.1", "clean-css" : "^4.1.9", "eslint" : "^4.17.0", "node-getopt" : "^0.3.2", "rollup" : "^0.55.1", "rollup-plugin-babel" : "^3.0.3", "rollup-plugin-replace" : "^2.0.0", "rollup-plugin-uglify" : "^3.0.0", "postcss" : "^7.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "jquery": {"type": "string"}, "underscore": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-plugin-external-helpers": {"type": "string"}, "babel-preset-env": {"type": "string"}, "clean-css": {"type": "string"}, "eslint": {"type": "string"}, "node-getopt": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-replace": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}, "postcss": {"type": "string"}}, "required": ["autoprefixer", "jquery", "underscore", "babel-cli", "babel-plugin-external-helpers", "babel-preset-env", "clean-css", "eslint", "node-getopt", "rollup", "rollup-plugin-babel", "rollup-plugin-replace", "rollup-plugin-uglify", "postcss"]}}, "required": ["name", "version", "description", "author", "license", "repository", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"plugin_name": {"type": "string"}, "plugin_github_coordinates": {"type": "string"}, "github_coordinates": {"type": "string"}, "test_command": {"type": "string"}, "sample_release_url_linux": {"type": "string"}, "sample_release_url_macos": {"type": "string"}, "binary_name": {"type": "string"}, "binary_altname": {"type": "string"}, "filename_template": {"type": "string"}, "download_url_template": {"type": "string"}, "binary_path_in_archive_template": {"type": "string"}, "downloaded_file_is_not_an_archive": {"type": "string"}, "platform_pattern": {"type": "string"}, "get_platform_custom_content": {"type": "string"}, "strip_v_in_version": {"type": "boolean"}, "action_sh_checker_version": {"type": "string"}}, "required": ["plugin_name", "plugin_github_coordinates", "github_coordinates", "test_command", "sample_release_url_linux", "sample_release_url_macos", "binary_name", "binary_altname", "filename_template", "download_url_template", "binary_path_in_archive_template", "downloaded_file_is_not_an_archive", "platform_pattern", "get_platform_custom_content", "strip_v_in_version", "action_sh_checker_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugin_name" : "gitui", "plugin_github_coordinates" : "looztra/asdf-{{ cookiecutter.plugin_name }}", "github_coordinates" : "extrawurst/gitui", "test_command" : "gitui --version", "sample_release_url_linux" : "https://github.com/extrawurst/gitui/releases/download/v0.6.0/gitui-linux-musl.tar.gz", "sample_release_url_macos" : "https://github.com/extrawurst/gitui/releases/download/v0.6.0/gitui-mac.tar.gz", "binary_name" : "gitui", "binary_altname" : "", "filename_template" : "__BINARY_NAME__-__PLATFORM__.tar.gz", "download_url_template" : "https://github.com/__GITHUB_COORDINATES__/releases/download/v__VERSION__/__FILENAME__", "binary_path_in_archive_template" : "__ARCHIVE_DIR__/__BINARY_NAME__", "downloaded_file_is_not_an_archive" : "false", "platform_pattern" : "custom", "get_platform_custom_content" : "local operating_system\r\n operating_system=$(uname | tr '[:upper:]' '[:lower:]')\r\n if [[ \"$operating_system\" == \"linux\" ]]; then\r\n echo \"linux-musl\"\r\n else\r\n echo \"mac\"\r\n fi", "strip_v_in_version" : true, "action_sh_checker_version" : "v0.1.12"} | json_instruct | {"type": "object", "properties": {"plugin_name": {"type": "string"}, "plugin_github_coordinates": {"type": "string"}, "github_coordinates": {"type": "string"}, "test_command": {"type": "string"}, "sample_release_url_linux": {"type": "string"}, "sample_release_url_macos": {"type": "string"}, "binary_name": {"type": "string"}, "binary_altname": {"type": "string"}, "filename_template": {"type": "string"}, "download_url_template": {"type": "string"}, "binary_path_in_archive_template": {"type": "string"}, "downloaded_file_is_not_an_archive": {"type": "string"}, "platform_pattern": {"type": "string"}, "get_platform_custom_content": {"type": "string"}, "strip_v_in_version": {"type": "boolean"}, "action_sh_checker_version": {"type": "string"}}, "required": ["plugin_name", "plugin_github_coordinates", "github_coordinates", "test_command", "sample_release_url_linux", "sample_release_url_macos", "binary_name", "binary_altname", "filename_template", "download_url_template", "binary_path_in_archive_template", "downloaded_file_is_not_an_archive", "platform_pattern", "get_platform_custom_content", "strip_v_in_version", "action_sh_checker_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "3516062001", "nama" : "Purworejo"}, {"id" : "3516062002", "nama" : "Mojorejo"}, {"id" : "3516062003", "nama" : "Curahmojo"}, {"id" : "3516062004", "nama" : "Sekargadung"}, {"id" : "3516062005", "nama" : "Tempuran"}, {"id" : "3516062006", "nama" : "Jatilangkung"}, {"id" : "3516062007", "nama" : "Banjartanggul"}, {"id" : "3516062008", "nama" : "Kalipuro"}, {"id" : "3516062009", "nama" : "Randuharjo"}, {"id" : "3516062010", "nama" : "Kembangringgit"}, {"id" : "3516062011", "nama" : "Pungging"}, {"id" : "3516062012", "nama" : "Lebaksono"}, {"id" : "3516062013", "nama" : "Tunggalpager"}, {"id" : "3516062014", "nama" : "Balongmasin"}, {"id" : "3516062015", "nama" : "Jabontegal"}, {"id" : "3516062016", "nama" : "Kedungmungal"}, {"id" : "3516062017", "nama" : "Watukenongo"}, {"id" : "3516062018", "nama" : "Ngrame"}, {"id" : "3516062019", "nama" : "Bangun"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"seed": {"type": "integer"}, "tag": {"type": "string"}, "problemId": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["seed", "tag", "problemId", "solution"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"seed" : 679, "tag" : "problem2-seed1-0-8-43.712883000000", "problemId" : 2, "solution" : "paaaldpldlbbkkakalbbbklkadlbaaabakplkblkpaklbbdpalalddplbdlplpkppakkabdbadblblblkpallblpalkkbkaakpaplldpkaadldpldallakkabkabkadlapkplpkapkaabbaabldllEi!pkpaaEi!aallkbaddldpdlbadballkabaldblkkkbllaaalbalabakpadlbkpkaklpdpppklakldabdlbklpdbalplddlkbdakpkkpdlababddlddaablpppabkalaklkbaakplaaddplpddbdbdlplbddabkkpdllballbdaabllplkkakkklkklbaaklbdpdlbdplbklpkkbdlpkkakbkpkaklkkaklbkpabkadadbblaakaklpklplpllapakaddbladakkbdbakklbdbalbkkpdallpdpapablklkpkalaklalpaddbdbadbkkpaddpdbbllddaapdakbdbdapakklkbkblkbldbbllallalakalbadbaklaapdabkpkbkkpdlddlddpkpabdabbllppdblkklapadalbkpkablkppalldbaddbldakadldpkaldbbabakbklkpkapkblpdlklkkkbdbldaakpllkpplpdlbblkldlbdbkkpldpadbddplpablllabdplplldppkpkaalllpapkldpplapkaplkbaabakbdblppdaaplddlalkbkpaakkaplkbbbkbkadbklkkapdldpkkldlpdlppkkbdbabalablbadaapablkkldlakblkpdadbkbaaabadllpkbaldllalapaadpabbabdpakplakllklkkpadpkkbEi!pkabdbdblplklkpaaklakpplpddbddppakkllllalkplapkkklklbddpddaplkkbaabbkkaablppplakapldbdbbkkpplklladddaabbdpddpalkppdabblkpdabalkbdldplpdpdldallkllkklbbkbaadpklkpkbbdbkkppalalblklpddlaakalpadpdakbdddplpklbdlappdEi!llakppkaklaklakladadalkdlpkpkplkplbkkppakkbbblpkabdlllbbkpkplldlakkldpklpplbkkkppdlallkpllbkakaEi!allllkkkbklddbakalbkabldlpklpdpdllkkbdbbbbkppabddplallkaplbdpadbldlkabldabdapkalddpdladplbakblbllkbkklbaabakakkEi!padldbkbakkkabkkalppdadbalpadaalllddaakadkbbabkakalpdlppkkppabdbklkldapdpldlklkplddbaakabllabdlbbldpkppkllbbablddpplakkldblalplbkbakakkkllpabdbkabkpalpadabdllklapkbaakpkbkldpkkkbldlplddlkkkkbadablkpdlldlalllkkEi!abaadlddpdapkpalaplddldblppdakkpallkaapllkaaaplakdplaaaalbkalklakalblbbklpdppapdbaklbkplaadplaaplbdaldplbdlkkbbkkbadalakblabakkblalbadbaEi!kablkkbalpkbakkapkadapdappdlldaldlabkkpkkpakkadalpablbldabbadddbkllalbkllppkkbblkkblpllaabdppkllbdaapdpdblpdlpapdabblaalkklkkppadklabkbdbldlkpkkapkkkklbbkbbabdddpkpllbbbbkllldbldlpdllddallppldddpaplapkaadbldaldddabalbpklblklbakakpkballpddplppkplb"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"seed": {"type": "integer"}, "tag": {"type": "string"}, "problemId": {"type": "integer"}, "solution": {"type": "string"}}, "required": ["seed", "tag", "problemId", "solution"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 485000, "name" : "Cthulhu Realms", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1490996040} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "dependencies": {"type": "object", "properties": {"yeoman-generator": {"type": "string"}}, "required": ["yeoman-generator"]}}, "required": ["description", "main", "name", "version", "keywords", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "", "main" : "generators/index.js", "name" : "generator-react-base", "version" : "0.6.0", "keywords" : ["yeoman-generator"], "author" : {"name" : "Luis Martinez Marina", "email" : "lmartinez.marina@atsistemas.com", "url" : ""}, "dependencies" : {"yeoman-generator" : "^0.20.1"}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "main": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "dependencies": {"type": "object", "properties": {"yeoman-generator": {"type": "string"}}, "required": ["yeoman-generator"]}}, "required": ["description", "main", "name", "version", "keywords", "author", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["hyperspy-gui-ipywidgets"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fabpot/php-cs-fixer": {"type": "string"}, "symfony/translation": {"type": "string"}, "symfony/yaml": {"type": "string"}}, "required": ["php", "fabpot/php-cs-fixer", "symfony/translation", "symfony/yaml"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Boekkooi\\CS\\": {"type": "string"}}, "required": ["Boekkooi\\CS\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\Boekkooi\\CS\\": {"type": "string"}}, "required": ["Tests\\Boekkooi\\CS\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "bin", "minimum-stability", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "boekkooi/php-cs-fixer-checker", "description" : "A extension for the Broadway package with extra's like tactician usage and other tweaks", "license" : ["MIT"], "authors" : [{"name" : "Warnar Boekkooi", "email" : "warnar@boekkooi.net"}], "require" : {"php" : ">=5.5", "fabpot/php-cs-fixer" : "~2.0", "symfony/translation" : "~2.3", "symfony/yaml" : "~2.3"}, "require-dev" : {"phpunit/phpunit" : "~4.8"}, "autoload" : {"psr-4" : {"Boekkooi\\CS\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Tests\\Boekkooi\\CS\\" : "tests/"}}, "bin" : ["php-cs-checker"], "minimum-stability" : "dev", "extra" : {"branch-alias" : {"dev-master" : "0.1-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fabpot/php-cs-fixer": {"type": "string"}, "symfony/translation": {"type": "string"}, "symfony/yaml": {"type": "string"}}, "required": ["php", "fabpot/php-cs-fixer", "symfony/translation", "symfony/yaml"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Boekkooi\\CS\\": {"type": "string"}}, "required": ["Boekkooi\\CS\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Tests\\Boekkooi\\CS\\": {"type": "string"}}, "required": ["Tests\\Boekkooi\\CS\\"]}}, "required": ["psr-4"]}, "bin": {"type": "array", "items": {"type": "string"}}, "minimum-stability": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "description", "license", "authors", "require", "require-dev", "autoload", "autoload-dev", "bin", "minimum-stability", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101852833, "type" : "Feature", "properties" : {"src:alt_label" : "whosonfirst", "src:geom" : "whosonfirst", "wof:geomhash" : "c49b8233c1aaef5cbe35cab35c49e9b0", "wof:id" : 101852833, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-3.711655, 51.698676, -3.711655, 51.698676], "geometry" : {"coordinates" : [-3.711655, 51.698676], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"chains": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "requests": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "requests"]}}}, "required": ["chains"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"chains" : [{"name" : "chain1", "requests" : ["1/first", "2/second", "3", "2/second"]}, {"name" : "chain2", "requests" : ["1/first", "3"]}]} | json_instruct | {"type": "object", "properties": {"chains": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "requests": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "requests"]}}}, "required": ["chains"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"average_occupancy" : [1.411904515278285, 1.4405004885724992, 1.4825829358946634, 1.4844494032957898, 1.4811945359862313, 1.4501990390019597, 1.4466031330561337, 1.4249549664011634, 1.4750950772124698, 1.479054330383358, 1.3770276613585906, 1.4302693303155076, 1.398386720144053, 1.360708721175391, 1.34706019824857, 1.411413840925793, 1.4316759646253145, 1.4861188645107362, 1.4076934228516966, 1.4172614614927124, 1.3854766664730274, 1.3495930150843714, 1.3833397667723577, 1.3513857071863402, 1.3692645988833363, 1.3469998888585621, 1.2374505665475655, 1.2707424586926095, 1.2574781593486193, 1.2289812302994678, 1.1701486455808563, 1.164059036042541, 1.1075088283090884, 1.1113523286024651, 1.0256829380109544, 1.017483292041457, 6.51489233649227, 0.9699072485585932, 0.9755191193160041, 1.045889452106152, 1.0867867513265017, 1.0822120864142155, 1.1619643330086313, 1.2035051876684466, 1.1738038365587267, 1.1630653413781105, 1.1852919816873582, 1.2789250936836045, 1.3393869400988359, 1.3292308177891392, 1.3895662735685728, 1.4549746838913953, 1.4579897814006382, 1.4571882956032178, 1.4355739876550981, 1.4169328002994943, 1.4704307553849354, 1.4298752152496914, 1.4147425057252747, 1.3552223200751345, 1.4071260222198585, 1.4464090954084754, 1.407344299070417, 1.4236027622848242, 1.390887849373282, 1.4176701931852183, 1.427236431322372, 1.3962554108507577, 1.3852108578134057, 1.3322150798365298, 1.3443419991749894, 1.3176315186501892, 1.2960417277609235, 1.3869054947613106, 1.407142375879205]} | json_instruct | {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@figma/plugin-typings": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-inline-source-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@figma/plugin-typings", "@types/react", "@types/react-dom", "css-loader", "html-webpack-inline-source-plugin", "html-webpack-plugin", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "svg-to-dataurl": {"type": "string"}, "svg64": {"type": "string"}}, "required": ["@types/node", "react", "react-dom", "svg-to-dataurl", "svg64"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "icon-export", "version" : "1.0.0", "description" : "Your Figma Plugin", "main" : "code.js", "scripts" : {"build" : "npx webpack --mode=production", "dev" : "npx webpack --mode=development --watch"}, "author" : "", "license" : "", "devDependencies" : {"@figma/plugin-typings" : "^1.17.1", "@types/react" : "^16.9.52", "@types/react-dom" : "^16.9.8", "css-loader" : "^4.3.0", "html-webpack-inline-source-plugin" : "^0.0.10", "html-webpack-plugin" : "^3.2.0", "style-loader" : "^2.0.0", "ts-loader" : "^8.0.5", "typescript" : "^4.0.3", "url-loader" : "^4.1.1", "webpack" : "^4.39.1", "webpack-cli" : "^3.3.6"}, "dependencies" : {"@types/node" : "^14.11.8", "react" : "^16.13.1", "react-dom" : "^16.13.1", "svg-to-dataurl" : "^1.0.0", "svg64" : "^1.0.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"}, "dev": {"type": "string"}}, "required": ["build", "dev"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@figma/plugin-typings": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "css-loader": {"type": "string"}, "html-webpack-inline-source-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@figma/plugin-typings", "@types/react", "@types/react-dom", "css-loader", "html-webpack-inline-source-plugin", "html-webpack-plugin", "style-loader", "ts-loader", "typescript", "url-loader", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "svg-to-dataurl": {"type": "string"}, "svg64": {"type": "string"}}, "required": ["@types/node", "react", "react-dom", "svg-to-dataurl", "svg64"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "del": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "gulp": {"type": "string"}, "gulp-debug": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-rigger": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp-watch": {"type": "string"}, "less-loader": {"type": "string"}, "path": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "css-loader", "del", "extract-text-webpack-plugin", "file-loader", "gulp", "gulp-debug", "gulp-load-plugins", "gulp-rename", "gulp-replace", "gulp-rigger", "gulp-util", "gulp-watch", "less-loader", "path", "style-loader", "url-loader", "webpack", "webpack-dev-server"]}, "repository": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "dependencies" : {"jquery" : "~2.1.4"}, "devDependencies" : {"babel-core" : "^5.8.20", "babel-loader" : "^5.3.2", "css-loader" : "~0.15.5", "del" : "~1.2.0", "extract-text-webpack-plugin" : "~0.8.2", "file-loader" : "^0.8.4", "gulp" : "~3.9.0", "gulp-debug" : "~2.0.1", "gulp-load-plugins" : "~1.0.0-rc.1", "gulp-rename" : "~1.2.2", "gulp-replace" : "~0.5.3", "gulp-rigger" : "~0.5.8", "gulp-util" : "~3.0.6", "gulp-watch" : "~4.3.3", "less-loader" : "~2.2.0", "path" : "~0.11.14", "style-loader" : "~0.12.3", "url-loader" : "~0.5.6", "webpack" : "~1.10.3", "webpack-dev-server" : "~1.10.1"}, "repository" : {}, "author" : "Ievgen Iezhachenko", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "del": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "file-loader": {"type": "string"}, "gulp": {"type": "string"}, "gulp-debug": {"type": "string"}, "gulp-load-plugins": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-replace": {"type": "string"}, "gulp-rigger": {"type": "string"}, "gulp-util": {"type": "string"}, "gulp-watch": {"type": "string"}, "less-loader": {"type": "string"}, "path": {"type": "string"}, "style-loader": {"type": "string"}, "url-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "css-loader", "del", "extract-text-webpack-plugin", "file-loader", "gulp", "gulp-debug", "gulp-load-plugins", "gulp-rename", "gulp-replace", "gulp-rigger", "gulp-util", "gulp-watch", "less-loader", "path", "style-loader", "url-loader", "webpack", "webpack-dev-server"]}, "repository": {"type": "object", "properties": {}, "required": []}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "dependencies", "devDependencies", "repository", "author", "license"], "$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"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tabris": {"type": "string"}}, "required": ["tabris"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-jasmine-node": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint", "grunt-jasmine-node"]}}, "required": ["name", "version", "license", "homepage", "repository", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tabris-js-mock", "version" : "0.1.0", "license" : "BSD-3-Clause", "homepage" : "http://tabrisjs.com/", "repository" : {"type" : "git", "url" : "https://github.com/eclipsesource/tabris-js-mock.git"}, "main" : "example/src/main.js", "dependencies" : {"tabris" : "^1.0.0"}, "devDependencies" : {"grunt" : "^0.4.5", "grunt-contrib-jshint" : "^0.11.1", "grunt-jasmine-node" : "^0.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"tabris": {"type": "string"}}, "required": ["tabris"]}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-contrib-jshint": {"type": "string"}, "grunt-jasmine-node": {"type": "string"}}, "required": ["grunt", "grunt-contrib-jshint", "grunt-jasmine-node"]}}, "required": ["name", "version", "license", "homepage", "repository", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"URL": {"type": "string"}, "host": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "string"}}, "ratings": {"type": "number"}, "reviews": {"type": "string"}, "title": {"type": "string"}, "total_time": {"type": "integer"}, "yields": {"type": "string"}}, "required": ["URL", "host", "ingredients", "instructions", "ratings", "reviews", "title", "total_time", "yields"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"URL" : "https://www.allrecipes.com/recipe/143809/best-steak-marinade-in-existence/?internalSource=rr_feed_recipe_sb&referringId=219911%20referringContentType%3Drecipe\n", "host" : "allrecipes.com", "ingredients" : ["1/3 cup soy sauce", "1/2 cup olive oil", "1/3 cup fresh lemon juice", "1/4 cup Worcestershire sauce", "1 1/2 tablespoons garlic powder", "3 tablespoons dried basil", "1 1/2 tablespoons dried parsley flakes", "1 teaspoon ground white pepper", "1/4 teaspoon hot pepper sauce (optional)", "1 teaspoon dried minced garlic (optional)"], "instructions" : ["Place the soy sauce, olive oil, lemon juice, Worcestershire sauce, garlic powder, basil, parsley, and pepper in a blender. Add hot pepper sauce and garlic, if desired. Blend on high speed for 30 seconds until thoroughly mixed.", "Pour marinade over desired type of meat. Cover, and refrigerate for up to 8 hours. Cook meat as desired.", ""], "ratings" : 4.59, "reviews" : "", "title" : "Best Steak Marinade in Existence", "total_time" : 15, "yields" : "8 serving(s)"} | json_instruct | {"type": "object", "properties": {"URL": {"type": "string"}, "host": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "instructions": {"type": "array", "items": {"type": "string"}}, "ratings": {"type": "number"}, "reviews": {"type": "string"}, "title": {"type": "string"}, "total_time": {"type": "integer"}, "yields": {"type": "string"}}, "required": ["URL", "host", "ingredients", "instructions", "ratings", "reviews", "title", "total_time", "yields"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"SchoolCode": {"type": "integer"}, "Name": {"type": "string"}, "InactiveStatusCode": {"type": "string"}, "Address": {"type": "string"}, "AddressCity": {"type": "string"}, "AddressState": {"type": "string"}, "AddressZipCode": {"type": "string"}, "AddressZipExt": {"type": "string"}, "DoNotReport": {"type": "boolean"}, "StateCountyID": {"type": "string"}, "StateDistrictID": {"type": "string"}, "StateSchoolID": {"type": "string"}, "LowGradeLevel": {"type": "integer"}, "HighGradeLevel": {"type": "integer"}, "Terms": {"type": "array", "items": {"type": "object", "properties": {"TermCode": {"type": "string"}, "TermDescription": {"type": "string"}, "StartDate": {"type": "string"}, "EndDate": {"type": "string"}}, "required": ["TermCode", "TermDescription", "StartDate", "EndDate"]}}, "PrincipalName": {"type": "string"}, "PrincipalEmailAddress": {"type": "string"}, "AttendancePeriod": {"type": "integer"}, "Tracks": {"type": "integer"}, "ScheduleType": {"type": "string"}, "SessionType": {"type": "string"}, "AttendanceType": {"type": "string"}, "AttendanceReporting": {"type": "string"}, "ScheduleBasis": {"type": "string"}, "PhoneNumber": {"type": "string"}}, "required": ["SchoolCode", "Name", "InactiveStatusCode", "Address", "AddressCity", "AddressState", "AddressZipCode", "AddressZipExt", "DoNotReport", "StateCountyID", "StateDistrictID", "StateSchoolID", "LowGradeLevel", "HighGradeLevel", "Terms", "PrincipalName", "PrincipalEmailAddress", "AttendancePeriod", "Tracks", "ScheduleType", "SessionType", "AttendanceType", "AttendanceReporting", "ScheduleBasis", "PhoneNumber"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"SchoolCode" : 990, "Name" : "Golden Eagle Elementary School", "InactiveStatusCode" : "", "Address" : "9950 Comet Street", "AddressCity" : "Eagle Point", "AddressState" : "CA", "AddressZipCode" : "95990", "AddressZipExt" : "", "DoNotReport" : false, "StateCountyID" : "65", "StateDistrictID" : "99999", "StateSchoolID" : "0000001", "LowGradeLevel" : -1, "HighGradeLevel" : 6, "Terms" : [{"TermCode" : "1", "TermDescription" : "First Quarter", "StartDate" : "2019-07-01T00:00:00", "EndDate" : "2019-11-08T00:00:00"}, {"TermCode" : "2", "TermDescription" : "Second Quarter", "StartDate" : "2019-11-12T00:00:00", "EndDate" : "2020-03-27T00:00:00"}, {"TermCode" : "3", "TermDescription" : "Third Quarter", "StartDate" : "2020-03-30T00:00:00", "EndDate" : "2020-08-07T00:00:00"}, {"TermCode" : "Y", "TermDescription" : "Year", "StartDate" : "2019-07-01T00:00:00", "EndDate" : "2020-08-07T00:00:00"}], "PrincipalName" : "Ms Michele Rogers", "PrincipalEmailAddress" : "", "AttendancePeriod" : 0, "Tracks" : 0, "ScheduleType" : "Elementary", "SessionType" : "Regular", "AttendanceType" : "Daily", "AttendanceReporting" : "Negative", "ScheduleBasis" : "Trimester", "PhoneNumber" : "9995559990"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"SchoolCode": {"type": "integer"}, "Name": {"type": "string"}, "InactiveStatusCode": {"type": "string"}, "Address": {"type": "string"}, "AddressCity": {"type": "string"}, "AddressState": {"type": "string"}, "AddressZipCode": {"type": "string"}, "AddressZipExt": {"type": "string"}, "DoNotReport": {"type": "boolean"}, "StateCountyID": {"type": "string"}, "StateDistrictID": {"type": "string"}, "StateSchoolID": {"type": "string"}, "LowGradeLevel": {"type": "integer"}, "HighGradeLevel": {"type": "integer"}, "Terms": {"type": "array", "items": {"type": "object", "properties": {"TermCode": {"type": "string"}, "TermDescription": {"type": "string"}, "StartDate": {"type": "string"}, "EndDate": {"type": "string"}}, "required": ["TermCode", "TermDescription", "StartDate", "EndDate"]}}, "PrincipalName": {"type": "string"}, "PrincipalEmailAddress": {"type": "string"}, "AttendancePeriod": {"type": "integer"}, "Tracks": {"type": "integer"}, "ScheduleType": {"type": "string"}, "SessionType": {"type": "string"}, "AttendanceType": {"type": "string"}, "AttendanceReporting": {"type": "string"}, "ScheduleBasis": {"type": "string"}, "PhoneNumber": {"type": "string"}}, "required": ["SchoolCode", "Name", "InactiveStatusCode", "Address", "AddressCity", "AddressState", "AddressZipCode", "AddressZipExt", "DoNotReport", "StateCountyID", "StateDistrictID", "StateSchoolID", "LowGradeLevel", "HighGradeLevel", "Terms", "PrincipalName", "PrincipalEmailAddress", "AttendancePeriod", "Tracks", "ScheduleType", "SessionType", "AttendanceType", "AttendanceReporting", "ScheduleBasis", "PhoneNumber"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "quality": {"type": "integer"}, "fit": {"type": "string"}, "background": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "quality", "fit", "background"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200878081973000, "key" : "c2f8c1adb4c8ac954aaef154f4a0b95f", "val" : {"name" : "IMAGE_PROCESSING", "inputPaths" : ["D:/Coding/blog_Pier/content/assets/pier.JPG"], "outputDir" : "D:/Coding/blog_Pier/public/static/1358d8ee99ff8b704fdbbbbb4ba3c7f6", "args" : {"isLazy" : false, "operations" : [{"outputPath" : "2a414\\pier.jpg", "args" : {"height" : 58, "width" : 58, "cropFocus" : 17, "toFormat" : "jpg", "quality" : 95, "fit" : "cover", "background" : "rgba(0,0,0,1)"}}, {"outputPath" : "ce74f\\pier.jpg", "args" : {"height" : 87, "width" : 87, "cropFocus" : 17, "toFormat" : "jpg", "quality" : 95, "fit" : "cover", "background" : "rgba(0,0,0,1)"}}, {"outputPath" : "48e60\\pier.jpg", "args" : {"height" : 116, "width" : 116, "cropFocus" : 17, "toFormat" : "jpg", "quality" : 95, "fit" : "cover", "background" : "rgba(0,0,0,1)"}}], "pluginOptions" : {"base64Width" : 20, "forceBase64Format" : "", "useMozJpeg" : false, "stripMetadata" : true, "lazyImageGeneration" : true, "defaultQuality" : 50, "failOnError" : true, "plugins" : []}}}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type": "boolean"}, "operations": {"type": "array", "items": {"type": "object", "properties": {"outputPath": {"type": "string"}, "args": {"type": "object", "properties": {"height": {"type": "integer"}, "width": {"type": "integer"}, "cropFocus": {"type": "integer"}, "toFormat": {"type": "string"}, "quality": {"type": "integer"}, "fit": {"type": "string"}, "background": {"type": "string"}}, "required": ["height", "width", "cropFocus", "toFormat", "quality", "fit", "background"]}}, "required": ["outputPath", "args"]}}, "pluginOptions": {"type": "object", "properties": {"base64Width": {"type": "integer"}, "forceBase64Format": {"type": "string"}, "useMozJpeg": {"type": "boolean"}, "stripMetadata": {"type": "boolean"}, "lazyImageGeneration": {"type": "boolean"}, "defaultQuality": {"type": "integer"}, "failOnError": {"type": "boolean"}, "plugins": {"type": "array", "items": {}}}, "required": ["base64Width", "forceBase64Format", "useMozJpeg", "stripMetadata", "lazyImageGeneration", "defaultQuality", "failOnError", "plugins"]}}, "required": ["isLazy", "operations", "pluginOptions"]}}, "required": ["name", "inputPaths", "outputDir", "args"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.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/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.activeitem" : ["/shortdescription"]}, "Texts" : {"Chs" : "\u54e8\u5175\u7535\u78c1\u70ae", "Eng" : "Sentry Railgun"}}, {"DeniedAlternatives" : [], "Files" : {"items/active/weapons/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.activeitem" : ["/description"]}, "Texts" : {"Chs" : "\u8fd9\u628a\u72c2\u91ce\u7684\u6b66\u5668\u6beb\u65e0\u7591\u95ee\u80fd\u5c06\u654c\u4eba\u8f7b\u677e\u8f70\u6740\u81f3\u6e23!\n^yellow;\u53ef\u9020\u6210\u51bb\u7ed3\u6548\u679c^reset;\n^cyan;\u53ef\u53ec\u55242\u53ea\u4e24\u8db3\u673a\u5668\u4eba\u534f\u52a9\u6218\u6597^reset;", "Eng" : "This beast absolutely murders the enemy!\n^yellow;Inflicts frozen-fire^reset;\n^cyan;Summons Assault Drones^reset;"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"items/active/weapons/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.activeitem": {"type": "array", "items": {"type": "string"}}}, "required": ["items/active/weapons/ranged/unique/theblackmarket/sentryguns/railgun/mobiusrailgun.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#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "text": {"type": "string"}, "user": {"type": "string"}, "type": {"type": "string"}}, "required": ["ts", "text", "user", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"ts" : "1617327295.025100", "text" : "GHC2021\u3068\u30ec\u30b3\u30fc\u30c9\u5468\u308a\u306e\u4fee\u6b63\u304c\u3081\u3063\u3061\u3083\u3042\u308a\u304c\u305f\u3044\u3067\u3059\u306d\u30fc\u3002\u30d7\u30ed\u30d5\u30a1\u30a4\u30ea\u30f3\u30b0\u3084\u30c7\u30d0\u30c3\u30b0\u5468\u308a\u3082\u3088\u3055\u3052\u306a\u65b0\u6a5f\u80fd\u304c :eyes:", "user" : "U4LGTMTMK", "type" : "message"}, {"ts" : "1617359032.025800", "text" : "GHC 9.2.1-alpha1\u3067\u306f\u3001RecordDot\u69cb\u6587\u304c\u4f7f\u3048\u308b\u3088\u3046\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002 \u3053\u3093\u306a\u611f\u3058\u3002\n```ghci> :set -XOverloadedRecordDot \nghci> data Val = Val {field1::Bool, field2::Int} deriving Show\nghci> x = Val True 100\nghci> x.field1\nTrue\nghci> x.field2\n100```\n\u3042\u3068\u3001`GHC2021`\u8a00\u8a9e\u62e1\u5f35\u306f\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u6709\u52b9\u306b\u306a\u3063\u3066\u3044\u307e\u3059\u3002\n\u3053\u308c\u3067\u6709\u52b9\u306b\u306a\u308b\u8a00\u8a9e\u62e1\u5f35\u306e\u4e00\u89a7\u306f\u3053\u3053\u3002\n<https://downloads.haskell.org/ghc/9.2.1-alpha1/docs/html/users_guide/exts/control.html#extension-GHC2021>\n\u30b3\u30fc\u30c9\u5192\u982d\u306eLanguage\u30d7\u30e9\u30b0\u30de\u306e\u30ea\u30b9\u30c8\u304c\u6e1b\u308a\u307e\u3059:slightly_smiling_face:", "user" : "U55V441FS", "type" : "message"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"ts": {"type": "string"}, "text": {"type": "string"}, "user": {"type": "string"}, "type": {"type": "string"}}, "required": ["ts", "text", "user", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 26421, "cartId" : "2a23c735-c342-457a-95e9-6d54f3b496d2", "preferredProducts" : [3478, 30, 1931, 4189, 2512, 4199, 3630, 4389], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : 51520, "cartId" : "92be355a-51d5-4d64-a137-8bfdc8b0cc14", "preferredProducts" : [3781, 163, 2056], "productReviews" : [{"productId" : 1667, "reviewText" : "one of my hobbies is spearfishing. and when i'm spearfishing this works great.", "reviewDate" : "2018-05-23T06:24:36.6466496+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#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/Sources/RestEssentialsTests/RestControllerTests.swift": {"type": "object", "properties": {"dependencies": {"type": "string"}, "object": {"type": "string"}, "swiftmodule": {"type": "string"}, "swift-dependencies": {"type": "string"}}, "required": ["dependencies", "object", "swiftmodule", "swift-dependencies"]}}, "required": ["", "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/Sources/RestEssentialsTests/RestControllerTests.swift"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"" : {"swift-dependencies" : "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/.build/x86_64-apple-macosx/debug/RestEssentialsTests.build/master.swiftdeps"}, "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/Sources/RestEssentialsTests/RestControllerTests.swift" : {"dependencies" : "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/.build/x86_64-apple-macosx/debug/RestEssentialsTests.build/RestControllerTests.d", "object" : "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/.build/x86_64-apple-macosx/debug/RestEssentialsTests.build/RestControllerTests.swift.o", "swiftmodule" : "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/.build/x86_64-apple-macosx/debug/RestEssentialsTests.build/RestControllerTests~partial.swiftmodule", "swift-dependencies" : "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/.build/x86_64-apple-macosx/debug/RestEssentialsTests.build/RestControllerTests.swiftdeps"}} | json_instruct | {"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/Sources/RestEssentialsTests/RestControllerTests.swift": {"type": "object", "properties": {"dependencies": {"type": "string"}, "object": {"type": "string"}, "swiftmodule": {"type": "string"}, "swift-dependencies": {"type": "string"}}, "required": ["dependencies", "object", "swiftmodule", "swift-dependencies"]}}, "required": ["", "/Users/seankosanovich/code_checkouts/GitHub/RestEssentials/Sources/RestEssentialsTests/RestControllerTests.swift"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-material.css" : "sha256-JZJBcZfp+EC302UYp4P/XVADy53RJuZMOJEk1AUJvlE=", "angular-material.js" : "sha256-y2LwcLOgUP2rJzYbVGXGCjuzLZBDqkSFksmH21dckKw=", "angular-material.min.css" : "sha256-b1NO+kKDAq/+FxEKEQh+hc1XnwMtfHN3cchB5QjfV4U=", "angular-material.min.js" : "sha256-XjHbovzOxRCwLqfc4ENXmuDXF5c1at024e8UWeMas8c="} | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-material.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "areaSizeDetection": {"type": "string"}}, "required": ["name", "areaSizeDetection"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "\u65e5\u4ed8\u5165\u308a\u30ea\u30b9\u30c8 .date_list", "areaSizeDetection" : "shallow"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "areaSizeDetection": {"type": "string"}}, "required": ["name", "areaSizeDetection"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"710248711212498994": {"type": "string"}}, "required": ["710248711212498994"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"710248711212498994" : "&"} | json_instruct | {"type": "object", "properties": {"710248711212498994": {"type": "string"}}, "required": ["710248711212498994"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : {"name" : "Manoj G.", "url" : "https://os.mbed.com/users/manoj036/"}, "description" : "Done", "examples" : ["https://os.mbed.com/users/manoj036/code/BLE_Timer_SleepDoc/"], "frameworks" : "mbed", "keywords" : "cmsis", "name" : "cmsis", "platforms" : "*", "repository" : {"type" : "hg", "url" : "https://os.mbed.com/users/manoj036/code/cmsis/"}} | json_instruct | {"type": "object", "properties": {"authors": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "description": {"type": "string"}, "examples": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "keywords": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "required": ["authors", "description", "examples", "frameworks", "keywords", "name", "platforms", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"4BitAdderAndGrover": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["4BitAdderAndGrover"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"profiles" : {"4BitAdderAndGrover" : {"commandName" : "Project", "commandLineArgs" : "--operation FindSummands -e 29 -g 9 -r 3"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"4BitAdderAndGrover": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["4BitAdderAndGrover"]}}, "required": ["profiles"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"caption": {"type": "string"}}, "required": ["caption"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"caption" : "Unsubscribe from Balance Changes"} | json_instruct | {"type": "object", "properties": {"caption": {"type": "string"}}, "required": ["caption"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-purgecss": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-clean", "gulp-cssnano", "gulp-purgecss", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gulp-bootstrap4-starter", "version" : "0.0.1", "description" : "A barebones Bootstrap 4 Starter using Gulp 4 as it's build system.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Michael Levett", "license" : "MIT", "devDependencies" : {"browser-sync" : "^2.26.7", "gulp" : "^4.0.2", "gulp-clean" : "^0.4.0", "gulp-cssnano" : "^2.1.3", "gulp-purgecss" : "^1.2.0", "gulp-sass" : "^4.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-clean": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-purgecss": {"type": "string"}, "gulp-sass": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-clean", "gulp-cssnano", "gulp-purgecss", "gulp-sass"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies"], "$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"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "loftschool-builder", "version" : "1.0.0", "ignore" : ["**/.*", "node_modules", "bower_components"], "dependencies" : {"jquery" : "2.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["121.5.140.133:1024:Nico[V1.2.4]", "cmi.zerodream.net:1919:ZeroDream[v1.2.2]", "s2.imlazy.ink:25020:Fx-Craft[v1.2.4]"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[145.0, 33.833333333333336], [145.0, 33.916666666666664], [145.125, 33.916666666666664], [145.125, 33.833333333333336], [145.0, 33.833333333333336]]]}, "properties" : {"code" : 504560, "url" : "http://madefor.github.io/0410/api/v1/504560.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/504560.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"bygd2014@sina.com": {"type": "string"}}, "required": ["bygd2014@sina.com"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"TPExBankCardOCR": {"type": "array", "items": {"type": "string"}}}, "required": ["TPExBankCardOCR"]}, "vendored_frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles", "vendored_frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "TPExBankCardOCR", "version" : "0.0.3", "summary" : "\u6613\u9053\u535a\u8bc6\u94f6\u884c\u5361OCR", "description" : "\u6613\u9053\u535a\u8bc6\u94f6\u884c\u5361OCR(tiny\u5e73\u53f0\u7684js\u6269\u5c55)", "homepage" : "https://github.com/TinySunline/TPExBankCardOCR", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"bygd2014@sina.com" : "bygd2014@sina.com"}, "source" : {"git" : "https://github.com/TinySunline/TPExBankCardOCR.git"}, "platforms" : {"ios" : "7.0"}, "source_files" : "TPExBankCardOCR/Classes/**/*", "resource_bundles" : {"TPExBankCardOCR" : ["TPExBankCardOCR/Assets/ExBankCardRes.bundle"]}, "vendored_frameworks" : "TPExBankCardOCR/Assets/ExBankCardSDK.framework"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"bygd2014@sina.com": {"type": "string"}}, "required": ["bygd2014@sina.com"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}}, "required": ["git"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "source_files": {"type": "string"}, "resource_bundles": {"type": "object", "properties": {"TPExBankCardOCR": {"type": "array", "items": {"type": "string"}}}, "required": ["TPExBankCardOCR"]}, "vendored_frameworks": {"type": "string"}}, "required": ["name", "version", "summary", "description", "homepage", "license", "authors", "source", "platforms", "source_files", "resource_bundles", "vendored_frameworks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 364130, "name" : "Ride the Bullet", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490982843} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ProtocolName": {"type": "string"}, "IntendedFor": {"type": "array", "items": {"type": "string"}}}, "required": ["ProtocolName", "IntendedFor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ProtocolName" : "fmap1_scan", "IntendedFor" : ["ses-1/func/sub-a_ses-1_task-rest_bold.nii.gz", "ses-1/func/sub-a_ses-1_task-fingertap_bold.nii.gz"]} | json_instruct | {"type": "object", "properties": {"ProtocolName": {"type": "string"}, "IntendedFor": {"type": "array", "items": {"type": "string"}}}, "required": ["ProtocolName", "IntendedFor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"strings": {"type": "object", "properties": {"title": {"type": "string"}, "texts": {"type": "string"}}, "required": ["title", "texts"]}}, "required": ["strings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"strings" : {"title" : "\u600e\u4e48\u8c03\u8282\u5b57\u4f53\u5927\u5c0f\u5462\uff1f", "texts" : "\u8c03\u8282\u4e0b\u65b9\u63a7\u5236\u6761\u53ef\u4ee5\u6539\u53d8\u9884\u89c8\u5b57\u4f53\u7684\u5927\u5c0f\uff0c\u5feb\u6765\u8bd5\u8bd5\u5427\u3002"}} | json_instruct | {"type": "object", "properties": {"strings": {"type": "object", "properties": {"title": {"type": "string"}, "texts": {"type": "string"}}, "required": ["title", "texts"]}}, "required": ["strings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"input": {"type": "object", "properties": {"value": {"type": "object", "properties": {"Id": {"type": "string"}, "Type": {"type": "string"}, "Name": {"type": "string"}, "TenantId": {"type": "string"}, "DisplayName": {"type": "string"}, "UpdatedTime": {"type": "string"}, "UpdatedBy": {"type": "string"}, "ParentId": {"type": "null"}, "ParentName": {"type": "null"}, "ParentDisplayName": {"type": "null"}, "Children": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string"}, "Id": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Children": {"type": "null"}}, "required": ["Type", "Id", "Name", "DisplayName", "Children"]}}}, "required": ["Id", "Type", "Name", "TenantId", "DisplayName", "UpdatedTime", "UpdatedBy", "ParentId", "ParentName", "ParentDisplayName", "Children"]}}, "required": ["value"]}}, "required": ["input"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", "contentVersion" : "1.0.0.0", "parameters" : {"input" : {"value" : {"Id" : "/providers/Microsoft.Management/managementGroups/4dbda3f1-592e-4847-a01c-1671d0cc077f", "Type" : "/providers/Microsoft.Management/managementGroups", "Name" : "4dbda3f1-592e-4847-a01c-1671d0cc077f", "TenantId" : "4dbda3f1-592e-4847-a01c-1671d0cc077f", "DisplayName" : "Tenant Root Group", "UpdatedTime" : "2021-01-27T20:07:17.3161387Z", "UpdatedBy" : "Tenant Backfill Job", "ParentId" : null, "ParentName" : null, "ParentDisplayName" : null, "Children" : [{"Type" : "/providers/Microsoft.Management/managementGroups", "Id" : "/providers/Microsoft.Management/managementGroups/campus-mg", "Name" : "campus-mg", "DisplayName" : "campus-mg", "Children" : null}, {"Type" : "/providers/Microsoft.Management/managementGroups", "Id" : "/providers/Microsoft.Management/managementGroups/EnvironnementOrganisationnel", "Name" : "EnvironnementOrganisationnel", "DisplayName" : "OQLF", "Children" : null}, {"Type" : "/providers/Microsoft.Management/managementGroups", "Id" : "/providers/Microsoft.Management/managementGroups/RetraiteQcEnvExperimentation", "Name" : "RetraiteQcEnvExperimentation", "DisplayName" : "RetraiteQcExp\u00e9rimentation", "Children" : null}, {"Type" : "/subscriptions", "Id" : "/subscriptions/fefd6011-af8c-4269-8372-c5a7183d91d3", "Name" : "fefd6011-af8c-4269-8372-c5a7183d91d3", "DisplayName" : "Microsoft Azure Sponsorship (12k)", "Children" : null}]}}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "contentVersion": {"type": "string"}, "parameters": {"type": "object", "properties": {"input": {"type": "object", "properties": {"value": {"type": "object", "properties": {"Id": {"type": "string"}, "Type": {"type": "string"}, "Name": {"type": "string"}, "TenantId": {"type": "string"}, "DisplayName": {"type": "string"}, "UpdatedTime": {"type": "string"}, "UpdatedBy": {"type": "string"}, "ParentId": {"type": "null"}, "ParentName": {"type": "null"}, "ParentDisplayName": {"type": "null"}, "Children": {"type": "array", "items": {"type": "object", "properties": {"Type": {"type": "string"}, "Id": {"type": "string"}, "Name": {"type": "string"}, "DisplayName": {"type": "string"}, "Children": {"type": "null"}}, "required": ["Type", "Id", "Name", "DisplayName", "Children"]}}}, "required": ["Id", "Type", "Name", "TenantId", "DisplayName", "UpdatedTime", "UpdatedBy", "ParentId", "ParentName", "ParentDisplayName", "Children"]}}, "required": ["value"]}}, "required": ["input"]}}, "required": ["$schema", "contentVersion", "parameters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"axe.js": {"type": "string"}, "axe.min.js": {"type": "string"}}, "required": ["axe.js", "axe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"axe.js" : "sha256-JfZdassial9DkOcZsa+DSyRJFWt1qOg05ACXgAOuI9c=", "axe.min.js" : "sha256-Kt/vu2yfl5lSQb9NAZsKvUcmpjjuf1r76XQBIH3Pqhc="} | json_instruct | {"type": "object", "properties": {"axe.js": {"type": "string"}, "axe.min.js": {"type": "string"}}, "required": ["axe.js", "axe.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"/ffm": {"type": "string"}, "/_app": {"type": "string"}, "/_error": {"type": "string"}, "/_document": {"type": "string"}}, "required": ["/ffm", "/_app", "/_error", "/_document"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/ffm" : "bundles/pages/ffm.js", "/_app" : "bundles/pages/_app.js", "/_error" : "bundles/pages/_error.js", "/_document" : "bundles/pages/_document.js"} | json_instruct | {"type": "object", "properties": {"/ffm": {"type": "string"}, "/_app": {"type": "string"}, "/_error": {"type": "string"}, "/_document": {"type": "string"}}, "required": ["/ffm", "/_app", "/_error", "/_document"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "examples": {"type": "string"}}, "required": ["prepublish", "watch", "test", "examples"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fairmont": {"type": "string"}}, "required": ["fairmont"]}, "devDependencies": {"type": "object", "properties": {"amen": {"type": "string"}}, "required": ["amen"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "evie-wildcards", "version" : "1.0.0-alpha-01", "description" : "Event wildcard matching", "main" : "lib/index.js", "directories" : {"test" : "test"}, "scripts" : {"prepublish" : "coffee --nodejs --harmony --compile -o ./lib ./src", "watch" : "coffee --nodejs --harmony --compile --watch -o lib/ ./src", "test" : "coffee --nodejs --harmony test/index.coffee", "examples" : "coffee --nodejs --harmony examples/index.litcoffee"}, "repository" : {"type" : "git", "url" : "https://github.com/dyoder/evie-wildcards.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/dyoder/evie-wildcards/issues"}, "homepage" : "https://github.com/dyoder/evie-wildcards", "dependencies" : {"fairmont" : "^1.0.0-alpha-15"}, "devDependencies" : {"amen" : "^1.0.0-alpha-06"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}, "watch": {"type": "string"}, "test": {"type": "string"}, "examples": {"type": "string"}}, "required": ["prepublish", "watch", "test", "examples"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fairmont": {"type": "string"}}, "required": ["fairmont"]}, "devDependencies": {"type": "object", "properties": {"amen": {"type": "string"}}, "required": ["amen"]}}, "required": ["name", "version", "description", "main", "directories", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.