input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:server": {"type": "string"}, "dev:sass": {"type": "string"}, "build": {"type": "string"}, "build:static": {"type": "string"}, "build:sass": {"type": "string"}, "clean": {"type": "string"}}, "required": ["dev", "dev:server", "dev:sass", "build", "build:static", "build:sass", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "ejs": {"type": "string"}, "ejs-lint": {"type": "string"}, "express": {"type": "string"}, "ncp": {"type": "string"}, "node-fetch": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["bootstrap", "ejs", "ejs-lint", "express", "ncp", "node-fetch", "node-sass"]}, "devDependencies": {"type": "object", "properties": {"npm-run-all": {"type": "string"}}, "required": ["npm-run-all"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fumble", "version" : "1.0.0", "description" : "Starter template for ejs / scss projects", "main" : "index.js", "scripts" : {"dev" : "node-sass scss/style.scss static/css/style.css && run-p dev:server dev:sass", "dev:server" : "node server.js", "dev:sass" : "node-sass -w scss/style.scss static/css/style.css", "build" : "npm run clean && npm run build:sass && npm run build:static", "build:static" : "node utils/build.js", "build:sass" : "node-sass scss/style.scss static/css/style.css --output-style compressed", "clean" : "rm -rf build"}, "author" : "phulsechinmay", "license" : "ISC", "dependencies" : {"bootstrap" : "^4.5.0", "ejs" : "^3.1.3", "ejs-lint" : "^1.1.0", "express" : "^4.17.1", "ncp" : "^2.0.0", "node-fetch" : "^2.6.1", "node-sass" : "^4.14.1"}, "devDependencies" : {"npm-run-all" : "^4.1.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "dev:server": {"type": "string"}, "dev:sass": {"type": "string"}, "build": {"type": "string"}, "build:static": {"type": "string"}, "build:sass": {"type": "string"}, "clean": {"type": "string"}}, "required": ["dev", "dev:server", "dev:sass", "build", "build:static", "build:sass", "clean"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "ejs": {"type": "string"}, "ejs-lint": {"type": "string"}, "express": {"type": "string"}, "ncp": {"type": "string"}, "node-fetch": {"type": "string"}, "node-sass": {"type": "string"}}, "required": ["bootstrap", "ejs", "ejs-lint", "express", "ncp", "node-fetch", "node-sass"]}, "devDependencies": {"type": "object", "properties": {"npm-run-all": {"type": "string"}}, "required": ["npm-run-all"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$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"}, "url": {"type": "string"}, "title": {"type": "string"}, "ques": {"type": "string"}, "answers": {"type": "array", "items": {"type": "object", "properties": {"ansID": {"type": "integer"}, "ans": {"type": "string"}}, "required": ["ansID", "ans"]}}}, "required": ["id", "url", "title", "ques", "answers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 1572, "url" : "www.dofactory.com/topic/1572/call-different-count-methods-on-builder-pattern.aspx", "title" : "Call Different Count Methods on Builder Pattern", "ques" : "Hi ,\r\n In dofactory pattern examples which name is builder pattern like below, i want to call methods like that.\r\n\r\n For example :\r\n MotorCycleBuilder i want to call vehicleBuilder.BuildFrame(); vehicleBuilder.BuildEngine(); \r\n CarBuilder i want to call vehicleBuilder.BuildFrame(); vehicleBuilder.BuildEngine(); vehicleBuilder.BuildWheels();\r\n \r\n ScooterBuilder i want to call vehicleBuilder.BuildFrame(); vehicleBuilder.BuildEngine(); vehicleBuilder.BuildWheels(); vehicleBuilder.BuildDoors(); like these methods.\r\n\r\n Shortly i want to call different combinations of these methods on Builder Directors .How can i do or is there a pattern?\r\n \r\n\r\n class Shop\r\n {\r\n // Builder uses a complex series of steps\r\n public void Construct(VehicleBuilder vehicleBuilder)\r\n {\r\n vehicleBuilder.BuildFrame();\r\n vehicleBuilder.BuildEngine();\r\n vehicleBuilder.BuildWheels();\r\n vehicleBuilder.BuildDoors();\r\n }\r\n }\r\n\r\nthanks.\r\n\r\nBest Regards.\r\n", "answers" : [{"ansID" : 1758, "ans" : ":( sorry for the silly question ,i found there has been TemplateMethodPattern , dont care it"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "url": {"type": "string"}, "title": {"type": "string"}, "ques": {"type": "string"}, "answers": {"type": "array", "items": {"type": "object", "properties": {"ansID": {"type": "integer"}, "ans": {"type": "string"}}, "required": ["ansID", "ans"]}}}, "required": ["id", "url", "title", "ques", "answers"], "$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"}, "license": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@wide/styles-utils": {"type": "string"}}, "required": ["@wide/styles-utils"]}, "devDependencies": {"type": "object", "properties": {"@wide/stylelint-config": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-property-sort-order-smacss": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-scss": {"type": "string"}}, "required": ["@wide/stylelint-config", "stylelint", "stylelint-config-property-sort-order-smacss", "stylelint-order", "stylelint-scss"]}}, "required": ["name", "version", "description", "license", "author", "contributors", "repository", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@wide/styles-reset", "version" : "2.1.1", "description" : "Restore CSS base for all browser.", "license" : "MIT", "author" : "Julien Martins Da Costa (https://github.com/jdacosta)", "contributors" : ["Aymeric Assier (https://github.com/myeti)", "Julien Martins Da Costa (https://github.com/jdacosta)", "S\u00e9bastien Robillard (https://github.com/robiseb)"], "repository" : {"type" : "git", "url" : "https://github.com/wide/styles-reset.git"}, "scripts" : {"lint" : "stylelint *.scss src --formatter verbose"}, "engines" : {"node" : ">=12.18.0"}, "dependencies" : {"@wide/styles-utils" : "^2.0.3"}, "devDependencies" : {"@wide/stylelint-config" : "^2.1.1", "stylelint" : "^13.13.1", "stylelint-config-property-sort-order-smacss" : "^7.1.0", "stylelint-order" : "^4.1.0", "stylelint-scss" : "^3.19.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"@wide/styles-utils": {"type": "string"}}, "required": ["@wide/styles-utils"]}, "devDependencies": {"type": "object", "properties": {"@wide/stylelint-config": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-property-sort-order-smacss": {"type": "string"}, "stylelint-order": {"type": "string"}, "stylelint-scss": {"type": "string"}}, "required": ["@wide/stylelint-config", "stylelint", "stylelint-config-property-sort-order-smacss", "stylelint-order", "stylelint-scss"]}}, "required": ["name", "version", "description", "license", "author", "contributors", "repository", "scripts", "engines", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "null"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ru": {"type": "string"}}, "required": ["name:ru"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Machinga", "iso2" : "MW-MH", "admin_level" : 4, "osm_id" : 7345874, "wikidata_id" : "Q198585", "wikipedia_id" : "en:Machinga District", "population" : null, "countrylevel_id" : "iso2:MW-MH", "osm_data" : {"localname" : "Machinga", "official_name" : "", "alltags" : {"name:ru" : "\u041c\u0430\u0447\u0438\u043d\u0433\u0430"}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[35.162, -15.209], [35.799, -15.205], [35.919, -14.895], [35.77, -14.554], [35.284, -14.778], [35.162, -15.209]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"type": "null"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {"name:ru": {"type": "string"}}, "required": ["name:ru"]}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "55664", "name" : {"en" : "Tingri"}, "country" : "CN", "region" : "XZ", "identifiers" : {"wmo" : "55664"}, "location" : {"latitude" : 28.6333, "longitude" : 87.0833, "elevation" : 4302}, "timezone" : "Asia/Urumqi"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "ownership-status", "organisation", "deliverable", "start-date", "planning-permission-status", "site", "notes", "site-plan-url", "hectares", "point", "name", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.156196, 51.238176]}, "properties" : {"planning-permission-history" : "https://planning.reigate-banstead.gov.uk/online-applications/propertyDetails.do?activeTab=relatedCases&keyVal=IEXLSZMVR5000", "maximum-net-dwellings" : "35", "minimum-net-dwellings" : "35", "ownership-status" : "not owned by a public authority", "organisation" : "local-authority-eng:REI", "deliverable" : "yes", "start-date" : "2017-12-31", "planning-permission-status" : "Not permissioned", "site" : "RBBCBLR024", "notes" : "The site is allocated as part of a wider site allocation (DMP site allocation policy ERM2/3). Delivery of the site is dependent upon DMP Policy MLS1 \u201cManaging Land Supply.", "site-plan-url" : "http://www.reigate-banstead.gov.uk/downloads/file/3841/rbbcblr024", "hectares" : "1.68", "point" : "POINT(-0.156196 51.238176)", "name" : "RBBCBLR024", "site-address" : "Former Copyhold Works, Nutfield Road, Redhill", "slug" : "/brownfield-land/local-authority-eng/REI/RBBCBLR024", "entity" : 491381, "entry-date" : "2020-12-31"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"planning-permission-history": {"type": "string"}, "maximum-net-dwellings": {"type": "string"}, "minimum-net-dwellings": {"type": "string"}, "ownership-status": {"type": "string"}, "organisation": {"type": "string"}, "deliverable": {"type": "string"}, "start-date": {"type": "string"}, "planning-permission-status": {"type": "string"}, "site": {"type": "string"}, "notes": {"type": "string"}, "site-plan-url": {"type": "string"}, "hectares": {"type": "string"}, "point": {"type": "string"}, "name": {"type": "string"}, "site-address": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["planning-permission-history", "maximum-net-dwellings", "minimum-net-dwellings", "ownership-status", "organisation", "deliverable", "start-date", "planning-permission-status", "site", "notes", "site-plan-url", "hectares", "point", "name", "site-address", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"add_total_row": {"type": "integer"}, "apply_user_permissions": {"type": "integer"}, "creation": {"type": "string"}, "disabled": {"type": "integer"}, "docstatus": {"type": "integer"}, "doctype": {"type": "string"}, "is_standard": {"type": "string"}, "modified": {"type": "string"}, "modified_by": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "owner": {"type": "string"}, "query": {"type": "string"}, "ref_doctype": {"type": "string"}, "report_name": {"type": "string"}, "report_type": {"type": "string"}}, "required": ["add_total_row", "apply_user_permissions", "creation", "disabled", "docstatus", "doctype", "is_standard", "modified", "modified_by", "module", "name", "owner", "query", "ref_doctype", "report_name", "report_type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"add_total_row" : 1, "apply_user_permissions" : 1, "creation" : "2015-08-21 15:23:47.099704", "disabled" : 0, "docstatus" : 0, "doctype" : "Report", "is_standard" : "Yes", "modified" : "2015-08-21 15:24:49.555598", "modified_by" : "Administrator", "module" : "Hotel", "name" : "Daily Sale Report", "owner" : "Administrator", "query" : "select \n curdate() as 'Date',\n item as 'Item:Item:200',\n quantity as 'Qty',\n rate as 'Rate',\n amount as 'Amount:Currency:100' \nfrom\n `tabHotelorder` \nwhere \n order_status='Completed' and date=curdate()", "ref_doctype" : "Sale", "report_name" : "Daily Sale Report", "report_type" : "Query Report"} | json_instruct | {"type": "object", "properties": {"add_total_row": {"type": "integer"}, "apply_user_permissions": {"type": "integer"}, "creation": {"type": "string"}, "disabled": {"type": "integer"}, "docstatus": {"type": "integer"}, "doctype": {"type": "string"}, "is_standard": {"type": "string"}, "modified": {"type": "string"}, "modified_by": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "owner": {"type": "string"}, "query": {"type": "string"}, "ref_doctype": {"type": "string"}, "report_name": {"type": "string"}, "report_type": {"type": "string"}}, "required": ["add_total_row", "apply_user_permissions", "creation", "disabled", "docstatus", "doctype", "is_standard", "modified", "modified_by", "module", "name", "owner", "query", "ref_doctype", "report_name", "report_type"], "$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"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "null"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "yearn4.finance", "symbol" : "YF4", "id" : "0x38ACeFAd338b870373fB8c810fE705569E1C7225", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/yearn4-finance", "market_cap_usd" : 0.0, "market_cap_rank" : null, "24_hr_volume_usd" : 0.0, "logoURI" : "https://raw.githubusercontent.com/poolsharks-protocol/token-metadata/master/blockchains/ethereum/assets/0x38ACeFAd338b870373fB8c810fE705569E1C7225/logo.png"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "null"}, "24_hr_volume_usd": {"type": "number"}, "logoURI": {"type": "string"}}, "required": ["name", "symbol", "id", "decimals", "coingecko_url", "market_cap_usd", "market_cap_rank", "24_hr_volume_usd", "logoURI"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "514041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514120": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "514041", "119030", "N.A.//", "514120", "119XXX"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 5, "514041" : {"count" : 1}, "119030" : {"count" : 1}, "N.A.//" : {"count" : 1}, "514120" : {"count" : 1}, "119XXX" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "514041": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "514120": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "119XXX": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "514041", "119030", "N.A.//", "514120", "119XXX"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "08bd50c5-5c3f-4914-9319-d015ad32a368", "name" : "Scenario: To login with email and pw", "children" : ["b113de0e-a4da-430c-8d75-7f8e671e1c93"], "befores" : [{"name" : "steps.Hooks.runsBeforeAnyScenario()", "status" : "passed", "stage" : "finished", "steps" : [], "attachments" : [], "parameters" : [], "start" : 1628760495397, "stop" : 1628760495413}], "afters" : [{"name" : "steps.Hooks.runsAfterAnyscenario()", "status" : "passed", "stage" : "finished", "steps" : [], "attachments" : [], "parameters" : [], "start" : 1628760520436, "stop" : 1628760520437}], "links" : [], "start" : 1628760495397, "stop" : 1628760520440} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "afters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stage": {"type": "string"}, "steps": {"type": "array", "items": {}}, "attachments": {"type": "array", "items": {}}, "parameters": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "stage", "steps", "attachments", "parameters", "start", "stop"]}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "name", "children", "befores", "afters", "links", "start", "stop"], "$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"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d426-1", "text" : "V/ SjQJ, O 6\n_4^_^ 9 6. /\u00a3L\u2014\n_/ *T.. s' _ yy ?/?,S\u00a3~"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "sapikamayaw", "h" : [{"d" : [{"f" : "\u60f3\u6293\u98df\u3001\u6476\u98df\u3002", "e" : ["\ufff9`Sapikamay~`aw~ `niyam~ `to~ `holo~.\ufffa\ufffb\u6211\u5011\u60f3\u6293\u98ef\u5403\u3002"]}]}], "stem" : "kamay"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x94195826ff3fd6ec11513c5d61d3931e653f1505", "tool" : "osiris", "start" : 1564612053.6677804, "end" : 1564612056.4760294, "duration" : 2.808248996734619, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"RecordRTC.js": {"type": "string"}, "RecordRTC.min.js": {"type": "string"}}, "required": ["RecordRTC.js", "RecordRTC.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"RecordRTC.js" : "sha256-YjSJcY35LtHHdwZnumbnXATM1mgRFK0ANfDJFPQ7Yps=", "RecordRTC.min.js" : "sha256-1Sen7KytdbSHTHBvcvOyaG5HDzg0212TkUMwmkxkz+8="} | json_instruct | {"type": "object", "properties": {"RecordRTC.js": {"type": "string"}, "RecordRTC.min.js": {"type": "string"}}, "required": ["RecordRTC.js", "RecordRTC.min.js"], "$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"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "QmQ2s2w2kfgryesou3W4UMV24Hx28ekUvgy3uKRqaoDZED", "title" : "Marketing baby", "body" : "Look, I know this launch will get us all rich but right now the community is just slackin badly. I mean the telegram isn't too active and we only have 5 active proposals right now. I propose we start using some of the eth for marketing, albeit it doesn't have to be on a big scale but if we could integrate some more communities into the sav3 community then we could build more hype for any prototypes tim may release.", "choices" : ["Yeah use some of the eth", "No, more marketing is pointless", "Tim will sav3 us all anyway"], "start" : 1606824000, "end" : 1607169600, "snapshot" : "11360055", "state" : "closed", "author" : "0x9C2ABBdbCC7A3e4957DcAFAfFBad92402fD9B195", "space" : {"id" : "sav3", "name" : "SAV3"}, "votes" : 7, "votes_data" : [{"id" : "QmXPeJxSs7zkJFothRcXHZ5yGEJVVE3bUebNhKmwp9t8Ri", "voter" : "0x76A0B891dA2637f15eD7b0B5A3E98885487EDc5E", "created" : 1607104278, "choice" : 1, "space" : {"id" : "sav3"}}, {"id" : "QmdA1bWHsTosBqEfJksjvCWvReYWneA9rkPq9ASD4fjoXj", "voter" : "0xF203CA86324B19c4EC66E5d545352251fd50804C", "created" : 1607037285, "choice" : 1, "space" : {"id" : "sav3"}}, {"id" : "Qmc3L6H27sucXQZcVLGwTxTdSGX7URqShWa1sJYoWMjDKx", "voter" : "0x1578943768C9A0d0C4732B66492793aea676fd03", "created" : 1607032468, "choice" : 3, "space" : {"id" : "sav3"}}, {"id" : "QmcMiXAsUVn6CBD36oW7PcKYgfmKnoduu1trpei4YGhPF3", "voter" : "0x7F202a4b8Cdb2176cD64e55f3Db3cbF5c7d2cf6F", "created" : 1606965023, "choice" : 3, "space" : {"id" : "sav3"}}, {"id" : "QmS9NNNAU1LtxLvtbpW4ni5n6qYsMyCbampTqNZyxUMFgW", "voter" : "0xC58EACB4F5b8C702133D7E7Be953BD194Bc77c14", "created" : 1606945802, "choice" : 3, "space" : {"id" : "sav3"}}, {"id" : "QmTPEjiRBmHGm6FLcJDj7nHdpxvBNujPRNbN1y8p9pfP7k", "voter" : "0x4926a3d7603E65E5Ec32A1dd77cdCFc639E6b0f8", "created" : 1606875361, "choice" : 1, "space" : {"id" : "sav3"}}, {"id" : "QmY39TCdikao2NRSGDeUtzKCrPKSnbYkvf29kMzNkmbG2c", "voter" : "0x28EbA6Ee9ED023aCd26316537b07A08F6Ae56daA", "created" : 1606824532, "choice" : 2, "space" : {"id" : "sav3"}}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"file": {"type": "string"}, "textdomain": {"type": "string"}, "translations": {"type": "object", "properties": {"4232fbe6436fa07e415b3fd034b9cadd": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["4232fbe6436fa07e415b3fd034b9cadd"]}}, "required": ["file", "textdomain", "translations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"file" : "site/templates/all-blog.php", "textdomain" : "site--templates--all-blog-php", "translations" : {"4232fbe6436fa07e415b3fd034b9cadd" : {"text" : "Esti aici:"}}} | json_instruct | {"type": "object", "properties": {"file": {"type": "string"}, "textdomain": {"type": "string"}, "translations": {"type": "object", "properties": {"4232fbe6436fa07e415b3fd034b9cadd": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}, "required": ["4232fbe6436fa07e415b3fd034b9cadd"]}}, "required": ["file", "textdomain", "translations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "date": {"type": "string"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "date", "fc", "gender", "id", "mda", "movements", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"activePlaceCount" : 0, "birth" : {"place" : {"name" : "Rochdale, United Kingdom", "placeName" : "Rochdale", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1950}}, "date" : "born 1950", "fc" : "Andrew Lord", "gender" : "Male", "id" : 7268, "mda" : "Lord, Andrew", "movements" : [], "totalWorks" : 5, "url" : "http://www.tate.org.uk/art/artists/andrew-lord-7268"} | json_instruct | {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "date": {"type": "string"}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {}}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "date", "fc", "gender", "id", "mda", "movements", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "evil-gerrid__DROPS__cloudy-gerrid-soup", "type" : "DROPS", "start" : "evil-gerrid", "end" : "cloudy-gerrid-soup"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "start", "end"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "fix": {"type": "string"}, "format": {"type": "string"}, "format:check": {"type": "string"}}, "required": ["build", "lint", "fix", "format", "format:check"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chrome": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chrome", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "prettier", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "send_vrc", "version" : "1.0.5", "description" : "One click URL to VRChat", "main" : "send.js", "scripts" : {"build" : "tsc && cp ./static/* ./dist", "lint" : "eslint .", "fix" : "eslint --fix .", "format" : "prettier --write .", "format:check" : "prettier --check ."}, "repository" : {"type" : "git", "url" : "git+https://github.com/bootjp/send_vrc.git"}, "author" : "bootjp / Yoshiaki Ueda <contact@bootjp.me>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/bootjp/send_vrc/issues"}, "homepage" : "https://github.com/bootjp/send_vrc", "devDependencies" : {"@types/chrome" : "0.0.180", "@typescript-eslint/eslint-plugin" : "5.16.0", "@typescript-eslint/parser" : "5.16.0", "eslint" : "8.11.0", "eslint-config-prettier" : "8.5.0", "prettier" : "2.6.1", "typescript" : "4.6.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "fix": {"type": "string"}, "format": {"type": "string"}, "format:check": {"type": "string"}}, "required": ["build", "lint", "fix", "format", "format:check"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/chrome": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "prettier": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chrome", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "prettier", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"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": "null"}, "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-j6w8-85rp-mrwv", "modified" : "2022-04-23T00:40:35Z", "published" : "2022-04-23T00:40:35Z", "aliases" : ["CVE-2012-2087"], "details" : "ISPConfig 3.0.4.3: the \"Add new Webdav user\" can chmod and chown entire server from client interface.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2012-2087"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/74739"}, {"type" : "WEB", "url" : "https://www.securityfocus.com/bid/52936"}, {"type" : "WEB", "url" : "http://www.openwall.com/lists/oss-security/2012/04/08/3"}, {"type" : "WEB", "url" : "http://www.openwall.com/lists/oss-security/2012/04/09/4"}], "database_specific" : {"cwe_ids" : [], "severity" : null, "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": "null"}, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "WHILST WITH GREAT ART AND SUBTILTY THEY DID NO MORE BUT PERPLEX AND CONFOUND THE SIGNIFICATION OF WORDS,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/8505.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "short_name", "url"]}}}, "required": ["short_name", "name", "description", "author", "start_url", "display", "theme_color", "background_color", "icons", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"short_name" : "SDPM", "name" : "SDPM - Simulador Did\u00e1tico de Pagina\u00e7\u00e3o de Mem\u00f3ria", "description" : "Simulador desenvolvido como Trabalho de Conclus\u00e3o de Curso, apresentado ao curso de Bacharelado em Ci\u00eancia da Computa\u00e7\u00e3o da Faculdade de Ci\u00eancias Exatas e de Tecnologia da Universidade Tuiuti do Paran\u00e1, como requisito \u00e0 obten\u00e7\u00e3o ao grau de Bacharel.", "author" : "Sara Cristina Ferreira", "start_url" : ".", "display" : "standalone", "theme_color" : "#001529", "background_color" : "#ffffff", "icons" : [{"src" : "favicon.ico", "sizes" : "64x64 32x32 24x24 16x16", "type" : "image/x-icon"}, {"src" : "logo128.png", "type" : "image/png", "sizes" : "128x128"}, {"src" : "logo512.png", "type" : "image/png", "sizes" : "512x512"}], "shortcuts" : [{"name" : "Simulador", "short_name" : "Simulador", "url" : "/"}, {"name" : "Hist\u00f3rico", "short_name" : "Hist\u00f3rico", "url" : "/history"}, {"name" : "Sobre os algoritmos", "short_name" : "Sobre os algoritmos", "url" : "/aboutAlgorithms"}, {"name" : "obre o simulador", "short_name" : "obre o simulador", "url" : "/aboutSimulator"}]} | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "shortcuts": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "short_name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "short_name", "url"]}}}, "required": ["short_name", "name", "description", "author", "start_url", "display", "theme_color", "background_color", "icons", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Maurine": {"type": "integer"}, "Edison": {"type": "integer"}, "Danielle": {"type": "integer"}, "Kathryne": {"type": "integer"}, "Millie": {"type": "integer"}, "Henderson": {"type": "integer"}, "Willa": {"type": "integer"}, "Marlen": {"type": "integer"}, "Jayde": {"type": "integer"}, "Maureen": {"type": "integer"}, "Emma": {"type": "integer"}, "Mathew": {"type": "integer"}, "Kayden": {"type": "integer"}, "Gilda": {"type": "integer"}, "Tia": {"type": "integer"}, "Ron": {"type": "integer"}, "Florence": {"type": "integer"}, "Althea": {"type": "integer"}, "Ellsworth": {"type": "integer"}, "Grant": {"type": "integer"}, "Meagan": {"type": "integer"}, "Zelda": {"type": "integer"}, "Flavio": {"type": "integer"}, "Nona": {"type": "integer"}, "Larue": {"type": "integer"}, "Mateo": {"type": "integer"}, "Camren": {"type": "integer"}, "Grayce": {"type": "integer"}, "Dayne": {"type": "integer"}, "Everett": {"type": "integer"}}, "required": ["Maurine", "Edison", "Danielle", "Kathryne", "Millie", "Henderson", "Willa", "Marlen", "Jayde", "Maureen", "Emma", "Mathew", "Kayden", "Gilda", "Tia", "Ron", "Florence", "Althea", "Ellsworth", "Grant", "Meagan", "Zelda", "Flavio", "Nona", "Larue", "Mateo", "Camren", "Grayce", "Dayne", "Everett"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Maurine" : 713, "Edison" : 429, "Danielle" : 691, "Kathryne" : 720, "Millie" : 492, "Henderson" : 781, "Willa" : 411, "Marlen" : 580, "Jayde" : 140, "Maureen" : 109, "Emma" : 512, "Mathew" : 910, "Kayden" : 219, "Gilda" : 364, "Tia" : 855, "Ron" : 712, "Florence" : 393, "Althea" : 232, "Ellsworth" : 381, "Grant" : 550, "Meagan" : 557, "Zelda" : 5, "Flavio" : 639, "Nona" : 58, "Larue" : 44, "Mateo" : 876, "Camren" : 293, "Grayce" : 763, "Dayne" : 368, "Everett" : 874} | json_instruct | {"type": "object", "properties": {"Maurine": {"type": "integer"}, "Edison": {"type": "integer"}, "Danielle": {"type": "integer"}, "Kathryne": {"type": "integer"}, "Millie": {"type": "integer"}, "Henderson": {"type": "integer"}, "Willa": {"type": "integer"}, "Marlen": {"type": "integer"}, "Jayde": {"type": "integer"}, "Maureen": {"type": "integer"}, "Emma": {"type": "integer"}, "Mathew": {"type": "integer"}, "Kayden": {"type": "integer"}, "Gilda": {"type": "integer"}, "Tia": {"type": "integer"}, "Ron": {"type": "integer"}, "Florence": {"type": "integer"}, "Althea": {"type": "integer"}, "Ellsworth": {"type": "integer"}, "Grant": {"type": "integer"}, "Meagan": {"type": "integer"}, "Zelda": {"type": "integer"}, "Flavio": {"type": "integer"}, "Nona": {"type": "integer"}, "Larue": {"type": "integer"}, "Mateo": {"type": "integer"}, "Camren": {"type": "integer"}, "Grayce": {"type": "integer"}, "Dayne": {"type": "integer"}, "Everett": {"type": "integer"}}, "required": ["Maurine", "Edison", "Danielle", "Kathryne", "Millie", "Henderson", "Willa", "Marlen", "Jayde", "Maureen", "Emma", "Mathew", "Kayden", "Gilda", "Tia", "Ron", "Florence", "Althea", "Ellsworth", "Grant", "Meagan", "Zelda", "Flavio", "Nona", "Larue", "Mateo", "Camren", "Grayce", "Dayne", "Everett"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "description": {"type": "string"}, "book": {"type": "string"}, "total": {"type": "integer"}, "current": {"type": "integer"}, "next": {"type": "string"}, "prev": {"type": "string"}}, "required": ["title", "text", "description", "book", "total", "current", "next", "prev"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "\u5e84\u5b50", "text" : "\u9690\u6545\u4e0d\u81ea\u9690\u3002\u53e4\u4e4b\u6240\u8c13\u9690\u58eb\u8005\uff0c\u975e\u4f0f\u5176\u8eab\u800c\u5f17\u89c1\u4e5f\uff0c\u975e\u95ed\u5176\u8a00\u800c\u4e0d\u51fa\u4e5f\uff0c\u975e\u85cf\u5176\u77e5\u800c\u4e0d\u53d1\u4e5f\uff0c\u65f6\u547d\u5927\u8c2c\u4e5f\u3002\u5f53\u65f6\u547d\u800c\u5927\u884c\u4e4e\u5929\u4e0b\uff0c\u5219\u53cd\u4e00\u65e0\u8ff9\uff1b\u4e0d\u5f53\u65f6\u547d\u800c\u5927\u7a77\u4e4e\u5929\u4e0b\uff0c\u5219\u6df1\u6839\u5b81\u6781\u800c\u5f85\uff1a\u6b64\u5b58\u8eab\u4e4b\u9053\u4e5f\u3002", "description" : "\u8c08\u5230\u9690\u6ca1\u4e8e\u4e16\uff0c\u65f6\u9022\u660f\u6697\u4e0d\u5fc5\u97ec\u5149\u4fbf\u5df2\u81ea\u9690\u3002\u53e4\u65f6\u5019\u7684\u6240\u8c13\u9690\u58eb\uff0c\u5e76\u4e0d\u662f\u4e3a\u4e86\u9690\u4f0f\u8eab\u5f62\u800c\u4e0d\u613f\u663e\u73b0\u4e8e\u4e16\uff0c\u5e76\u4e0d\u662f\u4e3a\u4e86\u7f04\u9ed8\u4e0d\u8a00\u800c\u4e0d\u613f\u5410\u9732\u771f\u60c5\uff0c\u4e5f\u4e0d\u662f\u4e3a\u4e86\u6df1\u85cf\u624d\u667a\u800c\u4e0d\u613f\u6709\u6240\u53d1\u6325\uff0c\u662f\u56e0\u4e3a\u65f6\u9047\u548c\u547d\u8fd0\u4e56\u5984\u3001\u80cc\u8c2c\u554a\u3002\u5f53\u65f6\u9047\u548c\u547d\u8fd0\u987a\u5e94\u81ea\u7136\u800c\u901a\u884c\u4e8e\u5929\u4e0b\uff0c\u5c31\u4f1a\u8fd4\u5f52\u6d51\u6c8c\u7eaf\u4e00\u4e4b\u5883\u800c\u4e0d\u663e\u9732\u8e2a\u8ff9\u3002\u5f53\u65f6\u9047\u4e0d\u987a\u3001\u547d\u8fd0\u4e56\u8fdd\u800c\u7a77\u56f0\u4e8e\u5929\u4e0b\uff0c\u5c31\u56fa\u5b88\u6839\u672c\u3001\u4fdd\u6709\u5b81\u5bc2\u81f3\u6781\u4e4b\u6027\u800c\u9759\u5fc3\u7b49\u5f85\uff1b\u8fd9\u5c31\u662f\u4fdd\u5b58\u81ea\u8eab\u7684\u65b9\u6cd5\u3002", "book" : "ZhuangZi", "total" : 592, "current" : 242, "next" : "243.json", "prev" : "241.json"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "description": {"type": "string"}, "book": {"type": "string"}, "total": {"type": "integer"}, "current": {"type": "integer"}, "next": {"type": "string"}, "prev": {"type": "string"}}, "required": ["title", "text", "description", "book", "total", "current", "next", "prev"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Dust and the Helix Nebula", "credit" : "NASA, JPL-Caltech, Kate Su (Steward Obs, U. Arizona) et al.", "explanation" : "Dust makes this cosmic eye look red. The eerie Spitzer Space Telescope image shows infrared radiation from the well-studied Helix Nebula (NGC 7293) a mere 700 light-years away in the constellation Aquarius. The two light-year diameter shroud of dust and gas around a central white dwarf has long been considered an excellent example of a planetary nebula, representing the final stages in the evolution of a sun-like star. But the Spitzer data show the nebula's central star itself is immersed in a surprisingly bright infrared glow. Models suggest the glow is produced by a dust debris disk. Even though the nebular material was ejected from the star many thousands of years ago, the close-in dust could be generated by collisions in a reservoir of objects analogous to our own solar system's Kuiper Belt or cometary Oort cloud. Formed in the distant planetary system, the comet-like bodies have otherwise survived even the dramatic late stages of the star's evolution.", "date" : "2007-02-23", "hdurl" : "https://apod.nasa.gov/apod/image/0702/helix_spitzer_2048.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/0702/helix_spitzer_720.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"city" : {"name" : "CAPIT\u00c3O", "state" : "RS"}, "borders" : [[{"lat" : -29.2380050438976, "lng" : -51.96458051897571}, {"lat" : -29.29159242594966, "lng" : -51.919370941415764}, {"lat" : -29.301123267424828, "lng" : -51.97679226555056}, {"lat" : -29.32876136744312, "lng" : -52.03350676752325}, {"lat" : -29.267627033960423, "lng" : -52.0366541006062}, {"lat" : -29.233827196567802, "lng" : -51.993587806232256}, {"lat" : -29.2380050438976, "lng" : -51.96458051897571}]]} | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1953, "sex" : "F", "n" : 5, "prop" : 2.59e-06}, {"year" : 1955, "sex" : "F", "n" : 7, "prop" : 3.49e-06}, {"year" : 1956, "sex" : "F", "n" : 5, "prop" : 2.43e-06}, {"year" : 1961, "sex" : "F", "n" : 10, "prop" : 4.82e-06}, {"year" : 1963, "sex" : "F", "n" : 12, "prop" : 6.04e-06}, {"year" : 1971, "sex" : "F", "n" : 8, "prop" : 4.57e-06}, {"year" : 1993, "sex" : "F", "n" : 5, "prop" : 2.54e-06}, {"year" : 2000, "sex" : "F", "n" : 5, "prop" : 2.51e-06}, {"year" : 2002, "sex" : "F", "n" : 8, "prop" : 4.05e-06}, {"year" : 2003, "sex" : "F", "n" : 5, "prop" : 2.49e-06}, {"year" : 2004, "sex" : "F", "n" : 5, "prop" : 2.48e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cdf_smooth" : {"x" : [1.6609201424493234, 3.2662096898817548, 4.602184862600442, 5.632061247123289, 6.553736054767127, 7.443551311571947, 8.346325980357452, 9.30758217469456, 10.35441095890411, 11.535232266768324, 12.94039839881989, 14.595937841095889, 16.620381366575888, 19.074611513964314, 22.68506843372062, 27.983245808219202, 50.27021821541814], "c" : [[-0.0024899870855840532, 0.01757946206665607, -2.0775517526382453e-17, 0.0050025], [0.0001418598249925607, 0.0055880113414666, 0.037190502902478106, 0.0400035], [-0.0009079769653458836, 0.006156574954055413, 0.052880978607147695, 0.100001], [-0.0007738144861298526, 0.0033512628511540533, 0.06267287623060648, 0.16], [-0.0006440654745360971, 0.0012116468981868689, 0.06687839519612643, 0.220005], [-0.0007106991163019694, -0.0005076509586835125, 0.06750482152382517, 0.28002], [-3.42151288774373e-05, -0.002432454436660433, 0.064850568849349, 0.340025], [-0.00011245740956435037, -0.0025311229503809226, 0.06007929933998397, 0.400085], [-0.00018047185976784026, -0.0028842939103696976, 0.054410285091656456, 0.460075], [0.0004087818961537083, -0.003523608962820934, 0.04684369684026864, 0.520005], [-5.218720754176305e-05, -0.0018003895352079005, 0.039362594463745106, 0.580005], [0.00020434884698311735, -0.0020595834766107936, 0.03297225689655837, 0.64], [-0.00011174119283366845, -0.0008185053759679692, 0.027145728553199133, 0.700005], [0.00011008179563361871, -0.0016412211884405605, 0.02110899346449555, 0.7600450000000001], [4.757825942029351e-06, -0.00044888444608677015, 0.013562757113294719, 0.820045], [4.986709092183164e-06, -0.0003732610288131842, 0.009206884559633394, 0.88001]]}} | json_instruct | {"type": "object", "properties": {"cdf_smooth": {"type": "object", "properties": {"x": {"type": "array", "items": {"type": "number"}}, "c": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["x", "c"]}}, "required": ["cdf_smooth"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}, "url": {"type": "string"}}, "required": ["identifier", "url"]}, "version": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["homepage", "description", "license", "version", "url", "hash", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"homepage" : "https://rammichael.com/textify", "description" : "A small tool which allows to copy text from dialogs and controls which don\u2019t allow it otherwise", "license" : {"identifier" : "GPL", "url" : "https://github.com/m417z/Textify/blob/master/LICENSE"}, "version" : "1.8.1", "url" : "https://pi.myportable.fun/MagicScoop/Utility/textify_1.8.1.zip", "hash" : "9F19707478031298CD8444FA24EBE8A71588A3A475F99A9D38F2FACFF733A561", "shortcuts" : [["Textify.exe", "Textify"]]} | json_instruct | {"type": "object", "properties": {"homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}, "url": {"type": "string"}}, "required": ["identifier", "url"]}, "version": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["homepage", "description", "license", "version", "url", "hash", "shortcuts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {}, "required": []}, "description": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "readme": {"type": "string"}, "version": {"type": "string"}}, "required": ["dependencies", "description", "name", "private", "readme", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {}, "description" : "Package that has no license info", "name" : "no-license", "private" : true, "readme" : "ERROR: No README data found!", "version" : "1.0.0"} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {}, "required": []}, "description": {"type": "string"}, "name": {"type": "string"}, "private": {"type": "boolean"}, "readme": {"type": "string"}, "version": {"type": "string"}}, "required": ["dependencies", "description", "name", "private", "readme", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"ayrton_tek": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["ayrton_tek"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"ayrton_tek" : {"title" : "ayrton_tek", "channel_id" : 141115369, "link" : "http://twitch.tv/ayrton_tek", "desc" : null, "plans" : {"$4.99" : "209009", "$9.99" : "209011", "$24.99" : "209012"}, "id" : "ayrton_tek", "first_seen" : "2017-07-01 14:55:05", "badge" : null, "badge_starting" : null, "badge_3m" : null, "badge_6m" : null, "badge_12m" : null, "badge_24m" : null, "badges" : null, "bits_badges" : null, "cheermote1" : null, "cheermote100" : null, "cheermote1000" : null, "cheermote5000" : null, "cheermote10000" : null, "set" : 209009, "emotes" : [{"code" : "ayrtonPaiTroll", "image_id" : 235823, "set" : 209009}, {"code" : "ayrtonUau", "image_id" : 235852, "set" : 209012}, {"code" : "ayrtonKappaPride", "image_id" : 235842, "set" : 209011}, {"code" : "ayrtonPokerFace", "image_id" : 256030, "set" : 209009}, {"code" : "ayrtonHehe", "image_id" : 256038, "set" : 209009}, {"code" : "ayrtonMouse", "image_id" : 289679, "set" : 209009}]}}} | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"ayrton_tek": {"type": "object", "properties": {"title": {"type": "string"}, "channel_id": {"type": "integer"}, "link": {"type": "string"}, "desc": {"type": "null"}, "plans": {"type": "object", "properties": {"$4.99": {"type": "string"}, "$9.99": {"type": "string"}, "$24.99": {"type": "string"}}, "required": ["$4.99", "$9.99", "$24.99"]}, "id": {"type": "string"}, "first_seen": {"type": "string"}, "badge": {"type": "null"}, "badge_starting": {"type": "null"}, "badge_3m": {"type": "null"}, "badge_6m": {"type": "null"}, "badge_12m": {"type": "null"}, "badge_24m": {"type": "null"}, "badges": {"type": "null"}, "bits_badges": {"type": "null"}, "cheermote1": {"type": "null"}, "cheermote100": {"type": "null"}, "cheermote1000": {"type": "null"}, "cheermote5000": {"type": "null"}, "cheermote10000": {"type": "null"}, "set": {"type": "integer"}, "emotes": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "image_id": {"type": "integer"}, "set": {"type": "integer"}}, "required": ["code", "image_id", "set"]}}}, "required": ["title", "channel_id", "link", "desc", "plans", "id", "first_seen", "badge", "badge_starting", "badge_3m", "badge_6m", "badge_12m", "badge_24m", "badges", "bits_badges", "cheermote1", "cheermote100", "cheermote1000", "cheermote5000", "cheermote10000", "set", "emotes"]}}, "required": ["ayrton_tek"]}}, "required": ["template", "channels"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1931-12-12": {"type": "string"}, "1931-12-19": {"type": "string"}, "1939-09-30": {"type": "string"}, "1939-10-21": {"type": "string"}, "1945-09-29": {"type": "string"}, "1945-10-16": {"type": "string"}, "1947-02-20": {"type": "string"}, "1947-03-05": {"type": "string"}, "1953-12-18": {"type": "string"}, "1953-12-29": {"type": "string"}}, "required": ["1931-12-12", "1931-12-19", "1939-09-30", "1939-10-21", "1945-09-29", "1945-10-16", "1947-02-20", "1947-03-05", "1953-12-18", "1953-12-29"]}, "lyID": {"type": "string"}, "PCode": {"type": "string"}}, "required": ["name", "history", "lyID", "PCode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : [{"name" : "\u516c\u52d9\u4eba\u54e1\u4ea4\u4ee3\u689d\u4f8b", "start_date" : "1931-12-12"}], "history" : {"1931-12-12" : "\u5236\u5b9a15\u689d", "1931-12-19" : "\u516c\u5e03", "1939-09-30" : "\u4fee\u6b63\u7b2c2, 4, 11\u689d", "1939-10-21" : "\u516c\u5e03", "1945-09-29" : "\u4fee\u6b63\u7b2c4, 6, 8, 11\u689d", "1945-10-16" : "\u516c\u5e03", "1947-02-20" : "\u4fee\u6b63\u7b2c2, 7, 8\u689d", "1947-03-05" : "\u516c\u5e03", "1953-12-18" : "\u4fee\u6b63\u524d[\u516c\u52d9\u54e1\u4ea4\u4ee3\u689d\u4f8b]\u70ba\u672c\u6cd5\n\u4e26\u4fee\u6b63\u5168\u658721\u689d", "1953-12-29" : "\u516c\u5e03"}, "lyID" : "04655", "PCode" : "A0030025"} | json_instruct | {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1931-12-12": {"type": "string"}, "1931-12-19": {"type": "string"}, "1939-09-30": {"type": "string"}, "1939-10-21": {"type": "string"}, "1945-09-29": {"type": "string"}, "1945-10-16": {"type": "string"}, "1947-02-20": {"type": "string"}, "1947-03-05": {"type": "string"}, "1953-12-18": {"type": "string"}, "1953-12-29": {"type": "string"}}, "required": ["1931-12-12", "1931-12-19", "1939-09-30", "1939-10-21", "1945-09-29", "1945-10-16", "1947-02-20", "1947-03-05", "1953-12-18", "1953-12-29"]}, "lyID": {"type": "string"}, "PCode": {"type": "string"}}, "required": ["name", "history", "lyID", "PCode"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "brag", "long" : "<i>Meaning:</i> a \"brag\" or \"lie\"; also a \"liar\".<br/><i>Usage:</i> liar, lie.<br/><i>Source:</i> from \"H908\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$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"}, "keywords": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "boolean"}}, "required": ["name", "maintainer"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "license": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "build": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "keywords", "authors", "repository", "version", "license", "frameworks", "platforms", "dependencies", "build"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "RC522_RFID_NFC_Utilities", "description" : "A few utilities to make reading records from NFC formatted cards possible", "keywords" : "RFID,NDEF,NFC,RC522", "authors" : [{"name" : "Ben Klopfenstein <benklop@gmail.com>", "maintainer" : true}, {"name" : "Brian Lough <brian.d.lough@gmail.com>", "maintainer" : false}], "repository" : {"type" : "git", "url" : "https://github.com/benklop/RC522_RFID_NFC_Utilities"}, "version" : "0.2.0", "license" : "MIT", "frameworks" : "arduino", "platforms" : "*", "dependencies" : [{"name" : "miguelbalboa/MFRC522"}], "build" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "maintainer": {"type": "boolean"}}, "required": ["name", "maintainer"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "license": {"type": "string"}, "frameworks": {"type": "string"}, "platforms": {"type": "string"}, "dependencies": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "build": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "description", "keywords", "authors", "repository", "version", "license", "frameworks", "platforms", "dependencies", "build"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "text": {"type": "string"}, "img": {"type": "string"}, "choices": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "next": {"type": "integer"}}, "required": ["text", "next"]}}}, "required": ["id", "text", "img", "choices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 5, "text" : "Die Jugendlichen sind begeistert, gerade hatte sich bei Ihnen n\u00e4mlich", "img" : "link", "choices" : [{"text" : "M\u00f6chtest Du noch ein Kennenlernspiel spielen? Z.B. 'Mein rechter, rechter Platz ist frei'", "next" : 50}, {"text" : "M\u00f6chtest Du ein Wissensspiel anbieten? Z.B. 'Stadt, Land, Fluss'", "next" : 44}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "text": {"type": "string"}, "img": {"type": "string"}, "choices": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "next": {"type": "integer"}}, "required": ["text", "next"]}}}, "required": ["id", "text", "img", "choices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"description": {"type": "string"}, "request": {"type": "object", "properties": {"uri": {"type": "string"}, "credentials": {"type": "string"}, "input": {"type": "object", "properties": {"id": {"type": "integer"}, "eventId": {"type": "string"}, "state": {"type": "string"}, "caseData": {"type": "object", "properties": {"template": {"type": "string"}, "replacements": {"type": "object", "properties": {"appealDate": {"type": "string"}, "localAuthorityPolicy": {"type": "null"}}, "required": ["appealDate", "localAuthorityPolicy"]}}, "required": ["template", "replacements"]}}, "required": ["id", "eventId", "state", "caseData"]}}, "required": ["uri", "credentials", "input"]}, "expectation": {"type": "object", "properties": {"status": {"type": "integer"}, "errors": {"type": "array", "items": {"type": "string"}}, "caseData": {"type": "object", "properties": {"template": {"type": "string"}, "replacements": {"type": "object", "properties": {"appealDate": {"type": "string"}, "localAuthorityPolicy": {"type": "null"}}, "required": ["appealDate", "localAuthorityPolicy"]}}, "required": ["template", "replacements"]}}, "required": ["status", "errors", "caseData"]}}, "required": ["description", "request", "expectation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "RIA-3951 Remove legal representative (Admin Officer) - localAuthorityPolicy missing", "request" : {"uri" : "/asylum/ccdAboutToStart", "credentials" : "AdminOfficer", "input" : {"id" : 1234, "eventId" : "removeLegalRepresentative", "state" : "appealSubmitted", "caseData" : {"template" : "minimal-appeal-submitted.json", "replacements" : {"appealDate" : "{$TODAY-20}", "localAuthorityPolicy" : null}}}}, "expectation" : {"status" : 200, "errors" : ["You cannot use this feature because the legal representative does not have a MyHMCTS account or the appeal was created before 10 February 2021.", "If you are a legal representative, you must contact all parties confirming you no longer represent this client."], "caseData" : {"template" : "minimal-appeal-submitted.json", "replacements" : {"appealDate" : "{$TODAY-20}", "localAuthorityPolicy" : null}}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "request": {"type": "object", "properties": {"uri": {"type": "string"}, "credentials": {"type": "string"}, "input": {"type": "object", "properties": {"id": {"type": "integer"}, "eventId": {"type": "string"}, "state": {"type": "string"}, "caseData": {"type": "object", "properties": {"template": {"type": "string"}, "replacements": {"type": "object", "properties": {"appealDate": {"type": "string"}, "localAuthorityPolicy": {"type": "null"}}, "required": ["appealDate", "localAuthorityPolicy"]}}, "required": ["template", "replacements"]}}, "required": ["id", "eventId", "state", "caseData"]}}, "required": ["uri", "credentials", "input"]}, "expectation": {"type": "object", "properties": {"status": {"type": "integer"}, "errors": {"type": "array", "items": {"type": "string"}}, "caseData": {"type": "object", "properties": {"template": {"type": "string"}, "replacements": {"type": "object", "properties": {"appealDate": {"type": "string"}, "localAuthorityPolicy": {"type": "null"}}, "required": ["appealDate", "localAuthorityPolicy"]}}, "required": ["template", "replacements"]}}, "required": ["status", "errors", "caseData"]}}, "required": ["description", "request", "expectation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"command": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"loglevel": {"type": "string"}}, "required": ["loglevel"]}, "run": {"type": "object", "properties": {"loglevel": {"type": "string"}, "stream": {"type": "boolean"}}, "required": ["loglevel", "stream"]}}, "required": ["bootstrap", "run"]}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["command", "npmClientArgs", "packages", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"command" : {"bootstrap" : {"loglevel" : "error"}, "run" : {"loglevel" : "error", "stream" : true}}, "npmClientArgs" : ["--no-progress", "--silent"], "packages" : ["binaries/*", "packages/*"], "version" : "independent"} | json_instruct | {"type": "object", "properties": {"command": {"type": "object", "properties": {"bootstrap": {"type": "object", "properties": {"loglevel": {"type": "string"}}, "required": ["loglevel"]}, "run": {"type": "object", "properties": {"loglevel": {"type": "string"}, "stream": {"type": "boolean"}}, "required": ["loglevel", "stream"]}}, "required": ["bootstrap", "run"]}, "npmClientArgs": {"type": "array", "items": {"type": "string"}}, "packages": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}}, "required": ["command", "npmClientArgs", "packages", "version"], "$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"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chokidar": {"type": "string"}, "easyioc": {"type": "string"}, "filefetcher": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "runway": {"type": "string"}}, "required": ["chokidar", "easyioc", "filefetcher", "handlebars", "lodash", "runway"]}}, "required": ["name", "version", "author", "description", "main", "repository", "keywords", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "encore", "version" : "0.0.30-beta", "author" : "Rob Christian", "description" : "A modular MVC framework for node.js.", "main" : "./main.js", "repository" : {"type" : "git", "url" : "http://github.com/rm-rf-etc/encore"}, "keywords" : ["framework", "mvc"], "license" : "MIT", "dependencies" : {"chokidar" : "^0.8.4", "easyioc" : "^0.1.13", "filefetcher" : "0.0.1", "handlebars" : "~1.2.0", "lodash" : "^4.0.1", "runway" : "~3.15.47-beta"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chokidar": {"type": "string"}, "easyioc": {"type": "string"}, "filefetcher": {"type": "string"}, "handlebars": {"type": "string"}, "lodash": {"type": "string"}, "runway": {"type": "string"}}, "required": ["chokidar", "easyioc", "filefetcher", "handlebars", "lodash", "runway"]}}, "required": ["name", "version", "author", "description", "main", "repository", "keywords", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ssni-969_1", "size" : 1108151755, "link" : "https://streamtape.com/e/rABKplLvPRUaoL", "created_at" : "2022\u5e7404\u670808\u65e5 12:36:55", "downloads" : 0, "linkid" : "rABKplLvPRUaoL", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "https://huyaimg.msstatic.com/avatar/1022/07/ec5fef7c7662720286fbbb12395390_180_135.jpg?1628178596?458648", "folderName" : "SSNI-969 \u56de\u9109\u4e0b\u88ab\u9130\u5c45\u5de8\u4e73\u592a\u592a\u8a98\u60d1\u5929\u5929\u63ee\u6c57\u5e79\u70ae \u9df2\u5c3e\u82bd\u8863", "thumbUrl" : "https://assets-cdn.jable.tv/contents/videos_screenshots/12000/12993/320x180/1.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe": {"type": "string"}, "avatar-img": {"type": "string"}, "folderName": {"type": "string"}, "thumbUrl": {"type": "string"}}, "required": ["name", "size", "link", "created_at", "downloads", "linkid", "convert", "achorname", "subscribe", "avatar-img", "folderName", "thumbUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_4dfbkh4i", "name" : "raging_brain"}, "date" : {"day" : 1619827200, "full" : 1619881245, "month" : 1619827200, "week" : 1619308800}, "id" : "t3_n2k0xs", "picture" : {"filesize" : 87903, "fullUrl" : "https://preview.redd.it/a7b2zka3xiw61.jpg?auto=webp&s=9cd5b21ed43524ac0e7b02f437408f73b922c00f", "hash" : "1c673bceea", "height" : 456, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAALABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAABQMG/8QAIxAAAgICAgEEAwAAAAAAAAAAAQIDEQQxACESBRMiIzJRcf/EABUBAQEAAAAAAAAAAAAAAAAAAAEC/8QAGBEBAAMBAAAAAAAAAAAAAAAAAQACETH/2gAMAwEAAhEDEQA/ADVwsX0PGaEY7COWFqlZSC27ZWIICgjvq/5yOPBFjYrTnJctH5e5Ie9AURX4mzo9G62OOiaRckqHbwiYOiE2ob91rmbz/pglhi+EQBpF6Xd65JTNdiFx7P/Z", "url" : "https://preview.redd.it/a7b2zka3xiw61.jpg?width=640&crop=smart&auto=webp&s=97848e45aa809ce67e8466c36d3ed673759000bc", "width" : 640}, "score" : {"comments" : 7, "downs" : 0, "ratio" : 0.98, "ups" : 81, "value" : 81}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Super happy how the \"water\" turned out. Rest is a bit bland. What would you improve?", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/n2k0xs/super_happy_how_the_water_turned_out_rest_is_a/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "dungeons:block/dark_rocky_dirt"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id_3682": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3682"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_3682" : {"title" : "Prester John", "language" : "English", "totaltime" : "7:44:54", "url_librivox" : "http://librivox.org/prester-john-by-john-buchan/", "url_iarchive" : "http://www.archive.org/details/prester_john_gh_librivox", "readers" : ["4191"], "authors" : "83", "genres" : "Action & Adventure Fiction"}} | json_instruct | {"type": "object", "properties": {"id_3682": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3682"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-81.267421, 37.880638], [-81.267148, 37.887151], [-81.171656, 37.8817], [-81.17219, 37.871783], [-81.172571, 37.870165], [-81.174036, 37.869517], [-81.172968, 37.869433], [-81.172663, 37.865488], [-81.177337, 37.810047], [-81.181443, 37.806725], [-81.184671, 37.805762], [-81.186338, 37.815914], [-81.191481, 37.822024], [-81.195173, 37.821594], [-81.196221, 37.8223], [-81.197639, 37.821131], [-81.201105, 37.82305], [-81.204022, 37.826556], [-81.208066, 37.828209], [-81.208775, 37.829685], [-81.212368, 37.828247], [-81.212801, 37.827299], [-81.212091, 37.825869], [-81.213948, 37.825541], [-81.213676, 37.831766], [-81.216951, 37.836372], [-81.22481, 37.838162], [-81.231943, 37.843228], [-81.237504, 37.845406], [-81.245531, 37.846754], [-81.251312, 37.849576], [-81.252463, 37.851043], [-81.253932, 37.855944], [-81.260414, 37.863225], [-81.261449, 37.870158], [-81.266842, 37.878129], [-81.267421, 37.880638]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 80282}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "hash", "extract_dir"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "hash", "extract_dir"]}}, "required": ["64bit", "32bit"]}, "bin": {"type": "array", "items": {"type": "string"}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}}, "required": ["64bit", "32bit"]}}, "required": ["architecture"]}}, "required": ["description", "homepage", "version", "license", "architecture", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "An idiomatic, modern, lean, fast, safe & pure rust implementation of git", "homepage" : "https://github.com/Byron/gitoxide", "version" : "0.7.0", "license" : "MIT", "architecture" : {"64bit" : {"url" : "https://github.com/Byron/gitoxide/releases/download/v0.7.0/gix-max-v0.7.0-x86_64-pc-windows-msvc.zip", "hash" : "bd6b78971aa77c0a5ff5c70c3421a615e9035593901ea876aa5d5c6a007a5f3b", "extract_dir" : "gix-max-v0.7.0-x86_64-pc-windows-msvc"}, "32bit" : {"url" : "https://github.com/Byron/gitoxide/releases/download/v0.7.0/gix-max-v0.7.0-i686-pc-windows-msvc.zip", "hash" : "5c6c8131d31016bb2b55ce37b17f64d9590f1259eabbad4863c0e23e117ac3e6", "extract_dir" : "gix-max-v0.7.0-i686-pc-windows-msvc.zip"}}, "bin" : ["gix.exe", "gixp.exe"], "checkver" : "github", "autoupdate" : {"architecture" : {"64bit" : {"url" : "https://github.com/Byron/gitoxide/releases/download/v$version/gix-max-v$version-x86_64-pc-windows-msvc.zip", "extract_dir" : "gix-max-v$version-x86_64-pc-windows-msvc"}, "32bit" : {"url" : "https://github.com/Byron/gitoxide/releases/download/v$version/gix-max-v$version-i686-pc-windows-msvc.zip", "extract_dir" : "gix-max-v$version-i686-pc-windows-msvc.zip"}}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "hash", "extract_dir"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "hash", "extract_dir"]}}, "required": ["64bit", "32bit"]}, "bin": {"type": "array", "items": {"type": "string"}}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}, "32bit": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}}, "required": ["64bit", "32bit"]}}, "required": ["architecture"]}}, "required": ["description", "homepage", "version", "license", "architecture", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "5249_cam-image_array_.jpg", "user/angle" : 0.418, "user/throttle" : 0.566, "user/mode" : "user", "pos/pos_x" : 48.0574, "pos/pos_y" : 0.5511425, "pos/pos_z" : 68.58584, "pos/speed" : 13.43113, "pos/cte" : -1.632599, "milliseconds" : 279466} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"% Change": {"type": "string"}, "LTP": {"type": "string"}, "Symbol": {"type": "string"}}, "required": ["% Change", "LTP", "Symbol"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"% Change" : "9.99", "LTP" : "1256.80", "Symbol" : "JALPA"}, {"% Change" : "2.00", "LTP" : "1326.00", "Symbol" : "SLBSL"}, {"% Change" : "2.00", "LTP" : "1672.90", "Symbol" : "SMB"}, {"% Change" : "1.94", "LTP" : "979.00", "Symbol" : "KBLD86"}, {"% Change" : "1.86", "LTP" : "1260.00", "Symbol" : "SABSL"}, {"% Change" : "1.39", "LTP" : "11.69", "Symbol" : "SFMF"}, {"% Change" : "1.32", "LTP" : "10.75", "Symbol" : "LEMF"}, {"% Change" : "1.07", "LTP" : "758.00", "Symbol" : "NLG"}, {"% Change" : "0.77", "LTP" : "9.18", "Symbol" : "KEF"}, {"% Change" : "0.52", "LTP" : "975.00", "Symbol" : "GBD80/81"}, {"% Change" : "0.47", "LTP" : "10.80", "Symbol" : "NICBF"}, {"% Change" : "0.41", "LTP" : "989.00", "Symbol" : "NLBBL"}, {"% Change" : "0.31", "LTP" : "1294.00", "Symbol" : "MSLB"}, {"% Change" : "0.29", "LTP" : "10.20", "Symbol" : "LUK"}, {"% Change" : "0.19", "LTP" : "842.90", "Symbol" : "SBD87"}, {"% Change" : "0.08", "LTP" : "13.09", "Symbol" : "SAEF"}, {"% Change" : "0.02", "LTP" : "850.20", "Symbol" : "NIBD84"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"% Change": {"type": "string"}, "LTP": {"type": "string"}, "Symbol": {"type": "string"}}, "required": ["% Change", "LTP", "Symbol"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "exclusive": {"type": "boolean"}, "criteria": {"type": "object", "properties": {"biomeTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["biomeTypes"]}, "inherit": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "level": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "level"]}}}, "required": ["name", "exclusive", "criteria", "inherit", "filters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dungeon:forest_temple", "exclusive" : true, "criteria" : {"biomeTypes" : ["FOREST"]}, "inherit" : ["dungeon:common", "theme:forest", "tower:rogue_forest", "segments:inhabited_trapped_sewers", "rooms:forest_temple", "spawners:eb", "spawners:evil_humanoids"], "filters" : [{"name" : "vine", "level" : [1, 2, 3]}, {"name" : "cobweb", "level" : [2]}, {"name" : "mud", "level" : [3, 4]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "exclusive": {"type": "boolean"}, "criteria": {"type": "object", "properties": {"biomeTypes": {"type": "array", "items": {"type": "string"}}}, "required": ["biomeTypes"]}, "inherit": {"type": "array", "items": {"type": "string"}}, "filters": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "level": {"type": "array", "items": {"type": "integer"}}}, "required": ["name", "level"]}}}, "required": ["name", "exclusive", "criteria", "inherit", "filters"], "$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"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-mvp-ts", "version" : "0.0.3", "description" : "Minimalistic library for implementing Model-View-Presenter pattern in React written in Typescript", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"build" : "tsc"}, "keywords" : ["MVP", "Model-View-Presenter", "react", "react-native", "typescript"], "author" : "Alexander Zahorskyi <zagorskyalexander@gmail.com>", "license" : "MIT", "dependencies" : {"react" : "16.4.0"}, "devDependencies" : {"@types/react" : "16.4.18", "typescript" : "3.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/react", "typescript"]}}, "required": ["name", "version", "description", "main", "types", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "zulu", "filename" : "zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg", "release_type" : "ga", "version" : "12.2.3", "java_version" : "12.0.1", "jvm_impl" : "hotspot", "os" : "macosx", "architecture" : "x86_64", "file_type" : "dmg", "image_type" : "jdk", "features" : [], "url" : "https://static.azul.com/zulu/bin/zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg", "md5" : "49a3d9ad6c761236d64c3122dcd16552", "md5_file" : "zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg.md5", "sha1" : "cf84c2c8bc272da3017b57ac800345800ebb88ea", "sha1_file" : "zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg.sha1", "sha256" : "d76ba8148a2d8f237f6089538cac1498a9bd37fe51855f7eb129ee93f8a54495", "sha256_file" : "zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg.sha256", "sha512" : "97036e587f047bfe3d277a822410fc1ddc3c27dc901315988bf6f4cd4dc6247fbc06caa1fc79ada4fa1f834bcf17e0039427a070c8bca32f10d08f3c10c5c760", "sha512_file" : "zulu12.2.3-ca-jdk12.0.1-macosx_x64.dmg.sha512", "size" : 202212275} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"request": {"type": "object", "properties": {"method": {"type": "string"}, "url": {"type": "string"}}, "required": ["method", "url"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "jsonBody": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "string"}, "Node": {"type": "string"}, "Address": {"type": "string"}, "Datacenter": {"type": "string"}, "TaggedAddresses": {"type": "object", "properties": {"lan": {"type": "string"}, "wan": {"type": "string"}}, "required": ["lan", "wan"]}, "NodeMeta": {"type": "object", "properties": {"consul-network-segment": {"type": "string"}}, "required": ["consul-network-segment"]}, "ServiceKind": {"type": "string"}, "ServiceID": {"type": "string"}, "ServiceName": {"type": "string"}, "ServiceTags": {"type": "array", "items": {"type": "string"}}, "ServiceAddress": {"type": "string"}, "ServiceMeta": {"type": "object", "properties": {}, "required": []}, "ServicePort": {"type": "integer"}, "ServiceEnableTagOverride": {"type": "boolean"}, "ServiceProxyDestination": {"type": "string"}, "ServiceConnect": {"type": "object", "properties": {"Native": {"type": "boolean"}, "Proxy": {"type": "null"}}, "required": ["Native", "Proxy"]}, "CreateIndex": {"type": "integer"}, "ModifyIndex": {"type": "integer"}}, "required": ["ID", "Node", "Address", "Datacenter", "TaggedAddresses", "NodeMeta", "ServiceKind", "ServiceID", "ServiceName", "ServiceTags", "ServiceAddress", "ServiceMeta", "ServicePort", "ServiceEnableTagOverride", "ServiceProxyDestination", "ServiceConnect", "CreateIndex", "ModifyIndex"]}}}, "required": ["status", "headers", "jsonBody"]}}, "required": ["request", "response"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"request" : {"method" : "GET", "url" : "/v1/catalog/service/ds_formio_api_http"}, "response" : {"status" : 200, "headers" : {"Content-Type" : "application/json"}, "jsonBody" : [{"ID" : "6e29a18d-3802-e27c-419f-bcca632b86d5", "Node" : "d9e671bdba71", "Address" : "172.19.0.5", "Datacenter" : "ds", "TaggedAddresses" : {"lan" : "172.19.0.5", "wan" : "172.19.0.5"}, "NodeMeta" : {"consul-network-segment" : ""}, "ServiceKind" : "", "ServiceID" : "ds_formio_api_http", "ServiceName" : "ds_formio_api_http", "ServiceTags" : ["proxy.frontend.rule=Host:forms_mock_formio:8080", "proxy.frontend.entryPoints=http", "proxy.tags=external", "proxy.enable=true"], "ServiceAddress" : "172.19.0.35", "ServiceMeta" : {}, "ServicePort" : 80, "ServiceEnableTagOverride" : false, "ServiceProxyDestination" : "", "ServiceConnect" : {"Native" : false, "Proxy" : null}, "CreateIndex" : 26708, "ModifyIndex" : 26708}]}} | json_instruct | {"type": "object", "properties": {"request": {"type": "object", "properties": {"method": {"type": "string"}, "url": {"type": "string"}}, "required": ["method", "url"]}, "response": {"type": "object", "properties": {"status": {"type": "integer"}, "headers": {"type": "object", "properties": {"Content-Type": {"type": "string"}}, "required": ["Content-Type"]}, "jsonBody": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "string"}, "Node": {"type": "string"}, "Address": {"type": "string"}, "Datacenter": {"type": "string"}, "TaggedAddresses": {"type": "object", "properties": {"lan": {"type": "string"}, "wan": {"type": "string"}}, "required": ["lan", "wan"]}, "NodeMeta": {"type": "object", "properties": {"consul-network-segment": {"type": "string"}}, "required": ["consul-network-segment"]}, "ServiceKind": {"type": "string"}, "ServiceID": {"type": "string"}, "ServiceName": {"type": "string"}, "ServiceTags": {"type": "array", "items": {"type": "string"}}, "ServiceAddress": {"type": "string"}, "ServiceMeta": {"type": "object", "properties": {}, "required": []}, "ServicePort": {"type": "integer"}, "ServiceEnableTagOverride": {"type": "boolean"}, "ServiceProxyDestination": {"type": "string"}, "ServiceConnect": {"type": "object", "properties": {"Native": {"type": "boolean"}, "Proxy": {"type": "null"}}, "required": ["Native", "Proxy"]}, "CreateIndex": {"type": "integer"}, "ModifyIndex": {"type": "integer"}}, "required": ["ID", "Node", "Address", "Datacenter", "TaggedAddresses", "NodeMeta", "ServiceKind", "ServiceID", "ServiceName", "ServiceTags", "ServiceAddress", "ServiceMeta", "ServicePort", "ServiceEnableTagOverride", "ServiceProxyDestination", "ServiceConnect", "CreateIndex", "ModifyIndex"]}}}, "required": ["status", "headers", "jsonBody"]}}, "required": ["request", "response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-83.196997, 42.358129], [-83.182207, 42.358452], [-83.181934, 42.351181], [-83.196609, 42.35089], [-83.196997, 42.358129]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 31159}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "direction": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "author": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "content": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "contentUrl": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "player": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["type", "direction", "author", "content", "contentUrl", "player"]}}, "required": ["$schema", "id", "type", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-04/schema#", "id" : "HypertyResource", "type" : "object", "required" : ["type"], "properties" : {"type" : {"enum" : ["chat", "audio", "video", "av", "screen", "file", "midi", "activity_context", "availability_context", "location_context", "heart_rate_context", "user_steps_context", "battery_context", "sleep_context", "light_context", "humidity_context", "power", "user_activity_context", "user_communication_context"]}, "direction" : {"enum" : ["in", "out", "inout"]}, "author" : {"type" : "string"}, "content" : {"type" : "object"}, "contentUrl" : {"type" : "string"}, "player" : {"type" : "string"}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "id": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "direction": {"type": "object", "properties": {"enum": {"type": "array", "items": {"type": "string"}}}, "required": ["enum"]}, "author": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "content": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "contentUrl": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "player": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["type", "direction", "author", "content", "contentUrl", "player"]}}, "required": ["$schema", "id", "type", "required", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2005, 5], [2009, 8], [2011, 10], [2012, 9], [2013, 9], [2014, 17]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"coffee-errors": {"type": "string"}, "coffee-script": {"type": "string"}, "grunt": {"type": "string"}, "grunt-bump": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-karma": {"type": "string"}, "grunt-shell": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-coffee-preprocessor": {"type": "string"}, "karma-html-reporter": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter-livereload": {"type": "string"}}, "required": ["coffee-errors", "coffee-script", "grunt", "grunt-bump", "grunt-contrib-coffee", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-karma", "grunt-shell", "jasmine-core", "karma", "karma-chrome-launcher", "karma-coffee-preprocessor", "karma-html-reporter", "karma-jasmine", "karma-jasmine-html-reporter-livereload"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "files", "homepage", "bugs", "author", "main", "repository", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "<%= slug %>", "version" : "0.0.1", "description" : "<%= description %>", "keywords" : ["CoffeeScript", "Karma", "Grunt"], "files" : ["dist", "src", "test"], "homepage" : "<%= githubUrl %>/<%= slug %>", "bugs" : "<%= githubUrl %>/<%= slug %>/issues", "author" : {"name" : "<%= realname %>", "email" : "<%= email %>", "url" : "<%= githubUrl %>"}, "main" : "dist/<%= slug %>.min.js", "repository" : {"type" : "git", "url" : "<%= githubUrl %>/<%= slug %>.git"}, "devDependencies" : {"coffee-errors" : "^0.8.5", "coffee-script" : "^1.9.1", "grunt" : "^0.4.5", "grunt-bump" : "^0.3.0", "grunt-contrib-coffee" : "^0.13.0", "grunt-contrib-uglify" : "^0.8.0", "grunt-contrib-watch" : "^0.6.1", "grunt-karma" : "^0.10.1", "grunt-shell" : "^1.1.2", "jasmine-core" : "^2.2.0", "karma" : "^0.12.31", "karma-chrome-launcher" : "^0.1.7", "karma-coffee-preprocessor" : "^0.2.1", "karma-html-reporter" : "^0.2.6", "karma-jasmine" : "^0.3.5", "karma-jasmine-html-reporter-livereload" : "^1.0.0"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"coffee-errors": {"type": "string"}, "coffee-script": {"type": "string"}, "grunt": {"type": "string"}, "grunt-bump": {"type": "string"}, "grunt-contrib-coffee": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "grunt-karma": {"type": "string"}, "grunt-shell": {"type": "string"}, "jasmine-core": {"type": "string"}, "karma": {"type": "string"}, "karma-chrome-launcher": {"type": "string"}, "karma-coffee-preprocessor": {"type": "string"}, "karma-html-reporter": {"type": "string"}, "karma-jasmine": {"type": "string"}, "karma-jasmine-html-reporter-livereload": {"type": "string"}}, "required": ["coffee-errors", "coffee-script", "grunt", "grunt-bump", "grunt-contrib-coffee", "grunt-contrib-uglify", "grunt-contrib-watch", "grunt-karma", "grunt-shell", "jasmine-core", "karma", "karma-chrome-launcher", "karma-coffee-preprocessor", "karma-html-reporter", "karma-jasmine", "karma-jasmine-html-reporter-livereload"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "keywords", "files", "homepage", "bugs", "author", "main", "repository", "devDependencies", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["serve", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-glsl-loader": {"type": "string"}}, "required": ["html-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server", "webpack-glsl-loader"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "private", "scripts", "author", "license", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "graphics", "private" : true, "scripts" : {"serve" : "webpack serve --open --hot --mode=development", "build" : "webpack --mode=production"}, "author" : "https://github.com/asiryk", "license" : "MIT", "devDependencies" : {"html-webpack-plugin" : "^5.3.2", "webpack" : "^5.52.0", "webpack-cli" : "^4.9.1", "webpack-dev-server" : "^4.2.1", "webpack-glsl-loader" : "^1.0.1"}, "engines" : {"node" : "16.x", "npm" : "8.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["serve", "build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"html-webpack-plugin": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}, "webpack-glsl-loader": {"type": "string"}}, "required": ["html-webpack-plugin", "webpack", "webpack-cli", "webpack-dev-server", "webpack-glsl-loader"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}}, "required": ["name", "private", "scripts", "author", "license", "devDependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ribbon2.5"] | 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": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "string"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "KPHG0", "name" : {"en" : "Phillipsburg"}, "country" : "US", "region" : "KS", "identifiers" : {"national" : null, "wmo" : null, "ghcn" : null, "wban" : "93961", "usaf" : null, "mosmix" : null, "icao" : "KPHG", "iata" : null}, "location" : {"latitude" : 39.7358, "longitude" : -99.3171, "elevation" : 581}, "timezone" : "America/Chicago", "history" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"national": {"type": "null"}, "wmo": {"type": "null"}, "ghcn": {"type": "null"}, "wban": {"type": "string"}, "usaf": {"type": "null"}, "mosmix": {"type": "null"}, "icao": {"type": "string"}, "iata": {"type": "null"}}, "required": ["national", "wmo", "ghcn", "wban", "usaf", "mosmix", "icao", "iata"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}, "history": {"type": "array", "items": {}}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone", "history"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["name", "description", "abbreviation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JBoss Enterprise Application Platform 6", "description" : "JBoss Enterprise Application Platform 6", "abbreviation" : "EAP6"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "abbreviation": {"type": "string"}}, "required": ["name", "description", "abbreviation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "77015725", "name" : "Colne Close", "nodes" : [{"type" : "node", "id" : 906921562, "lat" : 52.5050138, "lon" : -0.7148637}, {"type" : "node", "id" : 906921567, "lat" : 52.5050198, "lon" : -0.7147191}], "volunteer_postcode" : "NN17 2JE", "closest_distance" : 181} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-121.974061, 38.346356], [-121.957795, 38.346308], [-121.957806, 38.344877], [-121.962409, 38.341058], [-121.962393, 38.335389], [-121.970383, 38.335419], [-121.970019, 38.340128], [-121.974061, 38.346356]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 10172}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "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" : 1125929527, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "77234525986deb076a798e0ffc3a7096", "wof:id" : 1125929527}, "bbox" : [8.80403, 47.21378, 8.80403, 47.21378], "geometry" : {"coordinates" : [8.80403, 47.21378], "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"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "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#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["652923003001", "\u89e3\u653e\u8def\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003002", "\u5176\u5170\u52d2\u514b\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003003", "\u6587\u5316\u8def\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003004", "\u56e2\u7ed3\u8def\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003005", "\u65af\u5f97\u5df4\u683c\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003006", "\u674f\u82b1\u56ed\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003007", "\u574e\u5c14\u5b5c\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003008", "\u5065\u5eb7\u8def\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["652923003009", "\u5929\u6cb3\u793e\u533a\u5c45\u6c11\u5458\u59d4\u4f1a", "121", "0"], ["652923003010", "\u6e05\u98ce\u82d1\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"heroTitle": {"type": "string"}, "heroSubTitle": {"type": "string"}, "heroDescription": {"type": "string"}}, "required": ["heroTitle", "heroSubTitle", "heroDescription"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"heroTitle" : "Page Title Goes Here Test", "heroSubTitle" : "Page Subtitle", "heroDescription" : "A short description goes here test."} | json_instruct | {"type": "object", "properties": {"heroTitle": {"type": "string"}, "heroSubTitle": {"type": "string"}, "heroDescription": {"type": "string"}}, "required": ["heroTitle", "heroSubTitle", "heroDescription"], "$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"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "style-loader": {"type": "string"}, "svg-inline-loader": {"type": "string"}, "web-vitals": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/plugin-proposal-class-properties", "@babel/preset-react", "babel-loader", "css-loader", "react", "react-dom", "react-scripts", "style-loader", "svg-inline-loader", "web-vitals", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "module", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "webpack-bundler", "version" : "1.0.0", "description" : "A simple webpack module bundler template", "main" : "dist/index.js", "module" : "dist/index.js", "scripts" : {"build" : "webpack", "start" : "set NODE_ENV='development'&&webpack"}, "repository" : {"type" : "git", "url" : "git+https://github.com/yswarkare/webpack-bundler.git"}, "keywords" : [], "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/yswarkare/webpack-bundler/issues"}, "homepage" : "https://github.com/yswarkare/webpack-bundler#readme", "devDependencies" : {"@babel/plugin-proposal-class-properties" : "^7.13.0", "@babel/preset-react" : "^7.13.13", "babel-loader" : "^8.2.2", "css-loader" : "^5.2.4", "react" : "^17.0.2", "react-dom" : "^17.0.2", "react-scripts" : "^4.0.3", "style-loader" : "^2.0.0", "svg-inline-loader" : "^0.8.2", "web-vitals" : "^1.1.1", "webpack" : "^5.35.1", "webpack-cli" : "^4.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/plugin-proposal-class-properties": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "style-loader": {"type": "string"}, "svg-inline-loader": {"type": "string"}, "web-vitals": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/plugin-proposal-class-properties", "@babel/preset-react", "babel-loader", "css-loader", "react", "react-dom", "react-scripts", "style-loader", "svg-inline-loader", "web-vitals", "webpack", "webpack-cli"]}}, "required": ["name", "version", "description", "main", "module", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"oq" : "0", "q" : "15000", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1602723600000, "wptn" : "4", "z" : "174.04"}, {"oq" : "0", "q" : "2730", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1602723600000, "wptn" : "5", "z" : "177.4"}, {"oq" : "0", "q" : "23700", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1602723600000, "wptn" : "5", "z" : "46.32"}, {"oq" : "0", "q" : "20900", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1602723600000, "wptn" : "4", "z" : "37.93"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1602720000000, "wptn" : "6", "z" : "29.54"}, {"oq" : "0", "q" : "36200", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1602723600000, "wptn" : "4", "z" : "23.68"}, {"oq" : "0", "q" : "37500", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1602723600000, "wptn" : "5", "z" : "17.41"}, {"oq" : "0", "q" : "45500", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1602723600000, "wptn" : "4", "z" : "11.72"}, {"oq" : "0", "q" : "12800", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1602723600000, "wptn" : "5", "z" : "29.62"}, {"oq" : "0", "q" : "5150", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1602723600000, "wptn" : "4", "z" : "16.82"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1602723600000, "wptn" : "4", "z" : "171.355"}, {"oq" : "23600", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1602723600000, "wptn" : "4", "z" : "171.36"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1602723600000, "wptn" : "4", "z" : "164.23"}, {"oq" : "779", "q" : "1620", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1602720000000, "wptn" : "6", "z" : "164.24"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vscode-languageserver": {"type": "string"}, "sveltedoc-parser": {"type": "string"}, "cosmiconfig": {"type": "string"}, "@babel/register": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["vscode-languageserver", "sveltedoc-parser", "cosmiconfig", "@babel/register", "@babel/core", "@babel/preset-env"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "engines", "repository", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "svelte-intellisense", "engines" : {"node" : "*"}, "repository" : {"url" : "https://github.com/ArdenIvanov/svelte-intellisense.git"}, "license" : "MIT", "dependencies" : {"vscode-languageserver" : "^5.2.1", "sveltedoc-parser" : "^2.3.0", "cosmiconfig" : "^5.2.1", "@babel/register" : "^7.5.5", "@babel/core" : "7.5.5", "@babel/preset-env" : "7.5.5"}, "scripts" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"vscode-languageserver": {"type": "string"}, "sveltedoc-parser": {"type": "string"}, "cosmiconfig": {"type": "string"}, "@babel/register": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/preset-env": {"type": "string"}}, "required": ["vscode-languageserver", "sveltedoc-parser", "cosmiconfig", "@babel/register", "@babel/core", "@babel/preset-env"]}, "scripts": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "engines", "repository", "license", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"daily": {"type": "object", "properties": {"sync": {"type": "object", "properties": {"LAB": {"type": "string"}}, "required": ["LAB"]}, "buf": {"type": "object", "properties": {"LAB": {"type": "string"}}, "required": ["LAB"]}}, "required": ["sync", "buf"]}}, "required": ["daily"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"daily" : {"sync" : {"LAB" : "sync"}, "buf" : {"LAB" : "buf"}}} | json_instruct | {"type": "object", "properties": {"daily": {"type": "object", "properties": {"sync": {"type": "object", "properties": {"LAB": {"type": "string"}}, "required": ["LAB"]}, "buf": {"type": "object", "properties": {"LAB": {"type": "string"}}, "required": ["LAB"]}}, "required": ["sync", "buf"]}}, "required": ["daily"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"solution_size" : 240, "ok" : true, "resemblance" : 1.0, "problem_id" : 2048, "solution_spec_hash" : "b70e43b112048ab5dc12ce14d5214fcd78c7bbe2"} | json_instruct | {"type": "object", "properties": {"solution_size": {"type": "integer"}, "ok": {"type": "boolean"}, "resemblance": {"type": "number"}, "problem_id": {"type": "integer"}, "solution_spec_hash": {"type": "string"}}, "required": ["solution_size", "ok", "resemblance", "problem_id", "solution_spec_hash"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_guid_": {"type": "string"}, "content": {"type": "array", "items": {}}, "pageable": {"type": "object", "properties": {"sort": {"type": "object", "properties": {"sorted": {"type": "boolean"}, "unsorted": {"type": "boolean"}, "empty": {"type": "boolean"}}, "required": ["sorted", "unsorted", "empty"]}, "offset": {"type": "integer"}, "page_number": {"type": "integer"}, "page_size": {"type": "integer"}, "paged": {"type": "boolean"}, "unpaged": {"type": "boolean"}}, "required": ["sort", "offset", "page_number", "page_size", "paged", "unpaged"]}, "last": {"type": "boolean"}, "total_pages": {"type": "integer"}, "total_elements": {"type": "integer"}, "number_of_elements": {"type": "integer"}, "size": {"type": "integer"}, "first": {"type": "boolean"}, "sort": {"type": "object", "properties": {"sorted": {"type": "boolean"}, "unsorted": {"type": "boolean"}, "empty": {"type": "boolean"}}, "required": ["sorted", "unsorted", "empty"]}, "number": {"type": "integer"}, "empty": {"type": "boolean"}}, "required": ["_guid_", "content", "pageable", "last", "total_pages", "total_elements", "number_of_elements", "size", "first", "sort", "number", "empty"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_guid_" : "Base_CPO_GET_Response_Data", "content" : [], "pageable" : {"sort" : {"sorted" : true, "unsorted" : false, "empty" : false}, "offset" : 0, "page_number" : 0, "page_size" : 20, "paged" : true, "unpaged" : false}, "last" : true, "total_pages" : 1, "total_elements" : 1, "number_of_elements" : 1, "size" : 20, "first" : true, "sort" : {"sorted" : true, "unsorted" : false, "empty" : false}, "number" : 0, "empty" : false} | json_instruct | {"type": "object", "properties": {"_guid_": {"type": "string"}, "content": {"type": "array", "items": {}}, "pageable": {"type": "object", "properties": {"sort": {"type": "object", "properties": {"sorted": {"type": "boolean"}, "unsorted": {"type": "boolean"}, "empty": {"type": "boolean"}}, "required": ["sorted", "unsorted", "empty"]}, "offset": {"type": "integer"}, "page_number": {"type": "integer"}, "page_size": {"type": "integer"}, "paged": {"type": "boolean"}, "unpaged": {"type": "boolean"}}, "required": ["sort", "offset", "page_number", "page_size", "paged", "unpaged"]}, "last": {"type": "boolean"}, "total_pages": {"type": "integer"}, "total_elements": {"type": "integer"}, "number_of_elements": {"type": "integer"}, "size": {"type": "integer"}, "first": {"type": "boolean"}, "sort": {"type": "object", "properties": {"sorted": {"type": "boolean"}, "unsorted": {"type": "boolean"}, "empty": {"type": "boolean"}}, "required": ["sorted", "unsorted", "empty"]}, "number": {"type": "integer"}, "empty": {"type": "boolean"}}, "required": ["_guid_", "content", "pageable", "last", "total_pages", "total_elements", "number_of_elements", "size", "first", "sort", "number", "empty"], "$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"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "the-farm-brewery-at-broad-run", "name" : "The Farm Brewery At Broad Run", "brewery_type" : "micro", "street" : "16015 John Marshall Hwy", "city" : "Broad Run", "state" : "Virginia", "postal_code" : "20137-2250", "website_url" : "http://www.thefarmatbroadrun.com", "phone" : "7037533548", "created_at" : "2018-07-24 01:34:27.101612", "updated_at" : "2018-08-11 21:40:10.02621", "country" : "United States", "longitude" : "", "latitude" : "", "tags" : []}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "country": {"type": "string"}, "longitude": {"type": "string"}, "latitude": {"type": "string"}, "tags": {"type": "array", "items": {}}}, "required": ["id", "name", "brewery_type", "street", "city", "state", "postal_code", "website_url", "phone", "created_at", "updated_at", "country", "longitude", "latitude", "tags"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "station_list": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}, "numbering": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "name", "numbering"]}}}, "required": ["name", "station_list"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "JR\u95a2\u897f\u7a7a\u6e2f\u7dda", "station_list" : [{"code" : 1162626, "name" : "\u65e5\u6839\u91ce", "numbering" : ["S45"]}, {"code" : 1162802, "name" : "\u308a\u3093\u304f\u3046\u30bf\u30a6\u30f3", "numbering" : ["S46"]}, {"code" : 1162803, "name" : "\u95a2\u897f\u7a7a\u6e2f", "numbering" : ["S47"]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "station_list": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "integer"}, "name": {"type": "string"}, "numbering": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "name", "numbering"]}}}, "required": ["name", "station_list"], "$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"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["react", "react-dom", "react-router-dom", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "browserslist": {"type": "object", "properties": {"development": {"type": "array", "items": {"type": "string"}}}, "required": ["development"]}}, "required": ["name", "version", "private", "license", "dependencies", "scripts", "engines", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "adobe-dc-view-sdk-react-sample", "version" : "1.0.0", "private" : false, "license" : "See license in license.md", "dependencies" : {"react" : "^16.13.0", "react-dom" : "^16.13.0", "react-router-dom" : "^5.1.2", "react-scripts" : "3.4.0"}, "scripts" : {"start" : "react-scripts start"}, "engines" : {"node" : ">=8.10.0"}, "browserslist" : {"development" : ["last 2 Chrome versions", "last 2 Firefox versions", "last 2 Edge versions", "last 2 Safari versions", "Explorer >= 11"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["react", "react-dom", "react-router-dom", "react-scripts"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "browserslist": {"type": "object", "properties": {"development": {"type": "array", "items": {"type": "string"}}}, "required": ["development"]}}, "required": ["name", "version", "private", "license", "dependencies", "scripts", "engines", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {}, "required": []}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 55424270, "ot" : 3, "alias" : 0, "setcode" : 269, "type" : 33, "atk" : 1400, "def" : 1400, "level" : 4, "race" : 2, "attribute" : 16, "category" : 67117056, "name" : "Mythical Beast Cerberus", "desc" : "Each time a Spell Card is activated, place 1 Spell Counter on this card when that Spell Card resolves. This card gains 500 ATK for each Spell Counter on it. If damage calculation is conducted involving this card, remove all Spell Counters from it at the end of the Battle Phase.", "str1" : "", "str2" : "", "str3" : "", "str4" : "", "str5" : "", "str6" : "", "str7" : "", "str8" : "", "str9" : "", "str10" : "", "str11" : "", "str12" : "", "str13" : "", "str14" : "", "str15" : "", "str16" : "", "links" : [], "cardpool" : "OCG/TCG", "ocg" : {}, "tcg" : {"pack" : "Structure Deck: Lord of the Magician", "pack_id" : "SD16-AE018", "date" : "2009-06-11"}, "picture" : "https://vignette.wikia.nocookie.net/yugioh/images/d/d4/MythicalBeastCerberus-BP03-EN-C-1E.png"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "ot": {"type": "integer"}, "alias": {"type": "integer"}, "setcode": {"type": "integer"}, "type": {"type": "integer"}, "atk": {"type": "integer"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "race": {"type": "integer"}, "attribute": {"type": "integer"}, "category": {"type": "integer"}, "name": {"type": "string"}, "desc": {"type": "string"}, "str1": {"type": "string"}, "str2": {"type": "string"}, "str3": {"type": "string"}, "str4": {"type": "string"}, "str5": {"type": "string"}, "str6": {"type": "string"}, "str7": {"type": "string"}, "str8": {"type": "string"}, "str9": {"type": "string"}, "str10": {"type": "string"}, "str11": {"type": "string"}, "str12": {"type": "string"}, "str13": {"type": "string"}, "str14": {"type": "string"}, "str15": {"type": "string"}, "str16": {"type": "string"}, "links": {"type": "array", "items": {}}, "cardpool": {"type": "string"}, "ocg": {"type": "object", "properties": {}, "required": []}, "tcg": {"type": "object", "properties": {"pack": {"type": "string"}, "pack_id": {"type": "string"}, "date": {"type": "string"}}, "required": ["pack", "pack_id", "date"]}, "picture": {"type": "string"}}, "required": ["id", "ot", "alias", "setcode", "type", "atk", "def", "level", "race", "attribute", "category", "name", "desc", "str1", "str2", "str3", "str4", "str5", "str6", "str7", "str8", "str9", "str10", "str11", "str12", "str13", "str14", "str15", "str16", "links", "cardpool", "ocg", "tcg", "picture"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["description", "$ref"]}}}, "required": ["$schema", "$id", "title", "description", "type", "allOf"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "http://schema.org/RejectAction", "title" : "RejectAction", "description" : "The act of rejecting to/adopting an object.\n\nRelated actions:\n\n\nAcceptAction: The antonym of RejectAction.\n\n", "type" : "object", "allOf" : [{"description" : "The act of organizing tasks/objects/events by associating resources to it.", "$ref" : "http://schema.org/AllocateAction"}]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "allOf": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "$ref": {"type": "string"}}, "required": ["description", "$ref"]}}}, "required": ["$schema", "$id", "title", "description", "type", "allOf"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Global Ocean Suspected on Saturn's Enceladus", "credit" : "Cassini Imaging Team, SSI, JPL, ESA, NASA", "explanation" : "Do some surface features on Enceladus roll like a conveyor belt? A leading interpretation of images taken of Saturn's most explosive moon indicate that they do. This form of asymmetric tectonic activity, very unusual on Earth, likely holds clues to the internal structure of Enceladus, which may contain subsurface seas where life might be able to develop. Pictured above is a composite of 28 images taken by the robotic Cassini spacecraft in 2008 just after swooping by the ice-spewing orb. Inspection of these images show clear tectonic displacements where large portions of the surface all appear to move all in one direction. On the image right appears one of the most prominent tectonic divides: Labtayt Sulci, a canyon about one kilometer deep. The magnitude of Enceladus' wobble as it orbits Saturn might indicate damping by a globally extending underground ocean layer.", "date" : "2015-09-20", "hdurl" : "https://apod.nasa.gov/apod/image/1509/Enceladus05_Cassini_2848.jpg", "service_version" : "v1", "media_type" : "image", "url" : "https://apod.nasa.gov/apod/image/1509/Enceladus05_Cassini_960.jpg"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "credit": {"type": "string"}, "explanation": {"type": "string"}, "date": {"type": "string"}, "hdurl": {"type": "string"}, "service_version": {"type": "string"}, "media_type": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "credit", "explanation", "date", "hdurl", "service_version", "media_type", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"handlebars": {"type": "string"}, "jquery": {"type": "string"}, "qunit": {"type": "string"}, "ember": {"type": "string"}, "ember-data": {"type": "string"}, "ember-resolver": {"type": "string"}, "ic-ajax": {"type": "string"}, "ember-testing-httpRespond": {"type": "string"}, "moment": {"type": "string"}, "faye": {"type": "string"}, "accounting": {"type": "string"}, "purl": {"type": "string"}, "d3": {"type": "string"}, "gridster": {"type": "string"}, "numeral": {"type": "string"}}, "required": ["handlebars", "jquery", "qunit", "ember", "ember-data", "ember-resolver", "ic-ajax", "ember-testing-httpRespond", "moment", "faye", "accounting", "purl", "d3", "gridster", "numeral"]}, "resolutions": {"type": "object", "properties": {"ember": {"type": "string"}}, "required": ["ember"]}, "devDependencies": {"type": "object", "properties": {"sinon": {"type": "string"}}, "required": ["sinon"]}}, "required": ["name", "dependencies", "resolutions", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ember-app-kit", "dependencies" : {"handlebars" : "~1.1.2", "jquery" : "~1.9.1", "qunit" : "~1.12.0", "ember" : "~1.4.0", "ember-data" : "~1.0.0-beta.7", "ember-resolver" : "git://github.com/stefanpenner/ember-jj-abrams-resolver.git#master", "ic-ajax" : "~0.3.0", "ember-testing-httpRespond" : "~0.1.1", "moment" : "~2.5.1", "faye" : "git://github.com/substantial/faye-browser.git#~1.0.1", "accounting" : "~0.3.2", "purl" : "~2.3.1", "d3" : "~3.4.4", "gridster" : "~0.5.1", "numeral" : "~1.5.3"}, "resolutions" : {"ember" : "~1.4.0"}, "devDependencies" : {"sinon" : "~1.8.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"handlebars": {"type": "string"}, "jquery": {"type": "string"}, "qunit": {"type": "string"}, "ember": {"type": "string"}, "ember-data": {"type": "string"}, "ember-resolver": {"type": "string"}, "ic-ajax": {"type": "string"}, "ember-testing-httpRespond": {"type": "string"}, "moment": {"type": "string"}, "faye": {"type": "string"}, "accounting": {"type": "string"}, "purl": {"type": "string"}, "d3": {"type": "string"}, "gridster": {"type": "string"}, "numeral": {"type": "string"}}, "required": ["handlebars", "jquery", "qunit", "ember", "ember-data", "ember-resolver", "ic-ajax", "ember-testing-httpRespond", "moment", "faye", "accounting", "purl", "d3", "gridster", "numeral"]}, "resolutions": {"type": "object", "properties": {"ember": {"type": "string"}}, "required": ["ember"]}, "devDependencies": {"type": "object", "properties": {"sinon": {"type": "string"}}, "required": ["sinon"]}}, "required": ["name", "dependencies", "resolutions", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0x92c78a20b7b24ddd7d0b0c7372b128943e0b247e689f6c4cdc04fe1888722fdd", "parentHash" : "0x7ea3430f0f170c3a3262bb2ea1f8f86bd85128629b2fe44e2900ee1e4c7dcbca", "number" : 101616, "timestamp" : 1439825546, "nonce" : "0xcfd47863c7504df8", "difficulty" : 3890120508841, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xe6A7a1d47ff21B6321162AEA7C6CB457D5476Bca", "extraData" : "0x476574682f76312e302e312d38326566323666362f6c696e75782f676f312e34", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"documentName": {"type": "string"}, "fortress": {"type": "string"}, "fortressUser": {"type": "string"}, "emptyIgnored": {"type": "boolean"}, "content": {"type": "object", "properties": {"Title": {"type": "object", "properties": {"callerRef": {"type": "boolean"}, "title": {"type": "boolean"}, "tag": {"type": "boolean"}}, "required": ["callerRef", "title", "tag"]}}, "required": ["Title"]}}, "required": ["documentName", "fortress", "fortressUser", "emptyIgnored", "content"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"documentName" : "Athlete", "fortress" : "Olympic", "fortressUser" : "mike", "emptyIgnored" : true, "content" : {"Title" : {"callerRef" : true, "title" : true, "tag" : true}}} | json_instruct | {"type": "object", "properties": {"documentName": {"type": "string"}, "fortress": {"type": "string"}, "fortressUser": {"type": "string"}, "emptyIgnored": {"type": "boolean"}, "content": {"type": "object", "properties": {"Title": {"type": "object", "properties": {"callerRef": {"type": "boolean"}, "title": {"type": "boolean"}, "tag": {"type": "boolean"}}, "required": ["callerRef", "title", "tag"]}}, "required": ["Title"]}}, "required": ["documentName", "fortress", "fortressUser", "emptyIgnored", "content"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"city" : {"name" : "ITURAMA", "state" : "MG"}, "borders" : [[{"lat" : -19.559322996858782, "lng" : -50.214473999575375}, {"lat" : -19.62917399668254, "lng" : -50.16001099980775}, {"lat" : -19.75079199695307, "lng" : -50.11615399990711}, {"lat" : -19.76947399692739, "lng" : -50.09088400009648}, {"lat" : -19.833685996611393, "lng" : -50.08314800037988}, {"lat" : -19.87434214477412, "lng" : -50.10622040604687}, {"lat" : -19.876757704904094, "lng" : -50.24515594499081}, {"lat" : -19.86460243215646, "lng" : -50.35275894107224}, {"lat" : -19.80113646237777, "lng" : -50.41713277465777}, {"lat" : -19.77988880812194, "lng" : -50.46932357792076}, {"lat" : -19.813573155476718, "lng" : -50.562036141854435}, {"lat" : -19.759797996780094, "lng" : -50.57261600022821}, {"lat" : -19.688342996731876, "lng" : -50.61607599980749}, {"lat" : -19.65240199675469, "lng" : -50.60078399968182}, {"lat" : -19.626218997108992, "lng" : -50.66320599955719}, {"lat" : -19.57415499735521, "lng" : -50.69216500041438}, {"lat" : -19.609592996619426, "lng" : -50.578744999582}, {"lat" : -19.613196997343493, "lng" : -50.517461000025094}, {"lat" : -19.580940997329094, "lng" : -50.454844000150445}, {"lat" : -19.580310997054823, "lng" : -50.363790000108395}, {"lat" : -19.549948997148476, "lng" : -50.343204999610975}, {"lat" : -19.593027997144304, "lng" : -50.26597400029982}, {"lat" : -19.559322996858782, "lng" : -50.214473999575375}]]} | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, "required": ["lat", "lng"]}}}}, "required": ["city", "borders"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"date" : "2022-04-02", "total" : 804, "delta" : 2, "version" : "0.3.5"}, {"date" : "2022-04-08", "total" : 821, "delta" : 17, "version" : "0.3.5"}, {"date" : "2022-04-10", "total" : 826, "delta" : 5, "version" : "0.3.5"}, {"date" : "2022-04-12", "total" : 830, "delta" : 4, "version" : "0.3.5"}, {"date" : "2022-04-13", "total" : 832, "delta" : 2, "version" : "0.3.5"}, {"date" : "2022-04-29", "total" : 869, "delta" : 37, "version" : "0.3.5"}, {"date" : "2022-04-30", "total" : 871, "delta" : 2, "version" : "0.3.5"}, {"date" : "2022-05-03", "total" : 877, "delta" : 6, "version" : "0.3.5"}, {"date" : "2022-05-10", "total" : 891, "delta" : 14, "version" : "0.3.5"}, {"date" : "2022-05-13", "total" : 897, "delta" : 6, "version" : "0.3.5"}, {"date" : "2022-05-14", "total" : 901, "delta" : 4, "version" : "0.3.5"}, {"date" : "2022-05-17", "total" : 907, "delta" : 6, "version" : "0.3.5"}, {"date" : "2022-06-01", "total" : 942, "delta" : 35, "version" : "0.3.5"}, {"date" : "2022-06-05", "total" : 952, "delta" : 10, "version" : "0.3.5"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"c": {"type": "object", "properties": {"iringa": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "dodoma": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "njombe": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["iringa", "dodoma", "njombe"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"c" : {"iringa" : {"z" : {}, "l" : ["-7.7667", "35.7000"]}, "dodoma" : {"z" : {}, "l" : ["-7.2833", "36.3500"]}, "njombe" : {"z" : {}, "l" : ["-9.3333", "34.7667"]}}, "l" : []} | json_instruct | {"type": "object", "properties": {"c": {"type": "object", "properties": {"iringa": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "dodoma": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}, "njombe": {"type": "object", "properties": {"z": {"type": "object", "properties": {}, "required": []}, "l": {"type": "array", "items": {"type": "string"}}}, "required": ["z", "l"]}}, "required": ["iringa", "dodoma", "njombe"]}, "l": {"type": "array", "items": {}}}, "required": ["c", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"platform.js": {"type": "string"}, "platform.min.js": {"type": "string"}}, "required": ["platform.js", "platform.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"platform.js" : "sha256-/Us8nv2z5ELIiP9HA/UjCIGPnq2504Zay7jWY7Ra1IA=", "platform.min.js" : "sha256-q5waIQ42WlopVN4oM43ZOYm/aRl6Uk45wHe3AXrscrQ="} | json_instruct | {"type": "object", "properties": {"platform.js": {"type": "string"}, "platform.min.js": {"type": "string"}}, "required": ["platform.js", "platform.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u8d35\u5dde\u7701", "city" : "\u9075\u4e49\u5e02", "area" : "\u8d64\u6c34\u5e02", "name" : "\u8d64\u6c34\u5e02\u4e24\u6cb3\u53e3\u90ae\u653f\u4ee3\u529e\u6240", "code" : "564701", "address" : "\u8d35\u5dde\u7701\u8d64\u6c34\u5e02\u4e24\u6cb3\u4e61\u573a\u4e0a", "phone" : "13984935704"}, {"province" : "\u8d35\u5dde\u7701", "city" : "\u9075\u4e49\u5e02", "area" : "\u8d64\u6c34\u5e02", "name" : "\u8d64\u6c34\u5e02\u590d\u5174\u90ae\u653f\u652f\u5c40", "code" : "564701", "address" : "\u8d35\u5dde\u7701\u8d64\u6c34\u5e02\u590d\u5174\u9547", "phone" : "0851-22961670"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"GenreId": {"type": "integer"}, "GenreName": {"type": "string"}}, "required": ["GenreId", "GenreName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"GenreId" : 871, "GenreName" : "fremulon"}, {"GenreId" : 892, "GenreName" : "then"}, {"GenreId" : 705, "GenreName" : "thewtre"}, {"GenreId" : 88, "GenreName" : "rock"}, {"GenreId" : 402, "GenreName" : "RnB"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"GenreId": {"type": "integer"}, "GenreName": {"type": "string"}}, "required": ["GenreId", "GenreName"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "string"}, "angularCompilerOptions": {"type": "object", "properties": {"compilationMode": {"type": "string"}, "enableResourceInlining": {"type": "boolean"}, "fullTemplateTypeCheck": {"type": "boolean"}, "preserveWhitespaces": {"type": "boolean"}, "strictInputAccessModifiers": {"type": "boolean"}, "strictInjectionParameters": {"type": "boolean"}, "strictTemplates": {"type": "boolean"}, "trace": {"type": "boolean"}}, "required": ["compilationMode", "enableResourceInlining", "fullTemplateTypeCheck", "preserveWhitespaces", "strictInputAccessModifiers", "strictInjectionParameters", "strictTemplates", "trace"]}}, "required": ["$schema", "extends", "angularCompilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json.schemastore.org/tsconfig", "extends" : "./dom-lib.json", "angularCompilerOptions" : {"compilationMode" : "partial", "enableResourceInlining" : true, "fullTemplateTypeCheck" : true, "preserveWhitespaces" : false, "strictInputAccessModifiers" : true, "strictInjectionParameters" : true, "strictTemplates" : true, "trace" : true}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "extends": {"type": "string"}, "angularCompilerOptions": {"type": "object", "properties": {"compilationMode": {"type": "string"}, "enableResourceInlining": {"type": "boolean"}, "fullTemplateTypeCheck": {"type": "boolean"}, "preserveWhitespaces": {"type": "boolean"}, "strictInputAccessModifiers": {"type": "boolean"}, "strictInjectionParameters": {"type": "boolean"}, "strictTemplates": {"type": "boolean"}, "trace": {"type": "boolean"}}, "required": ["compilationMode", "enableResourceInlining", "fullTemplateTypeCheck", "preserveWhitespaces", "strictInputAccessModifiers", "strictInjectionParameters", "strictTemplates", "trace"]}}, "required": ["$schema", "extends", "angularCompilerOptions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 13614, "idParent" : 13609, "namaWilayah" : "AMPANG KURANJI", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13609, "idKel" : 13614, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "KOTO BARU", "namaKel" : "AMPANG KURANJI", "kodeWilayah" : "13.10.01.2005"}, {"id" : 13611, "idParent" : 13609, "namaWilayah" : "KOTO BARU", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13609, "idKel" : 13611, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "KOTO BARU", "namaKel" : "KOTO BARU", "kodeWilayah" : "13.10.01.2002"}, {"id" : 87527, "idParent" : 13609, "namaWilayah" : "KOTO PADANG", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13609, "idKel" : 87527, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "KOTO BARU", "namaKel" : "KOTO PADANG", "kodeWilayah" : "13.10.01.2008"}, {"id" : 13612, "idParent" : 13609, "namaWilayah" : "SIALANG GAUNG", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13609, "idKel" : 13612, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "KOTO BARU", "namaKel" : "SIALANG GAUNG", "kodeWilayah" : "13.10.01.2003"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"cdn_dedicated_ssl_add": {"type": "string"}, "cdn_dedicated_ssl_add_explain": {"type": "string"}, "cdn_dedicated_ssl_add_name": {"type": "string"}, "cdn_dedicated_ssl_add_name_pattern": {"type": "string"}, "cdn_dedicated_ssl_add_certificate": {"type": "string"}, "cdn_dedicated_ssl_add_key": {"type": "string"}, "cdn_dedicated_ssl_add_chain": {"type": "string"}, "cdn_dedicated_ssl_add_lets_encrypt_explain": {"type": "string"}, "cdn_dedicated_ssl_add_success": {"type": "string"}, "cdn_dedicated_ssl_add_load_error": {"type": "string"}, "cdn_dedicated_ssl_add_error": {"type": "string"}, "cdn_dedicated_ssl_add_warning": {"type": "string"}}, "required": ["cdn_dedicated_ssl_add", "cdn_dedicated_ssl_add_explain", "cdn_dedicated_ssl_add_name", "cdn_dedicated_ssl_add_name_pattern", "cdn_dedicated_ssl_add_certificate", "cdn_dedicated_ssl_add_key", "cdn_dedicated_ssl_add_chain", "cdn_dedicated_ssl_add_lets_encrypt_explain", "cdn_dedicated_ssl_add_success", "cdn_dedicated_ssl_add_load_error", "cdn_dedicated_ssl_add_error", "cdn_dedicated_ssl_add_warning"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cdn_dedicated_ssl_add" : "Mein Zertifikat hinzuf\u00fcgen", "cdn_dedicated_ssl_add_explain" : "Bitte geben Sie die Informationen zum Zertifikat an:", "cdn_dedicated_ssl_add_name" : "Name des Zertifikats", "cdn_dedicated_ssl_add_name_pattern" : "Der Name des Zertifikats darf keine Leerzeichen enthalten.", "cdn_dedicated_ssl_add_certificate" : "Zertifikat", "cdn_dedicated_ssl_add_key" : "Schl\u00fcssel", "cdn_dedicated_ssl_add_chain" : "Chain", "cdn_dedicated_ssl_add_lets_encrypt_explain" : "Lassen Sie dieses Feld frei, um den Namen automatisch \u00fcber Let\u2019s Encrypt zu generieren.", "cdn_dedicated_ssl_add_success" : "Das SSL Zertifikat wird in K\u00fcrze aktiviert.", "cdn_dedicated_ssl_add_load_error" : "Beim Laden der Informationen Ihres SSL-Zertifikats ist ein Fehler aufgetreten.", "cdn_dedicated_ssl_add_error" : "Une erreur est survenue lors de l'ajout du certificat SSL.", "cdn_dedicated_ssl_add_warning" : "Sie k\u00f6nnen kein weiteres SSL-Zertifikat zu Ihrem CDN hinzuf\u00fcgen, da bereits ein SSL-Zertifikat hinzugef\u00fcgt ist."} | json_instruct | {"type": "object", "properties": {"cdn_dedicated_ssl_add": {"type": "string"}, "cdn_dedicated_ssl_add_explain": {"type": "string"}, "cdn_dedicated_ssl_add_name": {"type": "string"}, "cdn_dedicated_ssl_add_name_pattern": {"type": "string"}, "cdn_dedicated_ssl_add_certificate": {"type": "string"}, "cdn_dedicated_ssl_add_key": {"type": "string"}, "cdn_dedicated_ssl_add_chain": {"type": "string"}, "cdn_dedicated_ssl_add_lets_encrypt_explain": {"type": "string"}, "cdn_dedicated_ssl_add_success": {"type": "string"}, "cdn_dedicated_ssl_add_load_error": {"type": "string"}, "cdn_dedicated_ssl_add_error": {"type": "string"}, "cdn_dedicated_ssl_add_warning": {"type": "string"}}, "required": ["cdn_dedicated_ssl_add", "cdn_dedicated_ssl_add_explain", "cdn_dedicated_ssl_add_name", "cdn_dedicated_ssl_add_name_pattern", "cdn_dedicated_ssl_add_certificate", "cdn_dedicated_ssl_add_key", "cdn_dedicated_ssl_add_chain", "cdn_dedicated_ssl_add_lets_encrypt_explain", "cdn_dedicated_ssl_add_success", "cdn_dedicated_ssl_add_load_error", "cdn_dedicated_ssl_add_error", "cdn_dedicated_ssl_add_warning"], "$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": {"compile": {"type": "string"}, "compile-pipeline": {"type": "string"}, "compile-lexer": {"type": "string"}}, "required": ["compile", "compile-pipeline", "compile-lexer"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"moo": {"type": "string"}, "nearley": {"type": "string"}}, "required": ["moo", "nearley"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sinope-project", "version" : "1.0.0", "description" : "Simple sinope project", "main" : "src/parser.js", "scripts" : {"compile" : "nearleyc src/grammar/grammar.bundle.ne -o src/grammar/grammar.js", "compile-pipeline" : "webpack --config pipeline.config.js", "compile-lexer" : "webpack --config lexer.config.js"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"webpack" : "^5.25.0", "webpack-cli" : "^4.5.0"}, "dependencies" : {"moo" : "^0.5.1", "nearley" : "^2.20.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"compile": {"type": "string"}, "compile-pipeline": {"type": "string"}, "compile-lexer": {"type": "string"}}, "required": ["compile", "compile-pipeline", "compile-lexer"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"moo": {"type": "string"}, "nearley": {"type": "string"}}, "required": ["moo", "nearley"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"repair_end" : "2019-08-12 01:07:31.058688", "repair_begin" : "2019-08-12 00:10:09.528555", "patches" : []} | json_instruct | {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3502020020", "district_id" : "3502020", "name" : "NAILAN"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "export var cilUserFemale = [\"512 512\", \"<path fill='var(--ci-primary-color, currentColor)' d='M403.6,343.656l-72.823-47.334L344.043,272h23.428a48,48,0,0,0,44.119-66.908L361.581,90.57a112.029,112.029,0,0,0-211.162,0L100.41,205.092A48,48,0,0,0,144.529,272h23.428l13.266,24.322L108.4,343.656A79.725,79.725,0,0,0,72,410.732V496H440V410.732A79.727,79.727,0,0,0,403.6,343.656ZM408,464H104V410.732a47.836,47.836,0,0,1,21.841-40.246l97.66-63.479L186.953,240H144.529a16,16,0,0,1-14.72-22.27l50.172-114.9.448-1.143a80.029,80.029,0,0,1,151.142,0l.2.58L382.191,217.73A16,16,0,0,1,367.471,240H325.047L288.5,307.007l97.661,63.479h0A47.836,47.836,0,0,1,408,410.732Z' class='ci-primary'/>\"];", "map" : {"version" : 3, "sources" : ["/Users/huangjingzhan/Desktop/NUSTeams/node_modules/@coreui/icons/js/free/cil-user-female.js"], "names" : ["cilUserFemale"], "mappings" : "AAAA,OAAO,IAAMA,aAAa,GAAG,CAAC,SAAD,EAAW,0nBAAX,CAAtB", "sourcesContent" : ["export const cilUserFemale = [\"512 512\",\"<path fill='var(--ci-primary-color, currentColor)' d='M403.6,343.656l-72.823-47.334L344.043,272h23.428a48,48,0,0,0,44.119-66.908L361.581,90.57a112.029,112.029,0,0,0-211.162,0L100.41,205.092A48,48,0,0,0,144.529,272h23.428l13.266,24.322L108.4,343.656A79.725,79.725,0,0,0,72,410.732V496H440V410.732A79.727,79.727,0,0,0,403.6,343.656ZM408,464H104V410.732a47.836,47.836,0,0,1,21.841-40.246l97.66-63.479L186.953,240H144.529a16,16,0,0,1-14.72-22.27l50.172-114.9.448-1.143a80.029,80.029,0,0,1,151.142,0l.2.58L382.191,217.73A16,16,0,0,1,367.471,240H325.047L288.5,307.007l97.661,63.479h0A47.836,47.836,0,0,1,408,410.732Z' class='ci-primary'/>\"]"]}, "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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}, "watch-examples": {"type": "string"}, "preversion": {"type": "string"}, "postversion": {"type": "string"}}, "required": ["test", "watch", "watch-examples", "preversion", "postversion"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["jest", "mocha", "typescript"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "typings", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "commandy", "version" : "3.0.0", "description" : "The programmatic solution for command-line interfaces, inspired by commander.js", "main" : "dest/index.js", "typings" : "dest/index.d.ts", "repository" : "git@github.com:trustedtomato/commandy.git", "author" : "Halasi Tam\u00e1s <trusted.tomato@gmail.com>", "license" : "MIT", "scripts" : {"test" : "tsc && jest", "watch" : "tsc -w", "watch-examples" : "tsc -p examples/tsconfig.json -w", "preversion" : "tsc && npm test", "postversion" : "git push && git push --tags && npm publish"}, "devDependencies" : {"jest" : "^20.0.4", "mocha" : "^3.2.0", "typescript" : "^2.3.4"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "watch": {"type": "string"}, "watch-examples": {"type": "string"}, "preversion": {"type": "string"}, "postversion": {"type": "string"}}, "required": ["test", "watch", "watch-examples", "preversion", "postversion"]}, "devDependencies": {"type": "object", "properties": {"jest": {"type": "string"}, "mocha": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["jest", "mocha", "typescript"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "typings", "repository", "author", "license", "scripts", "devDependencies", "dependencies"], "$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"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"source": {"type": "string"}, "issues": {"type": "string"}}, "required": ["source", "issues"]}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"joetannenbaum/alfred-workflow": {"type": "string"}, "algolia/algoliasearch-client-php": {"type": "string"}, "erusev/parsedown": {"type": "string"}}, "required": ["joetannenbaum/alfred-workflow", "algolia/algoliasearch-client-php", "erusev/parsedown"]}}, "required": ["name", "description", "version", "keywords", "homepage", "support", "license", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "dannystreur/alfred-stripe-docs", "description" : "An ultra-fast Stripe docs search workflow for Alfred 3.", "version" : "1.0.0", "keywords" : ["alfred", "alfred-workflow", "stripe", "algolia"], "homepage" : "https://github.com/DannyStreur/alfred-stripe-docs/", "support" : {"source" : "https://github.com/DannyStreur/alfred-stripe-docs", "issues" : "https://github.com/DannyStreur/alfred-stripe-docs/issues"}, "license" : "MIT", "require" : {"joetannenbaum/alfred-workflow" : "^0.1.0", "algolia/algoliasearch-client-php" : "^1.27", "erusev/parsedown" : "^1.7"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "support": {"type": "object", "properties": {"source": {"type": "string"}, "issues": {"type": "string"}}, "required": ["source", "issues"]}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"joetannenbaum/alfred-workflow": {"type": "string"}, "algolia/algoliasearch-client-php": {"type": "string"}, "erusev/parsedown": {"type": "string"}}, "required": ["joetannenbaum/alfred-workflow", "algolia/algoliasearch-client-php", "erusev/parsedown"]}}, "required": ["name", "description", "version", "keywords", "homepage", "support", "license", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "professorship", "definition" : "The office or position of a professor, or public teacher. Walton."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "NiCEBook: supporting natural note taking.", "fields" : ["multimedia", "structuring", "note taking", "human computer interaction", "reuse"], "abstract" : "In this paper, we present NiCEBook, a paper notebook that supports taking, structuring and reusing notes. Through a study of note-taking habits, we observed that different strategies are used to organize and share notes. Based on these observations, we developed a design for a notebook that combines different approaches to better support these activities. The details of our design were informed by an additional online survey. We emphasize the need to examine the characteristics of taking notes with paper notebooks in order to develop a digital system that resembles the quality of traditional writing. With NiCEBook, we present a solution that combines the flexibility and simplicity of taking notes on paper with the benefits of a digital representation. We demonstrate the capabilities of our system through customized views, searching and sharing functionality.", "citation" : "Citations (31)", "departments" : ["Upper Austria U ... enberg, Austria", "Upper Austria U ... enberg, Austria", "Upper Austria U ... enberg, Austria"], "authors" : ["Peter Brandl.....http://dblp.org/pers/hd/b/Brandl:Peter", "Christoph Richter.....http://dblp.org/pers/hd/r/Richter:Christoph", "Michael Haller.....http://dblp.org/pers/hd/h/Haller:Michael"], "conf" : "chi", "year" : "2010", "pages" : 10} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"core/amd/backbone.marionette.js": {"type": "string"}, "core/amd/backbone.marionette.min.js": {"type": "string"}, "core/backbone.marionette.js": {"type": "string"}, "core/backbone.marionette.min.js": {"type": "string"}, "backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}}, "required": ["core/amd/backbone.marionette.js", "core/amd/backbone.marionette.min.js", "core/backbone.marionette.js", "core/backbone.marionette.min.js", "backbone.marionette.js", "backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"core/amd/backbone.marionette.js" : "sha256-YZQiP03QvE2jiEo/ujAxhoVgeeeCRDwPw6WopGBEiKI=", "core/amd/backbone.marionette.min.js" : "sha256-eZwaKBoTJN/ZBPbvKbZQmzABGgYPa536KNaq5g/2cyU=", "core/backbone.marionette.js" : "sha256-Bwz/0ABIBIbkzlLVAaKuNTONWFlq572BmnD93WzLVRA=", "core/backbone.marionette.min.js" : "sha256-JaQZnP6AtMQSqGvfO5p81FPDUa9Xb0wYwN1PQ769etQ=", "backbone.marionette.js" : "sha256-95YnP1Qj34a9hPcMtc9Z5d7142FYZzHohrGyaGSnbIU=", "backbone.marionette.min.js" : "sha256-hEGVgVYX41xsYT0+VhWd6PgX8nakpfngY80FSRo5bQM="} | json_instruct | {"type": "object", "properties": {"core/amd/backbone.marionette.js": {"type": "string"}, "core/amd/backbone.marionette.min.js": {"type": "string"}, "core/backbone.marionette.js": {"type": "string"}, "core/backbone.marionette.min.js": {"type": "string"}, "backbone.marionette.js": {"type": "string"}, "backbone.marionette.min.js": {"type": "string"}}, "required": ["core/amd/backbone.marionette.js", "core/amd/backbone.marionette.min.js", "core/backbone.marionette.js", "core/backbone.marionette.min.js", "backbone.marionette.js", "backbone.marionette.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "files": {"type": "array", "items": {"type": "string"}}, "unpkg": {"type": "string"}, "jsdelivr": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-runtime": {"type": "string"}, "leancloud-realtime": {"type": "string"}, "leancloud-storage": {"type": "string"}, "markme": {"type": "string"}}, "required": ["babel-runtime", "leancloud-realtime", "leancloud-storage", "markme"]}, "devDependencies": {"type": "object", "properties": {"babel-plugin-external-helpers": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-plugin-transform-object-rest-spread": {"type": "string"}, "babel-plugin-transform-runtime": {"type": "string"}, "babel-preset-env": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-filesize": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["babel-plugin-external-helpers", "babel-plugin-transform-class-properties", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-runtime", "babel-preset-env", "rollup", "rollup-plugin-babel", "rollup-plugin-commonjs", "rollup-plugin-filesize", "rollup-plugin-node-resolve", "rollup-plugin-uglify"]}}, "required": ["name", "version", "scripts", "files", "unpkg", "jsdelivr", "jsnext:main", "module", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "markme-leancloud", "version" : "0.0.20", "scripts" : {"prepublish" : "rollup -c"}, "files" : ["lib"], "unpkg" : "lib/index.umd.min.js", "jsdelivr" : "lib/index.umd.min.js", "jsnext:main" : "lib/index.es.js", "module" : "lib/index.es.js", "main" : "lib/index.js", "dependencies" : {"babel-runtime" : "^6.26.0", "leancloud-realtime" : "^3.5.7", "leancloud-storage" : "^3.6.8", "markme" : "^0.0.19"}, "devDependencies" : {"babel-plugin-external-helpers" : "^6.22.0", "babel-plugin-transform-class-properties" : "^6.24.1", "babel-plugin-transform-object-rest-spread" : "^6.26.0", "babel-plugin-transform-runtime" : "^6.23.0", "babel-preset-env" : "^1.6.1", "rollup" : "^0.58.2", "rollup-plugin-babel" : "^3.0.4", "rollup-plugin-commonjs" : "^9.1.3", "rollup-plugin-filesize" : "^1.5.0", "rollup-plugin-node-resolve" : "^3.3.0", "rollup-plugin-uglify" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"prepublish": {"type": "string"}}, "required": ["prepublish"]}, "files": {"type": "array", "items": {"type": "string"}}, "unpkg": {"type": "string"}, "jsdelivr": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"babel-runtime": {"type": "string"}, "leancloud-realtime": {"type": "string"}, "leancloud-storage": {"type": "string"}, "markme": {"type": "string"}}, "required": ["babel-runtime", "leancloud-realtime", "leancloud-storage", "markme"]}, "devDependencies": {"type": "object", "properties": {"babel-plugin-external-helpers": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-plugin-transform-object-rest-spread": {"type": "string"}, "babel-plugin-transform-runtime": {"type": "string"}, "babel-preset-env": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-commonjs": {"type": "string"}, "rollup-plugin-filesize": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}, "rollup-plugin-uglify": {"type": "string"}}, "required": ["babel-plugin-external-helpers", "babel-plugin-transform-class-properties", "babel-plugin-transform-object-rest-spread", "babel-plugin-transform-runtime", "babel-preset-env", "rollup", "rollup-plugin-babel", "rollup-plugin-commonjs", "rollup-plugin-filesize", "rollup-plugin-node-resolve", "rollup-plugin-uglify"]}}, "required": ["name", "version", "scripts", "files", "unpkg", "jsdelivr", "jsnext:main", "module", "main", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}}, "required": ["sideEffects", "main", "module"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sideEffects" : false, "main" : "../../cjs/exporter/excel_format_converter.js", "module" : "../../esm/exporter/excel_format_converter.js"} | json_instruct | {"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}}, "required": ["sideEffects", "main", "module"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "addEventListenerOnce", "version" : "1.0.0", "description" : "addEventListenerOnce", "main" : "index.js", "scripts" : {"start" : "webpack --progress --colors --watch", "dev" : "webpack-dev-server", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rofrol/addEventListenerOnce.git"}, "author" : "Roman Fro\u0142ow <rofrol@gmail.com>", "license" : "Apache-2.0", "bugs" : {"url" : "https://github.com/rofrol/addEventListenerOnce/issues"}, "homepage" : "https://github.com/rofrol/addEventListenerOnce#readme", "devDependencies" : {"babel-core" : "^6.3.26", "babel-eslint" : "^5.0.0", "babel-loader" : "^6.2.0", "babel-preset-es2015" : "^6.3.13", "eslint" : "^2.4.0", "eslint-config-airbnb" : "^6.1.0", "webpack" : "^1.12.9", "webpack-dev-server" : "^1.14.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dev", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-eslint", "babel-loader", "babel-preset-es2015", "eslint", "eslint-config-airbnb", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"uuid" : "d0e5e81f-60c7-481b-9b1c-582832627855", "children" : ["f5ffa405-14ab-433b-ae1e-b03a69f0524b"], "befores" : [{"name" : "check_ui", "status" : "passed", "start" : 1625764609774, "stop" : 1625764609774}], "start" : 1625764609774, "stop" : 1625764610312} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["uuid", "children", "befores", "start", "stop"], "$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.