input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Conqueyrac", "dpt" : "Gard", "inscrits" : 110, "abs" : 11, "votants" : 99, "blancs" : 3, "nuls" : 1, "exp" : 95, "res" : [{"panneau" : "11", "voix" : 30}, {"panneau" : "2", "voix" : 20}, {"panneau" : "9", "voix" : 18}, {"panneau" : "3", "voix" : 13}, {"panneau" : "4", "voix" : 7}, {"panneau" : "1", "voix" : 5}, {"panneau" : "6", "voix" : 1}, {"panneau" : "8", "voix" : 1}, {"panneau" : "5", "voix" : 0}, {"panneau" : "7", "voix" : 0}, {"panneau" : "10", "voix" : 0}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"url" : "https://www.youtube.com/watch?v=aUdKzb4LGJI"} | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"exercises": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "string"}, "calories": {"type": "string"}}, "required": ["name", "description", "date", "calories"]}}}, "required": ["exercises"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"exercises" : [{"name" : "Push Up", "description" : "Valid Exercise", "date" : "10-10-20", "calories" : "100"}, {"name" : "Invalid Description", "description" : "Inv@lid DEScr1pTI0N", "date" : "10-10-20", "calories" : "100"}]} | json_instruct | {"type": "object", "properties": {"exercises": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "date": {"type": "string"}, "calories": {"type": "string"}}, "required": ["name", "description", "date", "calories"]}}}, "required": ["exercises"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"description": {"type": "string"}, "manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"48": {"type": "string"}}, "required": ["48"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["gecko"]}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"strict_min_version": {"type": "string"}}, "required": ["strict_min_version"]}}, "required": ["gecko"]}}, "required": ["description", "manifest_version", "name", "version", "icons", "permissions", "background", "applications", "browser_specific_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Intercepts Twitter's API calls for scrapping.", "manifest_version" : 2, "name" : "Twitter Crawler", "version" : "1.0", "icons" : {"48" : "icons/icon.png"}, "permissions" : ["webRequest", "webRequestBlocking", "<all_urls>"], "background" : {"scripts" : ["scrapper.js"]}, "applications" : {"gecko" : {"id" : "scrapper@isistan.unicen.edu.ar"}}, "browser_specific_settings" : {"gecko" : {"strict_min_version" : "57.0a1"}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"48": {"type": "string"}}, "required": ["48"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "applications": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["gecko"]}, "browser_specific_settings": {"type": "object", "properties": {"gecko": {"type": "object", "properties": {"strict_min_version": {"type": "string"}}, "required": ["strict_min_version"]}}, "required": ["gecko"]}}, "required": ["description", "manifest_version", "name", "version", "icons", "permissions", "background", "applications", "browser_specific_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}, "descriptionID": {"type": "string"}, "cloudProvider": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform", "descriptionID", "cloudProvider"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "b4cc2c52-34a6-4b43-b57c-4bdeb4514a5a", "queryName" : "Virtual Network with DDoS Protection Plan disabled", "severity" : "MEDIUM", "category" : "Availability", "descriptionText" : "Virtual Network should have DDoS Protection Plan enabled", "descriptionUrl" : "https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/virtual_network#ddos_protection_plan", "platform" : "Terraform", "descriptionID" : "c08cb91b", "cloudProvider" : "azure"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "queryName": {"type": "string"}, "severity": {"type": "string"}, "category": {"type": "string"}, "descriptionText": {"type": "string"}, "descriptionUrl": {"type": "string"}, "platform": {"type": "string"}, "descriptionID": {"type": "string"}, "cloudProvider": {"type": "string"}}, "required": ["id", "queryName", "severity", "category", "descriptionText", "descriptionUrl", "platform", "descriptionID", "cloudProvider"], "$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"}, "dependencies": {"type": "object", "properties": {"fs": {"type": "string"}, "string": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["fs", "string", "twitter"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "twitscript", "version" : "1.0.4", "description" : "Bot for twitter", "main" : "app.js", "dependencies" : {"fs" : "^0.0.2", "string" : "^3.3.1", "twitter" : "^1.2.5"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "\u0016https://github.com/AntonyCanut/TwitScript.git"}, "keywords" : ["bot", "twitter", "nodejs", "javascript"], "author" : "Antony Canut", "license" : "ISC"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"fs": {"type": "string"}, "string": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["fs", "string", "twitter"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "full_time_school": {"type": "boolean"}, "profile": {"type": "object", "properties": {"students": {"type": "object", "properties": {"2013": {"type": "array", "items": {}}, "2014": {"type": "array", "items": {}}, "2015": {"type": "array", "items": {}}}, "required": ["2013", "2014", "2015"]}, "teacher": {"type": "array", "items": {}}, "partner": {"type": "array", "items": {}}}, "required": ["students", "teacher", "partner"]}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}, "working_groups": {"type": "array", "items": {}}}, "required": ["programs", "working_groups"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "phone", "provider", "full_time_school", "profile", "programs", "state", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Technische Universit\u00e4t Dresden", "id" : "SN-4390290-0", "address" : " Mommsenstra\u00dfe\u00a013 01069\u00a0Dresden\u00a0OT\u00a0S\u00fcdvorstadt-West ", "school_type" : "Weiterbildungsst\u00e4tte Hochschule", "legal_status" : 1, "phone" : "0351/4630 ", "provider" : "Freistaat Sachsen - Staatsministerium f\u00fcr Wissenschaft und Kunst", "full_time_school" : false, "profile" : {"students" : {"2013" : [], "2014" : [], "2015" : []}, "teacher" : [], "partner" : []}, "programs" : {"programs" : [], "working_groups" : []}, "state" : "SN", "lon" : 13.726474, "lat" : 51.027009} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "legal_status": {"type": "integer"}, "phone": {"type": "string"}, "provider": {"type": "string"}, "full_time_school": {"type": "boolean"}, "profile": {"type": "object", "properties": {"students": {"type": "object", "properties": {"2013": {"type": "array", "items": {}}, "2014": {"type": "array", "items": {}}, "2015": {"type": "array", "items": {}}}, "required": ["2013", "2014", "2015"]}, "teacher": {"type": "array", "items": {}}, "partner": {"type": "array", "items": {}}}, "required": ["students", "teacher", "partner"]}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {}}, "working_groups": {"type": "array", "items": {}}}, "required": ["programs", "working_groups"]}, "state": {"type": "string"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "legal_status", "phone", "provider", "full_time_school", "profile", "programs", "state", "lon", "lat"], "$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"}, "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" : "Matching Schemas in Online Communities: A Web 2.0 Approach.", "fields" : ["synthetic data", "schema", "data integration", "online community", "web 2 0"], "abstract" : "When integrating data from multiple sources, a key task that online communities often face is to match the schemas of the data sources. Today, such matching often incurs a huge workload that overwhelms the relatively small set of volunteer integrators. In such cases, community members may not even volunteer to be integrators, due to the high workload, and consequently no integration systems can be built. To address this problem, we propose to enlist the multitude of users in the community to help match the schemas, in a Web 2.0 fashion. We discuss the challenges of this approach and provide initial solutions. Finally, we describe an extensive set of experiments on both real-world and synthetic data that demonstrate the utility of the approach.", "citation" : "Citations (137)", "departments" : ["Microsoft", "University of Wisconsin-Madison", "University of Wisconsin-Madison"], "authors" : ["Robert McCann.....http://dblp.org/pers/hd/m/McCann:Robert", "Warren Shen.....http://dblp.org/pers/hd/s/Shen:Warren", "AnHai Doan.....http://dblp.org/pers/hd/d/Doan:AnHai"], "conf" : "icde", "year" : "2008", "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "import { combineReducers } from \"redux\";\nimport { user } from \"./user\";\nvar Reducers = combineReducers({\n userState: user\n});\nexport default Reducers;", "map" : {"version" : 3, "sources" : ["C:/Users/dev_v/Desktop/INSTAGRAM/clone/components/redux/reducers/index.js"], "names" : ["combineReducers", "user", "Reducers", "userState"], "mappings" : "AAAA,SAAQA,eAAR,QAA8B,OAA9B;AACA,SAAQC,IAAR;AAGA,IAAMC,QAAQ,GAAGF,eAAe,CAAC;AAC7BG,EAAAA,SAAS,EAAEF;AADkB,CAAD,CAAhC;AAKA,eAAeC,QAAf", "sourcesContent" : ["import {combineReducers} from \"redux\"\r\nimport {user} from \"./user\"\r\n\r\n\r\nconst Reducers = combineReducers({\r\n userState: user\r\n})\r\n\r\n\r\nexport default Reducers"]}, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "02a20c01-1f28-66c7-b4ae-ee9788753b82", "name" : "elasticSearch", "values" : [{"key" : "url", "value" : "localhost", "enabled" : true}, {"key" : "port", "value" : "9200", "enabled" : true}, {"key" : "template_name", "value" : "test-template", "enabled" : true}, {"key" : "index", "value" : "november15", "enabled" : true}, {"key" : "doc_id", "value" : "1", "enabled" : true}, {"key" : "type", "value" : "post", "enabled" : true}, {"key" : "indices", "value" : "logstash-*", "enabled" : true}, {"key" : "source_exclude", "value" : "", "enabled" : true}, {"key" : "source_include", "value" : "*", "enabled" : true}], "_postman_variable_scope" : "environment", "_postman_exported_at" : "2018-11-14T06:59:05.937Z", "_postman_exported_using" : "Postman/6.4.4"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "values": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}, "enabled": {"type": "boolean"}}, "required": ["key", "value", "enabled"]}}, "_postman_variable_scope": {"type": "string"}, "_postman_exported_at": {"type": "string"}, "_postman_exported_using": {"type": "string"}}, "required": ["id", "name", "values", "_postman_variable_scope", "_postman_exported_at", "_postman_exported_using"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Grisy-sur-Seine", "circ" : "4\u00e8me circonscription", "dpt" : "Seine-et-Marne", "inscrits" : 95, "abs" : 49, "votants" : 46, "blancs" : 3, "nuls" : 0, "exp" : 43, "res" : [{"nuance" : "LR", "nom" : "M. Christian JACOB", "voix" : 34}, {"nuance" : "REM", "nom" : "M. Emmanuel MARCADET", "voix" : 9}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "cover": {"type": "string"}, "check": {"type": "string"}, "travisci": {"type": "string"}, "publish-to-npm": {"type": "string"}}, "required": ["lint", "test", "cover", "check", "travisci", "publish-to-npm"]}, "dependencies": {"type": "object", "properties": {"xmldom-xplat": {"type": "string"}, "marc-record-js": {"type": "string"}}, "required": ["xmldom-xplat", "marc-record-js"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "istanbul": {"type": "string"}, "codeclimate-test-reporter": {"type": "string"}}, "required": ["chai", "jshint", "mocha", "istanbul", "codeclimate-test-reporter"]}}, "required": ["name", "description", "contributors", "keywords", "homepage", "bugs", "repository", "license", "version", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@natlibfi/marc-record-converters", "description" : "Convert MARC records between different formats", "contributors" : [{"name" : "The National Library of Finland"}, {"name" : "Pasi Tuominen", "email" : "pasi.tuominen@gmail.com"}], "keywords" : ["marc", "record", "iso2709", "bibliography", "bibliographic", "bibliographies", "catalogue", "cataloguing", "library", "libraries", "xml", "convert", "serialize", "serialization", "import", "export", "aleph"], "homepage" : "https://github.com/natlibfi/marc-record-converters", "bugs" : {"url" : "https://github.com/natlibfi/marc-record-converters/issues"}, "repository" : {"type" : "git", "url" : "git@github.com:natlibfi/marc-record-converters.git"}, "license" : "ISC", "version" : "1.0.2", "main" : "./lib/main", "scripts" : {"lint" : "jshint .", "test" : "istanbul cover _mocha", "cover" : "npm run test && istanbul check-coverage", "check" : "npm run lint && npm run cover", "travisci" : "npm run check", "publish-to-npm" : "npm install && npm run check && npm publish"}, "dependencies" : {"xmldom-xplat" : "https://github.com/natlibfi/xmldom-xplat", "marc-record-js" : "^0.3.1"}, "devDependencies" : {"chai" : "^3.5.0", "jshint" : "^2.9.4", "mocha" : "^3.2.0", "istanbul" : "^0.4.5", "codeclimate-test-reporter" : "^0.4.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "cover": {"type": "string"}, "check": {"type": "string"}, "travisci": {"type": "string"}, "publish-to-npm": {"type": "string"}}, "required": ["lint", "test", "cover", "check", "travisci", "publish-to-npm"]}, "dependencies": {"type": "object", "properties": {"xmldom-xplat": {"type": "string"}, "marc-record-js": {"type": "string"}}, "required": ["xmldom-xplat", "marc-record-js"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "jshint": {"type": "string"}, "mocha": {"type": "string"}, "istanbul": {"type": "string"}, "codeclimate-test-reporter": {"type": "string"}}, "required": ["chai", "jshint", "mocha", "istanbul", "codeclimate-test-reporter"]}}, "required": ["name", "description", "contributors", "keywords", "homepage", "bugs", "repository", "license", "version", "main", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d82-16", "text" : "20036\nJuly 22, 1963\nMr. Clair R. Tettemer\nNorth Central Educational Television\nAssociation\nBox 6\nFargo,North Dakota\nDear Clair:\nlam enclosing a copy of a completely revised budget for our amendment\nto the Utilization Kit Project. You'll note that this is substantially\nmore than we had originally planned, but we have reviewed it carefully\nwith Office cff Education personnel and they feel that we will have a far\nbetter produce if we are able to spend more per film. I could not disagree\nwith this and accepted their recommendation to increase the cost $9,000\nper film. We hope to have an answer on this in two weeks.\nIn the meantime I think you may want to postpone the meeting of the\nAdvisory Committee until this matter is settled. It would be considerably\nbetter to have this approved and signed before we do any more analysis\nof the treatments. Having additional funds for each film should make a\ndifference in the kind of analysis which we make.\nRegarding the treatment for Kit No. 2, my feeling is that this is generally\nquite well done, although it takes quite awhile to get into it and once into\nit, the matters concerning television are handled in fairly trite terms. The\ntestimonials are not likely to be taken well and my feeling is that they\nwill probably be rather ineffectual. If these could be done fear real in a\nclassroom setting or a superintendent's office, I would be more inclined\nto find this idea attractive.\nOn page 25, the sequence with illustrations which shows television\nmeeting various needs might have a slightly different emphasis. For\nexample, instead of having the narrator saying that television can\ninvite viewers to learn..., I think we would be further ahead if we talked\nit from the point of view that \"with television, a teacher can invite and\nstimulate viewers to learn...\" contribute to the creation of attitudes, etc."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"out" : ["/bin/wasm3"]} | json_instruct | {"type": "object", "properties": {"out": {"type": "array", "items": {"type": "string"}}}, "required": ["out"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "null"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 29889, "name" : "remove google leftnav", "description" : "werwerwerw", "user" : {"id" : 6086, "name" : "91koff", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2010-05-10T06:41:55.000Z", "weekly_install_count" : 0, "total_install_count" : 269, "rating" : null, "after_screenshot_name" : null, "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2010-05-10T06:36:09.000Z", "category" : "site", "raw_subcategory" : "google", "subcategory" : "google", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.google.ru\"), domain(\"www.google.com\") {\r\n\r\ndiv[id=\"leftnav\"]\r\n {\r\n display: none !important;\r\n }\r\n\r\ndiv[id=\"center_col\"]\r\n {\r\n margin-left: 0px !important;\r\n border-left: none !important;\r\n }\r\n\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/29889/remove-google-leftnav.user.js", "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "null"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "null"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"car": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}, "length": {"type": "string"}, "capacity": {"type": "string"}, "volume": {"type": "string"}}, "required": ["car", "width", "height", "length", "capacity", "volume"]}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["type", "id", "attributes", "links"]}}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["data", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : [{"type" : "cars", "id" : "a8180a0c-a3c9-4734-afda-841929cf2035", "attributes" : {"car" : "GAZelle 3302 (RUS) N3", "width" : "9.8", "height" : "7.5", "length" : "6.2", "capacity" : "3307.0", "volume" : "413.2"}, "links" : {"self" : "http://deliverymanagerapi.local/api/cars/a8180a0c-a3c9-4734-afda-841929cf2035"}}, {"type" : "cars", "id" : "5d177260-d7e3-41b9-a86f-caf70eb8e29a", "attributes" : {"car" : "GAZelle 330202 (RUS) N1", "width" : "13.78", "height" : "7.5", "length" : "6.2", "capacity" : "3307.0", "volume" : "646.3"}, "links" : {"self" : "http://deliverymanagerapi.local/api/cars/5d177260-d7e3-41b9-a86f-caf70eb8e29a"}}], "links" : {"self" : "http://deliverymanagerapi.local/api/cars"}} | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "attributes": {"type": "object", "properties": {"car": {"type": "string"}, "width": {"type": "string"}, "height": {"type": "string"}, "length": {"type": "string"}, "capacity": {"type": "string"}, "volume": {"type": "string"}}, "required": ["car", "width", "height", "length", "capacity", "volume"]}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["type", "id", "attributes", "links"]}}, "links": {"type": "object", "properties": {"self": {"type": "string"}}, "required": ["self"]}}, "required": ["data", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"mc_avg_user_score": {"type": "number"}, "mc_metascore": {"type": "integer"}, "mc_mixed_rating_frequency": {"type": "integer"}, "mc_movie_name": {"type": "string"}, "mc_negative_rating_frequency": {"type": "integer"}, "mc_positive_rating_frequency": {"type": "integer"}, "mc_pro_critic_reviews": {"type": "array", "items": {}}, "mc_user_reviews": {"type": "array", "items": {"type": "object", "properties": {"neg_reactions": {"type": "integer"}, "pos_reactions": {"type": "integer"}, "review_date": {"type": "object", "properties": {"__type__": {"type": "string"}, "day": {"type": "integer"}, "month": {"type": "integer"}, "year": {"type": "integer"}}, "required": ["__type__", "day", "month", "year"]}, "score": {"type": "integer"}, "text": {"type": "string"}, "total_reactions": {"type": "integer"}, "user": {"type": "string"}}, "required": ["neg_reactions", "pos_reactions", "review_date", "score", "text", "total_reactions", "user"]}}}, "required": ["mc_avg_user_score", "mc_metascore", "mc_mixed_rating_frequency", "mc_movie_name", "mc_negative_rating_frequency", "mc_positive_rating_frequency", "mc_pro_critic_reviews", "mc_user_reviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mc_avg_user_score" : 6.6, "mc_metascore" : 35, "mc_mixed_rating_frequency" : 6, "mc_movie_name" : "Post Grad", "mc_negative_rating_frequency" : 1, "mc_positive_rating_frequency" : 6, "mc_pro_critic_reviews" : [], "mc_user_reviews" : [{"neg_reactions" : 0, "pos_reactions" : 0, "review_date" : {"__type__" : "datetime.date", "day" : 3, "month" : 11, "year" : 2010}, "score" : 8, "text" : "a great movie for the family, it will cheer you right up if you are having a bad day. its a movie that will make you smile thought the 90 minute duration.", "total_reactions" : 0, "user" : "moviefreak12"}, {"neg_reactions" : 0, "pos_reactions" : 0, "review_date" : {"__type__" : "datetime.date", "day" : 18, "month" : 11, "year" : 2012}, "score" : 6, "text" : "I knew Post Grad wasn't the perfect movie for Gilmore Girls fans, but I'd prefer a rental. The movie not that great, but really works on a prom night.", "total_reactions" : 0, "user" : "Kadeemluvmusic"}]} | json_instruct | {"type": "object", "properties": {"mc_avg_user_score": {"type": "number"}, "mc_metascore": {"type": "integer"}, "mc_mixed_rating_frequency": {"type": "integer"}, "mc_movie_name": {"type": "string"}, "mc_negative_rating_frequency": {"type": "integer"}, "mc_positive_rating_frequency": {"type": "integer"}, "mc_pro_critic_reviews": {"type": "array", "items": {}}, "mc_user_reviews": {"type": "array", "items": {"type": "object", "properties": {"neg_reactions": {"type": "integer"}, "pos_reactions": {"type": "integer"}, "review_date": {"type": "object", "properties": {"__type__": {"type": "string"}, "day": {"type": "integer"}, "month": {"type": "integer"}, "year": {"type": "integer"}}, "required": ["__type__", "day", "month", "year"]}, "score": {"type": "integer"}, "text": {"type": "string"}, "total_reactions": {"type": "integer"}, "user": {"type": "string"}}, "required": ["neg_reactions", "pos_reactions", "review_date", "score", "text", "total_reactions", "user"]}}}, "required": ["mc_avg_user_score", "mc_metascore", "mc_mixed_rating_frequency", "mc_movie_name", "mc_negative_rating_frequency", "mc_positive_rating_frequency", "mc_pro_critic_reviews", "mc_user_reviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "survival", "definition" : "1. A living or continuing longer than, or beyond the existence of, another person, thing, or event; an outliving. 2. (Arh\u00e6ol. & Ethnol.) Any habit, usage, or belief, remaining from ancient times, the origin of which is often unknown, or imperfectly known. The close bearing of the doctrine of survival on the study of manners and customs. Tylor. Survival of the fittest. (Biol.) See Natural selection, under Natural."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["id", "name", "county", "elevation", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1524726", "name" : "Pyramid Peak Trail", "county" : "Kittitas", "elevation" : 1120, "location" : {"type" : "Point", "coordinates" : [-121.3381461, 47.0976131]}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "county": {"type": "string"}, "elevation": {"type": "integer"}, "location": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["id", "name", "county", "elevation", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "go", "exercise" : "all-your-base", "id" : "b2138da22e5d46adb806821b01c30819", "url" : "https://exercism.io/my/solutions/b2138da22e5d46adb806821b01c30819", "handle" : "acml", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x530199ee1880697d40f794d789501500c81d2859", "tool" : "honeybadger", "start" : 1565795761.6586757, "end" : 1565795769.3786488, "duration" : 7.719973087310791, "analysis" : [{"errors" : [], "file" : "/unique_chucks/45/0x530199ee1880697d40f794d789501500c81d2859.sol", "name" : "Ownable"}, {"errors" : [], "file" : "/unique_chucks/45/0x530199ee1880697d40f794d789501500c81d2859.sol", "name" : "SafeMath"}, {"errors" : [], "file" : "/unique_chucks/45/0x530199ee1880697d40f794d789501500c81d2859.sol", "name" : "lockEtherPay"}]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}}, "required": ["errors", "file", "name"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"changepoint" : "2020-03-15", "country" : {"code" : "CYP", "group" : "el", "name" : "Cyprus"}, "topics" : [{"diff" : 11558.0, "topic" : "Sovereignty"}, {"diff" : 9666.0, "topic" : "Territorial entities"}, {"diff" : 8852.0, "topic" : "Politics"}, {"diff" : 8228.0, "topic" : "Regions"}, {"diff" : 7834.0, "topic" : "Geography"}, {"diff" : 6096.0, "topic" : "History"}, {"diff" : 5808.0, "topic" : "Europe"}, {"diff" : 5753.0, "topic" : "Cold war"}, {"diff" : 5113.0, "topic" : "Establishments"}, {"diff" : 4623.0, "topic" : "Wars involving greece"}, {"diff" : 4481.0, "topic" : "Greek rebellions against the ottoman empire"}, {"diff" : 4132.0, "topic" : "Categories"}, {"diff" : 3660.0, "topic" : "Military history"}, {"diff" : 3527.0, "topic" : "Archipelagoes"}, {"diff" : 3467.0, "topic" : "Religion"}, {"diff" : 3414.0, "topic" : "Sea or ocean"}, {"diff" : 3323.0, "topic" : "Christianity"}, {"diff" : 3103.0, "topic" : "19th-century religious leaders"}, {"diff" : 3016.0, "topic" : "Former territorial entities"}, {"diff" : 2901.0, "topic" : "Germany"}]} | json_instruct | {"type": "object", "properties": {"changepoint": {"type": "string"}, "country": {"type": "object", "properties": {"code": {"type": "string"}, "group": {"type": "string"}, "name": {"type": "string"}}, "required": ["code", "group", "name"]}, "topics": {"type": "array", "items": {"type": "object", "properties": {"diff": {"type": "number"}, "topic": {"type": "string"}}, "required": ["diff", "topic"]}}}, "required": ["changepoint", "country", "topics"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@hapi/hapi": {"type": "string"}, "@hapi/hoek": {"type": "string"}, "@hapi/inert": {"type": "string"}, "@hapi/joi": {"type": "string"}, "date-fns": {"type": "string"}, "decimal.js": {"type": "string"}, "limiter": {"type": "string"}, "mongoose": {"type": "string"}, "node-cron": {"type": "string"}}, "required": ["@hapi/hapi", "@hapi/hoek", "@hapi/inert", "@hapi/joi", "date-fns", "decimal.js", "limiter", "mongoose", "node-cron"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-nodemon": {"type": "string"}}, "required": ["gulp", "gulp-nodemon"]}}, "required": ["name", "version", "main", "license", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "server", "version" : "1.0.0", "main" : "server.js", "license" : "MIT", "private" : true, "dependencies" : {"@hapi/hapi" : "^19.1.1", "@hapi/hoek" : "^9.0.4", "@hapi/inert" : "^6.0.1", "@hapi/joi" : "^17.1.1", "date-fns" : "^2.14.0", "decimal.js" : "^10.2.0", "limiter" : "^1.1.5", "mongoose" : "^5.9.18", "node-cron" : "^2.0.3"}, "devDependencies" : {"gulp" : "^4.0.2", "gulp-nodemon" : "^2.5.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@hapi/hapi": {"type": "string"}, "@hapi/hoek": {"type": "string"}, "@hapi/inert": {"type": "string"}, "@hapi/joi": {"type": "string"}, "date-fns": {"type": "string"}, "decimal.js": {"type": "string"}, "limiter": {"type": "string"}, "mongoose": {"type": "string"}, "node-cron": {"type": "string"}}, "required": ["@hapi/hapi", "@hapi/hoek", "@hapi/inert", "@hapi/joi", "date-fns", "decimal.js", "limiter", "mongoose", "node-cron"]}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-nodemon": {"type": "string"}}, "required": ["gulp", "gulp-nodemon"]}}, "required": ["name", "version", "main", "license", "private", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"paper-elements": {"type": "string"}, "core-animated-pages": {"type": "string"}, "polymer": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["paper-elements", "core-animated-pages", "polymer", "underscore"]}}, "required": ["name", "version", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "sync-sdk-example", "version" : "1.0.0", "authors" : ["Camden Fullmer <camdenfullmer@gmail.com>"], "license" : "MIT", "private" : false, "ignore" : ["**/.*", "node_modules", "bower_components"], "dependencies" : {"paper-elements" : "Polymer/paper-elements#~0.5.2", "core-animated-pages" : "Polymer/core-animated-pages#~0.5.2", "polymer" : "Polymer/polymer#~0.5.2", "underscore" : "~1.7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"paper-elements": {"type": "string"}, "core-animated-pages": {"type": "string"}, "polymer": {"type": "string"}, "underscore": {"type": "string"}}, "required": ["paper-elements", "core-animated-pages", "polymer", "underscore"]}}, "required": ["name", "version", "authors", "license", "private", "ignore", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "logIndex": {"type": "integer"}, "removed": {"type": "boolean"}, "transactionHash": {"type": "string"}, "transactionIndex": {"type": "integer"}, "id": {"type": "string"}, "returnValues": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "from": {"type": "string"}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}}, "required": ["0", "1", "2", "from", "to", "value"]}, "event": {"type": "string"}, "signature": {"type": "string"}, "raw": {"type": "object", "properties": {"data": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "topics"]}}, "required": ["address", "blockHash", "blockNumber", "logIndex", "removed", "transactionHash", "transactionIndex", "id", "returnValues", "event", "signature", "raw"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"address" : "0x897Abf83f0C44b86cb67ec56c006c00d56659517", "blockHash" : "0xacc2b5577c9ccbd5608ea831c8d7c8c11cc77813c5a3bbb796b0b57438dea862", "blockNumber" : 12923150, "logIndex" : 270, "removed" : false, "transactionHash" : "0x7b87acc3bd716db51b69bc51f8e9fa6b9c0d2af601a49ec1ebf77c758e43eb4d", "transactionIndex" : 109, "id" : "log_0x7d13743c685f8288178aa47b4f0a7cbfcf8026afaafeed4fc646f647b9bfe028", "returnValues" : {"0" : "0x0000000000000000000000000000000000000000", "1" : "0x35f642457dD36f255df093c5C6BE6b3b672Bd6A2", "2" : {"_hex" : "0x2f010613ee73192966"}, "from" : "0x0000000000000000000000000000000000000000", "to" : "0x35f642457dD36f255df093c5C6BE6b3b672Bd6A2", "value" : {"_hex" : "0x2f010613ee73192966"}}, "event" : "Transfer", "signature" : "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "raw" : {"data" : "0x00000000000000000000000000000000000000000000002f010613ee73192966", "topics" : ["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef", "0x0000000000000000000000000000000000000000000000000000000000000000", "0x00000000000000000000000035f642457dd36f255df093c5c6be6b3b672bd6a2"]}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "blockHash": {"type": "string"}, "blockNumber": {"type": "integer"}, "logIndex": {"type": "integer"}, "removed": {"type": "boolean"}, "transactionHash": {"type": "string"}, "transactionIndex": {"type": "integer"}, "id": {"type": "string"}, "returnValues": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "from": {"type": "string"}, "to": {"type": "string"}, "value": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}}, "required": ["0", "1", "2", "from", "to", "value"]}, "event": {"type": "string"}, "signature": {"type": "string"}, "raw": {"type": "object", "properties": {"data": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}}, "required": ["data", "topics"]}}, "required": ["address", "blockHash", "blockNumber", "logIndex", "removed", "transactionHash", "transactionIndex", "id", "returnValues", "event", "signature", "raw"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "beer_Anchor_Summer_Beer", "brewery" : "Anchor Brewing", "name" : "Anchor Summer Beer", "abv" : "4.6", "description" : "Anchor Summer is the first American wheat beer in modern times. Our first brew of this light and refreshing beer was in the summer of 1984.\r\n\r\nAnchor Summer is an all-malt beer, and over 50% of its malt comes from malted wheat. It is fermented with a Triticum aestivum, AKA wheat traditional top-fermenting \"ale\" yeast because we prefer the clean flavors developed by this yeast. We believe that this style best celebrates the refreshingly light flavor of malted wheat. You may notice that the head on this beer is unusually abundant, with a consistency similar to whipped egg whites. This is due to protein contributed by the wheat.\r\n\r\nThe brewers at Anchor are proud to have revived not only rich hearty dark beers, but also this light crisp style of a modern American wheat beer.\r\n\r\nSummer getaway Wheat malt contributes to an unusual lightness and dryness to the palate, and this\u00e2\u0080\u0094combined with the distinctive flavor of the wheat\u00e2\u0080\u0094makes for a perfect thirst-quenching beverage. It is the ideal drink for beer lovers who appreciate tradition and character in their beer, but also seek a lighter, refreshing style, perfect for warm weather.\r\n\r\n-http://www.anchorbrewing.com/beers/summerbeer.htm", "category" : "Other Style", "style" : "Light American Wheat Ale or Lager", "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "category", "style", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"already_configured" : "Layanan sudah dikonfigurasi"}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["abort"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "teambition-share-json", "version" : "0.0.3", "description" : "A json server to share teambition upload file, designed for cloud function.", "main" : "index.js", "author" : "cyang39", "license" : "MIT", "dependencies" : {"node-fetch" : "^2.6.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}}, "required": ["node-fetch"]}}, "required": ["name", "version", "description", "main", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "2f2e785d975362836f8eaaf97d8a7d08887f2d56"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"homepage": {"type": "string"}, "checkver": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "bin": {"type": "string"}}, "required": ["homepage", "checkver", "version", "license", "description", "url", "hash", "autoupdate", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"homepage" : "https://www.nirsoft.net/utils/computer_turned_on_times.html", "checkver" : "TurnedOnTimesView v([\\d.]+)", "version" : "1.42", "license" : "freeware", "description" : "TurnedOnTimesView is a simple tool that analyses the event log of Windows operating system, and detects the time ranges that your computer was turned on. For every period of time that the computer was turned on, the following information is displayed: Startup Time, Shutdown Time, Duration, Shutdown Reason, Shutdown Type, Shutdown Process, and Shutdown Code.\n\nTurnedOnTimesView allows you to get this information from your local computer, and from remote computer on your network if you have enough privilege to read the event log of Windows remotely.", "url" : "https://www.nirsoft.net/utils/turnedontimesview.zip", "hash" : "092607ed102c5b051180e1fa76cee5ed38cbd7f22025d5f1121732b8573fed9f", "autoupdate" : {"url" : "https://www.nirsoft.net/utils/turnedontimesview.zip"}, "bin" : "TurnedOnTimesView.exe"} | json_instruct | {"type": "object", "properties": {"homepage": {"type": "string"}, "checkver": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "bin": {"type": "string"}}, "required": ["homepage", "checkver", "version", "license", "description", "url", "hash", "autoupdate", "bin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}}, "required": ["navigationBarTitleText"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"navigationBarTitleText" : "\u5c0f\u5386-datepicker \u793a\u4f8b"} | json_instruct | {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}}, "required": ["navigationBarTitleText"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {"amqplib": {"type": "string"}, "log4js": {"type": "string"}, "moment": {"type": "string"}}, "required": ["amqplib", "log4js", "moment"]}}, "required": ["name", "version", "keywords", "repository", "description", "license", "author", "contributors", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "netstatsNodeSNMPProcessor", "version" : "1.0.0", "keywords" : ["util", "functional", "server", "client", "browser"], "repository" : {"type" : "git", "url" : "https://github.com/ThatOneNeji/netstatsNodeSNMPProcessor.git"}, "description" : "SNMP Processor", "license" : "MIT", "author" : "ThatOneNeji", "contributors" : [], "dependencies" : {"amqplib" : "^0.8.0", "log4js" : "^6.3.0", "moment" : "^2.29.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "contributors": {"type": "array", "items": {}}, "dependencies": {"type": "object", "properties": {"amqplib": {"type": "string"}, "log4js": {"type": "string"}, "moment": {"type": "string"}}, "required": ["amqplib", "log4js", "moment"]}}, "required": ["name", "version", "keywords", "repository", "description", "license", "author", "contributors", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Errungenschaft \u2013 Bekannte Geschichten", "description" : "Ein Motiv f\u00fcr Namensk\u00e4rtchen.\nWenn der Geschichtenerz\u00e4hler beginnt zu sprechen, h\u00f6ren alle aufmerksam zu. Nur du kennst schon den Ausgang.", "sortorder" : 210032, "source" : ["Beim Abschluss aller Errungenschaften unter \u201eGeschichten vom Hafen der Steine \u2013 Reihe 1\u201c zu erhalten"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x382f28ea85232d6d6b22c51580e7669601949ec4", "tool" : "slither", "start" : 1563755960.1505258, "end" : 1563755964.4996047, "duration" : 4.349078893661499, "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "playableArea": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["width", "height", "x", "y"]}, "cells": {"type": "object", "properties": {"mover": {"type": "array", "items": {"type": "object", "properties": {"orientation": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["orientation", "x", "y"]}}, "enemy": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["mover", "enemy"]}}, "required": ["width", "height", "playableArea", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 8, "height" : 5, "playableArea" : {"width" : 4, "height" : 5, "x" : 0, "y" : 0}, "cells" : {"mover" : [{"orientation" : "right", "x" : 1, "y" : 1}], "enemy" : [{"x" : 6, "y" : 3}]}} | json_instruct | {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "playableArea": {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["width", "height", "x", "y"]}, "cells": {"type": "object", "properties": {"mover": {"type": "array", "items": {"type": "object", "properties": {"orientation": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["orientation", "x", "y"]}}, "enemy": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}}}, "required": ["mover", "enemy"]}}, "required": ["width", "height", "playableArea", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "410325202001", "text" : "\u7fe0\u5c4f\u793e\u533a"}, {"id" : "410325202200", "text" : "\u6865\u5317\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202201", "text" : "\u5e2d\u5cad\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202202", "text" : "\u7fdf\u5cad\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202203", "text" : "\u9f99\u66f2\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202204", "text" : "\u5f20\u5cad\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202205", "text" : "\u5e38\u5e97\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202206", "text" : "\u897f\u5730\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202207", "text" : "\u53e4\u8def\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202208", "text" : "\u7fdf\u6cb3\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202209", "text" : "\u671b\u57ce\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202210", "text" : "\u6881\u5143\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202211", "text" : "\u5434\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202212", "text" : "\u677f\u95f8\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202213", "text" : "\u5b89\u5cad\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202214", "text" : "\u5357\u5c6f\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202215", "text" : "\u4e07\u5b89\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202216", "text" : "\u67cf\u5761\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202217", "text" : "\u8001\u51e1\u5e97\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202218", "text" : "\u548c\u5e97\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202219", "text" : "\u5c97\u4e0a\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202220", "text" : "\u5bfa\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202221", "text" : "\u8349\u5b50\u6c9f\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202222", "text" : "\u725b\u5be8\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202223", "text" : "\u4e0a\u5761\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202224", "text" : "\u697c\u4e0a\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "410325202225", "text" : "\u6c6a\u5e84\u6751\u6751\u6c11\u59d4\u5458\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "jsx": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "moduleResolution": {"type": "string"}, "noEmit": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "strict": {"type": "boolean"}, "strictFunctionTypes": {"type": "boolean"}, "strictNullChecks": {"type": "boolean"}, "target": {"type": "string"}, "paths": {"type": "object", "properties": {"@medly-components/*": {"type": "array", "items": {"type": "string"}}, "@test-utils": {"type": "array", "items": {"type": "string"}}}, "required": ["@medly-components/*", "@test-utils"]}}, "required": ["baseUrl", "esModuleInterop", "jsx", "lib", "moduleResolution", "noEmit", "skipLibCheck", "strict", "strictFunctionTypes", "strictNullChecks", "target", "paths"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"baseUrl" : "./", "esModuleInterop" : true, "jsx" : "react", "lib" : ["es2015", "dom"], "moduleResolution" : "node", "noEmit" : true, "skipLibCheck" : true, "strict" : true, "strictFunctionTypes" : false, "strictNullChecks" : false, "target" : "esnext", "paths" : {"@medly-components/*" : ["packages/*/src"], "@test-utils" : ["packages/utils/src/test-utils"]}}, "include" : ["packages", "docs", "types"], "exclude" : ["node_modules", "packages/**/dist", ".storybook"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "esModuleInterop": {"type": "boolean"}, "jsx": {"type": "string"}, "lib": {"type": "array", "items": {"type": "string"}}, "moduleResolution": {"type": "string"}, "noEmit": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "strict": {"type": "boolean"}, "strictFunctionTypes": {"type": "boolean"}, "strictNullChecks": {"type": "boolean"}, "target": {"type": "string"}, "paths": {"type": "object", "properties": {"@medly-components/*": {"type": "array", "items": {"type": "string"}}, "@test-utils": {"type": "array", "items": {"type": "string"}}}, "required": ["@medly-components/*", "@test-utils"]}}, "required": ["baseUrl", "esModuleInterop", "jsx", "lib", "moduleResolution", "noEmit", "skipLibCheck", "strict", "strictFunctionTypes", "strictNullChecks", "target", "paths"]}, "include": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "include", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"exclude" : ["node_modules", "src/app/vendor", "tmp", "temp", "typings"]} | json_instruct | {"type": "object", "properties": {"exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["exclude"], "$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"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "readline-sync": {"type": "string"}}, "required": ["node-fetch", "readline-sync"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@updownleftdie/twitch-oauth-helper", "version" : "1.0.2", "description" : "Helps get and refresh client auth tokens", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "node test.js"}, "author" : "UpDownLeftDie (Jared Kotoff)", "license" : "Apache-2.0", "homepage" : "https://github.com/UpDownLeftDie/twitch-oauth-helper", "repository" : {"type" : "git", "url" : "https://github.com/UpDownLeftDie/twitch-oauth-helper.git"}, "dependencies" : {"node-fetch" : "^2.6.0", "readline-sync" : "^1.4.10"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"node-fetch": {"type": "string"}, "readline-sync": {"type": "string"}}, "required": ["node-fetch", "readline-sync"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "homepage", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "bio": {"type": "string"}, "followers": {"type": "array", "items": {"type": "string"}}, "followings": {"type": "array", "items": {"type": "string"}}, "personalTweets": {"type": "array", "items": {"type": "integer"}}}, "required": ["username", "password", "bio", "followers", "followings", "personalTweets"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "a", "password" : "a", "bio" : "", "followers" : ["b"], "followings" : ["b"], "personalTweets" : [1]} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "bio": {"type": "string"}, "followers": {"type": "array", "items": {"type": "string"}}, "followings": {"type": "array", "items": {"type": "string"}}, "personalTweets": {"type": "array", "items": {"type": "integer"}}}, "required": ["username", "password", "bio", "followers", "followings", "personalTweets"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[244, 27, 475, 1607, 425], [106, 318, 215, 1247, 355], [228, 330, 472, 1050, 318], [376, 435, 795, 229, 384], [296, 138, 400, 1018, 402]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"C_Cpp.dimInactiveRegions": {"type": "boolean"}}, "required": ["C_Cpp.dimInactiveRegions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"C_Cpp.dimInactiveRegions" : true} | json_instruct | {"type": "object", "properties": {"C_Cpp.dimInactiveRegions": {"type": "boolean"}}, "required": ["C_Cpp.dimInactiveRegions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 7838, "hash" : 1413644613, "artDyeHash" : 1413644613, "redacted" : false, "dyeManifestHash" : 1352954693, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "artDyeHash": {"type": "integer"}, "redacted": {"type": "boolean"}, "dyeManifestHash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "hash", "artDyeHash", "redacted", "dyeManifestHash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "subscriptionId": {"type": "string"}, "resourceGroupName": {"type": "string"}, "workspaceName": {"type": "string"}, "operationalInsightsResourceProvider": {"type": "string"}, "aggregationsName": {"type": "string"}}, "required": ["api-version", "subscriptionId", "resourceGroupName", "workspaceName", "operationalInsightsResourceProvider", "aggregationsName"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "properties": {"type": "object", "properties": {"aggregationBySeverity": {"type": "object", "properties": {"totalCriticalSeverity": {"type": "integer"}, "totalHighSeverity": {"type": "integer"}, "totalMediumSeverity": {"type": "integer"}, "totalLowSeverity": {"type": "integer"}, "totalInformationalSeverity": {"type": "integer"}}, "required": ["totalCriticalSeverity", "totalHighSeverity", "totalMediumSeverity", "totalLowSeverity", "totalInformationalSeverity"]}, "aggregationByStatus": {"type": "object", "properties": {"totalNewStatus": {"type": "integer"}, "totalInProgressStatus": {"type": "integer"}, "totalResolvedStatus": {"type": "integer"}, "totalDismissedStatus": {"type": "integer"}}, "required": ["totalNewStatus", "totalInProgressStatus", "totalResolvedStatus", "totalDismissedStatus"]}}, "required": ["aggregationBySeverity", "aggregationByStatus"]}}, "required": ["id", "name", "type", "kind", "properties"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parameters" : {"api-version" : "2019-01-01-preview", "subscriptionId" : "d0cfe6b2-9ac0-4464-9919-dccaee2e48c0", "resourceGroupName" : "myRg", "workspaceName" : "myWorkspace", "operationalInsightsResourceProvider" : "Microsoft.OperationalInsights", "aggregationsName" : "cases"}, "responses" : {"200" : {"body" : {"id" : "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace/providers/Microsoft.SecurityInsights/aggregations/Cases", "name" : "Cases", "type" : "Microsoft.SecurityInsights/aggregations", "kind" : "CasesAggregation", "properties" : {"aggregationBySeverity" : {"totalCriticalSeverity" : 13, "totalHighSeverity" : 14, "totalMediumSeverity" : 4, "totalLowSeverity" : 15, "totalInformationalSeverity" : 26}, "aggregationByStatus" : {"totalNewStatus" : 42, "totalInProgressStatus" : 30, "totalResolvedStatus" : 2, "totalDismissedStatus" : 1}}}}}} | json_instruct | {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "subscriptionId": {"type": "string"}, "resourceGroupName": {"type": "string"}, "workspaceName": {"type": "string"}, "operationalInsightsResourceProvider": {"type": "string"}, "aggregationsName": {"type": "string"}}, "required": ["api-version", "subscriptionId", "resourceGroupName", "workspaceName", "operationalInsightsResourceProvider", "aggregationsName"]}, "responses": {"type": "object", "properties": {"200": {"type": "object", "properties": {"body": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "kind": {"type": "string"}, "properties": {"type": "object", "properties": {"aggregationBySeverity": {"type": "object", "properties": {"totalCriticalSeverity": {"type": "integer"}, "totalHighSeverity": {"type": "integer"}, "totalMediumSeverity": {"type": "integer"}, "totalLowSeverity": {"type": "integer"}, "totalInformationalSeverity": {"type": "integer"}}, "required": ["totalCriticalSeverity", "totalHighSeverity", "totalMediumSeverity", "totalLowSeverity", "totalInformationalSeverity"]}, "aggregationByStatus": {"type": "object", "properties": {"totalNewStatus": {"type": "integer"}, "totalInProgressStatus": {"type": "integer"}, "totalResolvedStatus": {"type": "integer"}, "totalDismissedStatus": {"type": "integer"}}, "required": ["totalNewStatus", "totalInProgressStatus", "totalResolvedStatus", "totalDismissedStatus"]}}, "required": ["aggregationBySeverity", "aggregationByStatus"]}}, "required": ["id", "name", "type", "kind", "properties"]}}, "required": ["body"]}}, "required": ["200"]}}, "required": ["parameters", "responses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "id" : "MF", "properties" : {"name" : "Saint Martin"}, "geometry" : {"type" : "Polygon", "coordinates" : [[[-63.01756858528839, 18.033391472351283], [-63.0858861909999, 18.0585112510001], [-63.10700436099995, 18.062119859000063], [-63.10700436099995, 18.066961981000077], [-63.115305141999954, 18.065375067000048], [-63.130523240999935, 18.060248114000046], [-63.13434811099995, 18.059475002000056], [-63.1438695949999, 18.06468333500004], [-63.14683997299994, 18.07029857000009], [-63.14362545499995, 18.074164130000042], [-63.11375891799992, 18.074652411000045], [-63.09609941299993, 18.07880280200004], [-63.08381100199995, 18.087958075000074], [-63.07909094999991, 18.10419342700004], [-63.070871548999946, 18.11001211100006], [-63.05211341099994, 18.116848049000055], [-63.03140214799993, 18.121893622000073], [-63.017648891999954, 18.12213776200008], [-63.01793372299994, 18.100531317000048], [-63.01109778599994, 18.070746161000045], [-63.01073157499991, 18.040838934000078], [-63.01756858528839, 18.033391472351283]]]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "province": {"type": "string"}}, "required": ["geometry", "type", "id", "province"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Point", "coordinates" : [-75.667222, 45.3225]}, "type" : "Feature", "id" : "YOW", "province" : "ON"}, {"geometry" : {"type" : "Point", "coordinates" : [-79.630556, 43.676667]}, "type" : "Feature", "id" : "YYZ", "province" : "ON"}, {"geometry" : {"type" : "Point", "coordinates" : [-79.396111, 43.628333]}, "type" : "Feature", "id" : "YTZ", "province" : "ON"}, {"geometry" : {"type" : "Point", "coordinates" : [-79.368611, 43.860833]}, "type" : "Feature", "id" : "YKZ", "province" : "ON"}]} | 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": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "province": {"type": "string"}}, "required": ["geometry", "type", "id", "province"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [973.797, 224.978, 1, 983.255, 242.338, 1, 963.177, 249.927, 1, 958.924, 273.536, 1, 953.167, 279.411, 1, 1002.39, 239.244, 1, 1030.38, 265.963, 1, 1016.63, 292.78, 1, 976.472, 304.87, 1, 950.258, 350.978, 1, 965.486, 391.942, 1, 1000.21, 304.499, 1, 1000.19, 350.92, 1, 1023.05, 399.805, 1, 970.229, 223.035, 1, 982.27, 221.055, 1, 967.791, 225.012, 1, 986.011, 221.102, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_fv": {"type": "integer"}, "_type": {"type": "string"}, "definition": {"type": "object", "properties": {"achievementName": {"type": "string"}, "achievementDescription": {"type": "string"}, "achievementIcon": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "background": {"type": "string"}, "disableDisplay": {"type": "boolean"}, "showPopup": {"type": "boolean"}, "announceToChat": {"type": "boolean"}, "hideIfNotCompleted": {"type": "boolean"}, "rewardLoot": {"type": "array", "items": {}}, "rewardRecipes": {"type": "array", "items": {"type": "string"}}, "rewardFunction": {"type": "string"}, "rewardXP": {"type": "integer"}, "achievementType": {"type": "string"}, "parent": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "triggerxml": {"type": "string"}}, "required": ["achievementName", "achievementDescription", "achievementIcon", "background", "disableDisplay", "showPopup", "announceToChat", "hideIfNotCompleted", "rewardLoot", "rewardRecipes", "rewardFunction", "rewardXP", "achievementType", "parent", "triggerxml"]}}, "required": ["_fv", "_type", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_fv" : 18, "_type" : "achievement", "definition" : {"achievementName" : "Acquire Software", "achievementDescription" : "Smelt Iron-N Ore to get Iron-N Ingot", "achievementIcon" : {"value" : "CUSTOM:Iron_NIngot"}, "background" : "Default", "disableDisplay" : false, "showPopup" : true, "announceToChat" : true, "hideIfNotCompleted" : false, "rewardLoot" : [], "rewardRecipes" : ["Iron_NOreBlockRecipe", "Iron_NSwordRecipe", "Iron_NAxeRecipe", "Iron_NSwordRecipe", "Iron_NShovelRecipe", "Iron_NHoeRecipe", "Iron_NArmorHelmetRecipe", "Iron_NArmorBodyRecipe", "Iron_NArmorLeggingsRecipe", "Iron_NArmorBootsRecipe", "SmeltIronN", "Negafilntcraft", "IngerCraft", "IngerCraft2", "Flint5Steel", "Flint6Steel", "IronNNuggetCraft", "IronNCraft2", "Updater", "UpdaterCraft"], "rewardFunction" : "No function", "rewardXP" : 1, "achievementType" : "task", "parent" : {"value" : "CUSTOM:Anewcoal"}, "triggerxml" : "<xml xmlns=\"https://developers.google.com/blockly/xml\"><block type=\"item_in_inventory\" x=\"47\" y=\"25\"><value name=\"amount_l\"><block type=\"math_number\"><field name=\"NUM\">1</field></block></value><value name=\"amount_h\"><block type=\"math_number\"><field name=\"NUM\">64</field></block></value><value name=\"item\"><block type=\"mcitem_all\"><field name=\"value\">CUSTOM:Iron_NIngot</field></block></value><next><block type=\"advancement_trigger\" deletable=\"false\"></block></next></block></xml>"}} | json_instruct | {"type": "object", "properties": {"_fv": {"type": "integer"}, "_type": {"type": "string"}, "definition": {"type": "object", "properties": {"achievementName": {"type": "string"}, "achievementDescription": {"type": "string"}, "achievementIcon": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "background": {"type": "string"}, "disableDisplay": {"type": "boolean"}, "showPopup": {"type": "boolean"}, "announceToChat": {"type": "boolean"}, "hideIfNotCompleted": {"type": "boolean"}, "rewardLoot": {"type": "array", "items": {}}, "rewardRecipes": {"type": "array", "items": {"type": "string"}}, "rewardFunction": {"type": "string"}, "rewardXP": {"type": "integer"}, "achievementType": {"type": "string"}, "parent": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}, "triggerxml": {"type": "string"}}, "required": ["achievementName", "achievementDescription", "achievementIcon", "background", "disableDisplay", "showPopup", "announceToChat", "hideIfNotCompleted", "rewardLoot", "rewardRecipes", "rewardFunction", "rewardXP", "achievementType", "parent", "triggerxml"]}}, "required": ["_fv", "_type", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"folders": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {}, "required": []}, "java": {"type": "object", "properties": {"driven-adapter/redis/redis-template/helper/template-adapter-operations.java.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/redis-template-adapter.java.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/build.gradle.mustache": {"type": "string"}}, "required": ["driven-adapter/redis/redis-template/helper/template-adapter-operations.java.mustache", "driven-adapter/redis/redis-template/redis-template-adapter.java.mustache", "driven-adapter/redis/redis-template/build.gradle.mustache"]}, "kotlin": {"type": "object", "properties": {"driven-adapter/redis/redis-template/helper/template-adapter-operations.kt.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/redis-template-adapter.kt.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/build.gradle.kts.mustache": {"type": "string"}}, "required": ["driven-adapter/redis/redis-template/helper/template-adapter-operations.kt.mustache", "driven-adapter/redis/redis-template/redis-template-adapter.kt.mustache", "driven-adapter/redis/redis-template/build.gradle.kts.mustache"]}}, "required": ["folders", "files", "java", "kotlin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"folders" : ["infrastructure/driven-adapters/redis/src/test/{{language}}/{{packagePath}}/redis/template"], "files" : {}, "java" : {"driven-adapter/redis/redis-template/helper/template-adapter-operations.java.mustache" : "infrastructure/driven-adapters/redis/src/main/{{language}}/{{packagePath}}/redis/template/helper/TemplateAdapterOperations.java", "driven-adapter/redis/redis-template/redis-template-adapter.java.mustache" : "infrastructure/driven-adapters/redis/src/main/java/{{packagePath}}/redis/template/RedisTemplateAdapter.java", "driven-adapter/redis/redis-template/build.gradle.mustache" : "infrastructure/driven-adapters/redis/build.gradle"}, "kotlin" : {"driven-adapter/redis/redis-template/helper/template-adapter-operations.kt.mustache" : "infrastructure/driven-adapters/redis/src/main/{{language}}/{{packagePath}}/redis/template/helper/TemplateAdapterOperations.kt", "driven-adapter/redis/redis-template/redis-template-adapter.kt.mustache" : "infrastructure/driven-adapters/redis/src/main/{{language}}/{{packagePath}}/redis/template/RedisTemplateAdapter.kt", "driven-adapter/redis/redis-template/build.gradle.kts.mustache" : "infrastructure/driven-adapters/redis/build.gradle.kts"}} | json_instruct | {"type": "object", "properties": {"folders": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {}, "required": []}, "java": {"type": "object", "properties": {"driven-adapter/redis/redis-template/helper/template-adapter-operations.java.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/redis-template-adapter.java.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/build.gradle.mustache": {"type": "string"}}, "required": ["driven-adapter/redis/redis-template/helper/template-adapter-operations.java.mustache", "driven-adapter/redis/redis-template/redis-template-adapter.java.mustache", "driven-adapter/redis/redis-template/build.gradle.mustache"]}, "kotlin": {"type": "object", "properties": {"driven-adapter/redis/redis-template/helper/template-adapter-operations.kt.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/redis-template-adapter.kt.mustache": {"type": "string"}, "driven-adapter/redis/redis-template/build.gradle.kts.mustache": {"type": "string"}}, "required": ["driven-adapter/redis/redis-template/helper/template-adapter-operations.kt.mustache", "driven-adapter/redis/redis-template/redis-template-adapter.kt.mustache", "driven-adapter/redis/redis-template/build.gradle.kts.mustache"]}}, "required": ["folders", "files", "java", "kotlin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "null"}, "impacted_products": {"type": "array", "items": {"type": "string"}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "006-2011", "title" : "Recall Notification Report", "url" : "https://www.fsis.usda.gov/recalls-alerts/recall-notification-report-14", "reasons" : ["Product Contamination"], "status" : "Closed", "risk_level" : "Low", "start_date" : "2011-01-18", "end_date" : "2012-06-01", "summary" : "WASHINGTON, January 18, 2011 - United Food Group, LLC, a Vernon, Calif., establishment, is recalling approximately 7,875 pounds of ready-to-eat Angus Beef patties that may be contaminated with Listeria monocytogenes (Lm), the U.S. Department of Agriculture's Food Safety and Inspection Service (FSIS) announced today. The...\n", "establishment" : null, "impacted_products" : ["22.5-pound cases of \"FULLY COOKED BLACK ANGUS GROUND BEEF STEAK PATTIES,\" with each case containing 75 individual 4.8-ounce patties."], "quantity_recovered" : 23, "quantity_unit" : "pounds", "states" : ["California"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "null"}, "impacted_products": {"type": "array", "items": {"type": "string"}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$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"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/angular-fontawesome": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-brands-svg-icons": {"type": "string"}, "@fortawesome/free-solid-svg-icons": {"type": "string"}, "safe-pipe": {"type": "string"}}, "required": ["@fortawesome/angular-fontawesome", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-brands-svg-icons", "@fortawesome/free-solid-svg-icons", "safe-pipe"]}}, "required": ["name", "version", "license", "peerDependencies", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@newcreator-org/ng-lp", "version" : "1.0.0", "license" : "MIT", "peerDependencies" : {"@angular/common" : "^7.2.0", "@angular/core" : "^7.2.0"}, "repository" : {"type" : "git", "url" : "https://github.com/newcreator-org/ng-lp"}, "dependencies" : {"@fortawesome/angular-fontawesome" : "^0.3.0", "@fortawesome/fontawesome-svg-core" : "^1.2.15", "@fortawesome/free-brands-svg-icons" : "^5.7.2", "@fortawesome/free-solid-svg-icons" : "^5.7.2", "safe-pipe" : "^0.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"@angular/common": {"type": "string"}, "@angular/core": {"type": "string"}}, "required": ["@angular/common", "@angular/core"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"@fortawesome/angular-fontawesome": {"type": "string"}, "@fortawesome/fontawesome-svg-core": {"type": "string"}, "@fortawesome/free-brands-svg-icons": {"type": "string"}, "@fortawesome/free-solid-svg-icons": {"type": "string"}, "safe-pipe": {"type": "string"}}, "required": ["@fortawesome/angular-fontawesome", "@fortawesome/fontawesome-svg-core", "@fortawesome/free-brands-svg-icons", "@fortawesome/free-solid-svg-icons", "safe-pipe"]}}, "required": ["name", "version", "license", "peerDependencies", "repository", "dependencies"], "$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"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 24639, "title" : "Mix Tapes From Dead Boys", "year" : 2017, "type" : "short-story", "nominations" : 0, "wins" : -1}, {"id" : 20260, "title" : "The Kraken Sea", "year" : 2016, "type" : "novel", "imageName" : "ect_krakense.jpg", "nominations" : 0, "wins" : -1}, {"id" : 22997, "title" : "A Box, a Pocket, a Spaceman", "year" : 2014, "type" : "short-story", "nominations" : 0, "wins" : -1}, {"id" : 20131, "title" : "(To See the Other) Whole Against the Sky", "year" : 2012, "type" : "short-story", "nominations" : 0, "wins" : -1}, {"id" : 26203, "title" : "You Were She Who Abode", "year" : 2012, "type" : "short-story", "nominations" : 0, "wins" : -1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "nominations", "wins"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Coulanges-l\u00e8s-Nevers", "dpt" : "Ni\u00e8vre", "inscrits" : 3080, "abs" : 711, "votants" : 2369, "blancs" : 216, "nuls" : 85, "exp" : 2068, "res" : [{"panneau" : "1", "voix" : 1402}, {"panneau" : "2", "voix" : 666}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"js-data.es2015.js": {"type": "string"}, "js-data.js": {"type": "string"}, "js-data.min.js": {"type": "string"}}, "required": ["js-data.es2015.js", "js-data.js", "js-data.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"js-data.es2015.js" : "sha512-TJxCo0MbJ/zdOdnCp4RHaxVxa1v6lRSP4WA9XztSXZONkainW7nnBtGyZt3if+9y8V587MWHIFvm1KVHjT+o5Q==", "js-data.js" : "sha512-7iq/wl42zorS3Lg8HAPHMexCsyh4C2fm4lLAgWdJK20OmDtmbs0QiKDhbGMYEEP+m+FyNoHOihvq6eNsqSt4Ew==", "js-data.min.js" : "sha512-+CR7W9qTNY8ls/pcMeluhVxZjMVv5bm/+lXMpM4+7EfsZWWHuZzf0iN1EmhSJvm/yxwwz7lSfv6ApBc66tkF3w=="} | json_instruct | {"type": "object", "properties": {"js-data.es2015.js": {"type": "string"}, "js-data.js": {"type": "string"}, "js-data.min.js": {"type": "string"}}, "required": ["js-data.es2015.js", "js-data.js", "js-data.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Vue IT-Rev", "description" : "Task"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}}, "required": ["title", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "lint": {"type": "string"}, "devstart": {"type": "string"}}, "required": ["test", "start", "build", "serve", "lint", "devstart"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "chai", "eslint", "eslint-config-google", "mocha", "nodemon", "ts-node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "template_node_ts", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "./node_modules/.bin/mocha --require ts-node/register ./spec/*.spec.ts", "start" : "node ./out/main.js", "build" : "tsc --build tsconfig.json", "serve" : "nodemon", "lint" : "eslint", "devstart" : "ts-node src/main.ts"}, "repository" : {"type" : "git", "url" : "git+https://github.com/LarsBremen/template_node_ts.git"}, "author" : "", "license" : "ISC", "bugs" : {"url" : "https://github.com/LarsBremen/template_node_ts/issues"}, "homepage" : "https://github.com/LarsBremen/template_node_ts#readme", "dependencies" : {"typescript" : "^3.8.3"}, "devDependencies" : {"@types/chai" : "^4.2.10", "@types/mocha" : "^7.0.2", "@types/node" : "^13.13.5", "@typescript-eslint/eslint-plugin" : "^2.33.0", "@typescript-eslint/parser" : "^2.33.0", "chai" : "^4.2.0", "eslint" : "^7.0.0", "eslint-config-google" : "^0.14.0", "mocha" : "^7.1.2", "nodemon" : "^2.0.4", "ts-node" : "^8.10.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "lint": {"type": "string"}, "devstart": {"type": "string"}}, "required": ["test", "start", "build", "serve", "lint", "devstart"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "chai": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-google": {"type": "string"}, "mocha": {"type": "string"}, "nodemon": {"type": "string"}, "ts-node": {"type": "string"}}, "required": ["@types/chai", "@types/mocha", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "chai", "eslint", "eslint-config-google", "mocha", "nodemon", "ts-node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$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"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "style": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "source": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "background", "colorStyle", "title", "slug", "svg", "aliases", "tags", "style", "author", "version", "zhs", "description", "source", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gnu-privacy-guard", "codepoint" : "", "background" : "#0093DD", "colorStyle" : "brands-item--light", "title" : "GNU Privacy Guard", "slug" : "gnuprivacyguard", "svg" : "<svg role=\"img\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><title>GNU Privacy Guard icon</title><path d=\"M2.968 11.583h1.274v-3.82A7.76 7.76 0 0 1 12.005 0a7.76 7.76 0 0 1 7.762 7.763v3.783c-.018.01-.037.028-.056.037l-.01.01-.008.009h-.01l-.01.01-.009.009H19.636l-.018.018h-.02l-.018.01h-.01l-.009.01-.009.009h-.01l-.009.009-.009.01-.01.009-.009.009-.028.019-.019.01-.028.018-.018.01-.02.009-.027.018-.019.01-.01.009-.027.019-.02.01-.046.027-.019.01-.018.009-.02.01h-.008l-.057.027h-.019c-.018.01-.037.02-.065.038h-.01l-.009.01-.028.018-.018.01-.029.018-.018.01h-.01l-.028.018-.018.01-.02.009c-.018.01-.046.019-.065.028l-.018.01-.02.009-.037.018-.037.02-.047.018-.047.019-.019.009-.037.019-.019.01c-1.545.739-4.017 1.516-8.708 1.853-3.362.244-5.403 1.723-6.724 3.502zm4.842 0h8.371v-3.82a4.184 4.184 0 0 0-4.186-4.186A4.184 4.184 0 0 0 7.81 7.763zm13.222 1.461V24H5.572c1.704-.946 2.968-.852 5.075-.787 2.865.094 6.03-1.105 7.585-2.696 1.554-1.592-.14-.375-1.901.074-1.76.45-5.17.497-7.454-.103 7.173.094 9.973-2.219 11.555-4.307 1.583-2.079-.683-.365-2.153.356-1.47.72-4.036 1.227-6.864.852 4.27-.01 7.52-2.144 9.607-4.345z\"/></svg>", "aliases" : [], "tags" : [], "style" : "regular", "author" : "Simple Icon", "version" : "2.8.0", "zhs" : ["GNU\u9690\u79c1\u4fdd\u62a4"], "description" : "", "source" : "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=tree;f=artwork/icons", "comments" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "codepoint": {"type": "string"}, "background": {"type": "string"}, "colorStyle": {"type": "string"}, "title": {"type": "string"}, "slug": {"type": "string"}, "svg": {"type": "string"}, "aliases": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "style": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "source": {"type": "string"}, "comments": {"type": "array", "items": {}}}, "required": ["name", "codepoint", "background", "colorStyle", "title", "slug", "svg", "aliases", "tags", "style", "author", "version", "zhs", "description", "source", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dev_push": {"type": "boolean"}, "app_id": {"type": "string"}, "api_key": {"type": "string"}}, "required": ["dev_push", "app_id", "api_key"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dev_push" : true, "app_id" : "cd5ff50c", "api_key" : "a81963935478b9a2f94e9a8661dc332979755cf5c9e62c7a"} | json_instruct | {"type": "object", "properties": {"dev_push": {"type": "boolean"}, "app_id": {"type": "string"}, "api_key": {"type": "string"}}, "required": ["dev_push", "app_id", "api_key"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 281920, "name" : "Splatter - Blood Red Edition", "windows" : true, "mac" : true, "linux" : true, "early_access" : false, "lookup_time" : 1490975563} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"count": {"type": "integer"}, "232011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "232011", "N.A.//", "352021", "353031", "311010", "436010", "999920"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 13, "232011" : {"count" : 1}, "N.A.//" : {"count" : 7}, "352021" : {"count" : 1}, "353031" : {"count" : 1}, "311010" : {"count" : 1}, "436010" : {"count" : 1}, "999920" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "232011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "352021": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "353031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "311010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "999920": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "232011", "N.A.//", "352021", "353031", "311010", "436010", "999920"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "trait": {"type": "array", "items": {}}, "icon": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "grantsPowers": {"type": "array", "items": {"type": "string"}}, "grantsSlot": {"type": "array", "items": {"type": "string"}}, "grantsTrait": {"type": "array", "items": {}}, "description": {"type": "string"}, "lore": {"type": "string"}}, "required": ["id", "name", "type", "trait", "icon", "stats", "grantsPowers", "grantsSlot", "grantsTrait", "description", "lore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "guinecean", "name" : "Guinecean", "type" : "race", "trait" : [], "icon" : "guinecean.png", "stats" : [{"name" : "Strength Cap", "value" : "200"}, {"name" : "Dexterity Cap", "value" : "350"}, {"name" : "Intellect Cap", "value" : "250"}, {"name" : "Spirit Cap", "value" : "250"}, {"name" : "Constitution Cap", "value" : "200"}, {"name" : "Dexterity", "value" : "60"}, {"name" : "Intellect", "value" : "30"}], "grantsPowers" : ["racial-passive-plentiful-haul", "racial-jump-text-double-jump", "racial-passive-food-consumption", "racial-passive-weapon-damage", "guinecean-burrow-tooltip-passive", "guinecean-saltpeter-rounds", "duelist-dodge"], "grantsSlot" : ["Ring"], "grantsTrait" : [], "description" : "", "lore" : "By legend, the Guineceans were transformed from their animal forefathers into sentient creatures by Gaea, the Earth Mother, at her moment death."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "trait": {"type": "array", "items": {}}, "icon": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "grantsPowers": {"type": "array", "items": {"type": "string"}}, "grantsSlot": {"type": "array", "items": {"type": "string"}}, "grantsTrait": {"type": "array", "items": {}}, "description": {"type": "string"}, "lore": {"type": "string"}}, "required": ["id", "name", "type", "trait", "icon", "stats", "grantsPowers", "grantsSlot", "grantsTrait", "description", "lore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "yarn"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test:lint": {"type": "string"}, "test": {"type": "string"}, "test:ci": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test:lint", "test", "test:ci", "coverage"]}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expressions-js": {"type": "string"}}, "required": ["expressions-js"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "chalk": {"type": "string"}, "coveralls": {"type": "string"}, "indent-string": {"type": "string"}, "js-yaml": {"type": "string"}, "nyc": {"type": "string"}, "standard": {"type": "string"}, "tap-xunit": {"type": "string"}}, "required": ["ava", "chalk", "coveralls", "indent-string", "js-yaml", "nyc", "standard", "tap-xunit"]}}, "required": ["name", "description", "version", "author", "keywords", "license", "engines", "main", "files", "scripts", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "samovar", "description" : "A pure-JSON template language and renderer. Also supports YAML.", "version" : "0.2.1", "author" : {"name" : "Tim De Pauw", "url" : "https://tmdpw.eu/"}, "keywords" : ["json", "yaml", "template", "declarative"], "license" : "MIT", "engines" : {"node" : ">=8", "yarn" : ">=1.5.1"}, "main" : "index.js", "files" : ["index.js"], "scripts" : {"test:lint" : "standard", "test" : "yarn run test:lint && nyc ava", "test:ci" : "yarn run test:lint && nyc ava --tap | tap-xunit >/tmp/test-results/samovar/junit.xml", "coverage" : "nyc report --reporter=text-lcov | coveralls"}, "repository" : "timdp/samovar", "dependencies" : {"expressions-js" : "^0.1.12"}, "devDependencies" : {"ava" : "^0.25.0", "chalk" : "^2.3.2", "coveralls" : "^3.0.0", "indent-string" : "^3.2.0", "js-yaml" : "^3.11.0", "nyc" : "^11.6.0", "standard" : "^11.0.1", "tap-xunit" : "^2.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "yarn": {"type": "string"}}, "required": ["node", "yarn"]}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test:lint": {"type": "string"}, "test": {"type": "string"}, "test:ci": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["test:lint", "test", "test:ci", "coverage"]}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"expressions-js": {"type": "string"}}, "required": ["expressions-js"]}, "devDependencies": {"type": "object", "properties": {"ava": {"type": "string"}, "chalk": {"type": "string"}, "coveralls": {"type": "string"}, "indent-string": {"type": "string"}, "js-yaml": {"type": "string"}, "nyc": {"type": "string"}, "standard": {"type": "string"}, "tap-xunit": {"type": "string"}}, "required": ["ava", "chalk", "coveralls", "indent-string", "js-yaml", "nyc", "standard", "tap-xunit"]}}, "required": ["name", "description", "version", "author", "keywords", "license", "engines", "main", "files", "scripts", "repository", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/layered_chalk"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"directions" : ["Heat olive oil in a large saucepan over medium heat. Cook and stir onion and garlic in hot oil until softened, 5 to 7 minutes.", "Pour chicken broth into saucepan; add chicken. Place a lid on the saucepan and cook until the chicken pieces are no longer pink in the center, about 10 minutes.", "Put chopped chipotle peppers in a bowl with about half the reserved adobo sauce; stir. Mix tomatoes and cilantro together in a separate bowl.", "Stir chipotle mixture into the broth mixture a spoonful at a time, stirring and tasting between each addition, until the level of spiciness is to your liking. Remove saucepan from heat and stir tomatoes with cilantro into the soup."], "ingredients" : ["1 tablespoon olive oil, or more if needed", "1 onion, minced", "1 head garlic, minced, or to taste", "2 (14.5 ounce) cans chicken broth", "4 skinless, boneless chicken breast halves, cut into cubes", "1 (7 ounce) can chipotle peppers in adobo sauce (such as Embasa\u00ae), chopped, adobo sauce reserved, or to taste", "2 tomatoes, diced", "1 bunch fresh cilantro (leaves only), chopped"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Chipotle Pepper and Chicken Soup", "url" : "http://allrecipes.com/recipe/236508/chipotle-pepper-and-chicken-soup/"} | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "activationCommands": {"type": "object", "properties": {"atom-workspace": {"type": "string"}}, "required": ["atom-workspace"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}, "temp": {"type": "string"}, "utf8": {"type": "string"}}, "required": ["request", "temp", "utf8"]}}, "required": ["name", "main", "version", "description", "keywords", "activationCommands", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "atom-bean-builder", "main" : "./lib/atom-bean-builder", "version" : "0.2.3", "description" : "Build Arduino sketches targeted for the LightBlue Bean", "keywords" : ["arduino", "lightblue", "bean", "punchthrough"], "activationCommands" : {"atom-workspace" : "atom-bean-builder:build"}, "repository" : "https://github.com/swstack/atom-bean-builder", "license" : "MIT", "engines" : {"atom" : ">=1.0.0 <2.0.0"}, "dependencies" : {"request" : "^2.69.0", "temp" : "^0.8.3", "utf8" : "^2.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "activationCommands": {"type": "object", "properties": {"atom-workspace": {"type": "string"}}, "required": ["atom-workspace"]}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"atom": {"type": "string"}}, "required": ["atom"]}, "dependencies": {"type": "object", "properties": {"request": {"type": "string"}, "temp": {"type": "string"}, "utf8": {"type": "string"}}, "required": ["request", "temp", "utf8"]}}, "required": ["name", "main", "version", "description", "keywords", "activationCommands", "repository", "license", "engines", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : [{"d" : [{"e" : ["\ufff9`Mipakemoan~ `ira~ `ko~ `faloco'~ `ako~.\ufffa\ufffb\u6211\u7684\u5167\u5fc3\u6df1\u53d7\u4ed6\u7684\u6253\u64ca\u3002"], "f" : "\u628a\u2026\u62cd\u6253\u4e86\u3001\u62cd\u64ca\u4e86\u3001\u6253\u64ca\u4e86\u3002"}, {"e" : ["\ufff9`Isakacowaay~ `ko~ `mipakemoan~ `ira~?\ufffa\ufffb\u4ed6\u6253\u64ca\u7684\u662f\u54ea\u4e00\u500b\u5462\uff1f"], "f" : "\u6307\u53d7\u5230\u62cd\u6253\u7684\u3001\u62cd\u64ca\u7684\u3001\u6253\u64ca\u7684(\u5c0d\u8c61\u3001\u5730\u65b9)\u3002"}]}], "stem" : "kemo", "t" : "mipakemoan"} | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"}, "t": {"type": "string"}}, "required": ["h", "stem", "t"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 151150, "UUID" : "D7CB8634-CB20-453D-8DF6-9DA831A0BCFF", "DataProviderID" : 28, "DataProvidersReference" : "FR*S13*P13017*001", "UsageTypeID" : 5, "AddressInfo" : {"ID" : 151503, "Title" : "BOULBON - Chemin De La Lone", "AddressLine1" : "Chemin De La Lone 13150 BOULBON", "CountryID" : 80, "Latitude" : 43.863427, "Longitude" : 4.69093, "AccessComments" : "24h/24 7j/7", "DistanceUnit" : 0}, "Connections" : [{"ID" : 210827, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 10}, {"ID" : 210828, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}, {"ID" : 240807, "ConnectionTypeID" : 28, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 10}, {"ID" : 240808, "ConnectionTypeID" : 1036, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}], "GeneralComments" : "Recharge par badge et avec une application smartphone", "StatusTypeID" : 50, "DateLastStatusUpdate" : "2020-08-27T05:11:00Z", "DataQualityLevel" : 2, "DateCreated" : "2020-03-15T10:53:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "AccessComments": {"type": "string"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "CountryID", "Latitude", "Longitude", "AccessComments", "DistanceUnit"]}, "Connections": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "ConnectionTypeID": {"type": "integer"}, "StatusTypeID": {"type": "integer"}, "LevelID": {"type": "integer"}, "PowerKW": {"type": "integer"}, "CurrentTypeID": {"type": "integer"}}, "required": ["ID", "ConnectionTypeID", "StatusTypeID", "LevelID", "PowerKW", "CurrentTypeID"]}}, "GeneralComments": {"type": "string"}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "UsageTypeID", "AddressInfo", "Connections", "GeneralComments", "StatusTypeID", "DateLastStatusUpdate", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "0x4e856366d2a8d401036530d23ec74deac8188502", "tool" : "osiris", "start" : 1564590787.9896977, "end" : 1564590790.6225288, "duration" : 2.63283109664917, "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": {"id_1195": {"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_1195"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_1195" : {"title" : "Pamela, or Virtue Rewarded", "language" : "English", "totaltime" : "22:10:34", "url_librivox" : "http://librivox.org/pamela-by-samuel-richardson/", "url_iarchive" : "http://www.archive.org/details/pamela_0910_librivox", "readers" : ["1502", "2544", "3033", "3157", "3318", "3587", "3733", "3781", "3790", "4191", "681"], "authors" : "3579", "genres" : "Epistolary Fiction"}} | json_instruct | {"type": "object", "properties": {"id_1195": {"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_1195"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "null"}, "message": {"type": "null"}, "status": {"type": "string"}, "transaction": {"type": "object", "properties": {"transactionId": {"type": "integer"}, "status": {"type": "string"}, "operatorTransactionId": {"type": "null"}, "customIdentifier": {"type": "null"}, "recipientPhone": {"type": "null"}, "recipientEmail": {"type": "string"}, "senderPhone": {"type": "null"}, "countryCode": {"type": "string"}, "operatorId": {"type": "integer"}, "operatorName": {"type": "string"}, "discount": {"type": "number"}, "discountCurrencyCode": {"type": "string"}, "requestedAmount": {"type": "integer"}, "requestedAmountCurrencyCode": {"type": "string"}, "deliveredAmount": {"type": "number"}, "deliveredAmountCurrencyCode": {"type": "string"}, "transactionDate": {"type": "string"}, "pinDetail": {"type": "null"}, "balanceInfo": {"type": "object", "properties": {"oldBalance": {"type": "number"}, "newBalance": {"type": "number"}, "currencyCode": {"type": "string"}, "currencyName": {"type": "string"}, "updatedAt": {"type": "string"}}, "required": ["oldBalance", "newBalance", "currencyCode", "currencyName", "updatedAt"]}}, "required": ["transactionId", "status", "operatorTransactionId", "customIdentifier", "recipientPhone", "recipientEmail", "senderPhone", "countryCode", "operatorId", "operatorName", "discount", "discountCurrencyCode", "requestedAmount", "requestedAmountCurrencyCode", "deliveredAmount", "deliveredAmountCurrencyCode", "transactionDate", "pinDetail", "balanceInfo"]}}, "required": ["code", "message", "status", "transaction"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : null, "message" : null, "status" : "SUCCESSFUL", "transaction" : {"transactionId" : 2, "status" : "SUCCESSFUL", "operatorTransactionId" : null, "customIdentifier" : null, "recipientPhone" : null, "recipientEmail" : "test@nauta.com.cu", "senderPhone" : null, "countryCode" : "CU", "operatorId" : 683, "operatorName" : "Nauta Cuba", "discount" : 1.5, "discountCurrencyCode" : "USD", "requestedAmount" : 30, "requestedAmountCurrencyCode" : "USD", "deliveredAmount" : 772.5, "deliveredAmountCurrencyCode" : "CUP", "transactionDate" : "2022-01-05 15:25:19", "pinDetail" : null, "balanceInfo" : {"oldBalance" : 982.6, "newBalance" : 954.1, "currencyCode" : "USD", "currencyName" : "US Dollar", "updatedAt" : "2022-01-05 20:25:19"}}} | json_instruct | {"type": "object", "properties": {"code": {"type": "null"}, "message": {"type": "null"}, "status": {"type": "string"}, "transaction": {"type": "object", "properties": {"transactionId": {"type": "integer"}, "status": {"type": "string"}, "operatorTransactionId": {"type": "null"}, "customIdentifier": {"type": "null"}, "recipientPhone": {"type": "null"}, "recipientEmail": {"type": "string"}, "senderPhone": {"type": "null"}, "countryCode": {"type": "string"}, "operatorId": {"type": "integer"}, "operatorName": {"type": "string"}, "discount": {"type": "number"}, "discountCurrencyCode": {"type": "string"}, "requestedAmount": {"type": "integer"}, "requestedAmountCurrencyCode": {"type": "string"}, "deliveredAmount": {"type": "number"}, "deliveredAmountCurrencyCode": {"type": "string"}, "transactionDate": {"type": "string"}, "pinDetail": {"type": "null"}, "balanceInfo": {"type": "object", "properties": {"oldBalance": {"type": "number"}, "newBalance": {"type": "number"}, "currencyCode": {"type": "string"}, "currencyName": {"type": "string"}, "updatedAt": {"type": "string"}}, "required": ["oldBalance", "newBalance", "currencyCode", "currencyName", "updatedAt"]}}, "required": ["transactionId", "status", "operatorTransactionId", "customIdentifier", "recipientPhone", "recipientEmail", "senderPhone", "countryCode", "operatorId", "operatorName", "discount", "discountCurrencyCode", "requestedAmount", "requestedAmountCurrencyCode", "deliveredAmount", "deliveredAmountCurrencyCode", "transactionDate", "pinDetail", "balanceInfo"]}}, "required": ["code", "message", "status", "transaction"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1918, 6], [1929, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "C:\\Users\\shimy\\AndroidStudioProjects\\UI\\MultiWindowPlayground\\Application\\build\\intermediates\\res\\merged\\debug\\drawable-v23\\abc_control_background_material.xml", "source" : "C:\\Users\\shimy\\AndroidStudioProjects\\UI\\MultiWindowPlayground\\Application\\build\\intermediates\\exploded-aar\\com.android.support\\appcompat-v7\\24.0.0-beta1\\res\\drawable-v23\\abc_control_background_material.xml"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Georges-sur-Fontaine", "dpt" : "Seine-Maritime", "inscrits" : 737, "abs" : 132, "votants" : 605, "blancs" : 58, "nuls" : 11, "exp" : 536, "res" : [{"panneau" : "1", "voix" : 383}, {"panneau" : "2", "voix" : 153}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"noMessages": {"type": "string"}, "aboveCacheAmount": {"type": "string"}}, "required": ["noMessages", "aboveCacheAmount"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"noMessages" : "Keine nachrichten zum anzeigen!", "aboveCacheAmount" : "Snipe-Cache geht nicht so weit!"} | json_instruct | {"type": "object", "properties": {"noMessages": {"type": "string"}, "aboveCacheAmount": {"type": "string"}}, "required": ["noMessages", "aboveCacheAmount"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["certnames", "heartbleed.js", "selfsigned.js", "snowflakedb", "tls.js"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Taking the fifth root of an expression, fifth root\n\n[imath]\\sqrt[5]{32 y^{10}}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=rzqsQApY7Fc"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "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"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "twig/twig": {"type": "string"}, "doctrine/dbal": {"type": "string"}, "symfony/dotenv": {"type": "string"}, "jandelson/active-router": {"type": "string"}}, "required": ["php", "twig/twig", "doctrine/dbal", "symfony/dotenv", "jandelson/active-router"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"finddb\\": {"type": "string"}}, "required": ["finddb\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "homepage", "require", "require-dev", "minimum-stability", "prefer-stable", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "finddb/find-db", "description" : "Sistema de busca de tabelas e campos no banco de dados", "license" : "Free", "homepage" : "https://github.com/Jandelson/", "require" : {"php" : ">=7.0", "twig/twig" : "^1.0", "doctrine/dbal" : "2.3.*", "symfony/dotenv" : "^4.3", "jandelson/active-router" : "dev-master"}, "require-dev" : {"phpunit/phpunit" : "3.7.*"}, "minimum-stability" : "dev", "prefer-stable" : true, "autoload" : {"psr-4" : {"finddb\\" : "src/finddb"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "homepage": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "twig/twig": {"type": "string"}, "doctrine/dbal": {"type": "string"}, "symfony/dotenv": {"type": "string"}, "jandelson/active-router": {"type": "string"}}, "required": ["php", "twig/twig", "doctrine/dbal", "symfony/dotenv", "jandelson/active-router"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"finddb\\": {"type": "string"}}, "required": ["finddb\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "license", "homepage", "require", "require-dev", "minimum-stability", "prefer-stable", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"body": {"type": "null"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : null, "user" : "haampie", "url" : "https://api.github.com/repos/spack/spack/issues/29181", "updated_at" : "2022-02-25 16:04:58", "created_at" : "2022-02-24 13:04:41", "closed_at" : "2022-02-24 21:39:39", "state" : "closed", "title" : "openmpi: ~gpfs should use --with-gpfs=no", "number" : 29181, "milestone" : null, "labels" : ["update-package"], "id" : 1149264942, "html_url" : "https://github.com/spack/spack/pull/29181", "assignees" : [], "comments" : 3} | json_instruct | {"type": "object", "properties": {"body": {"type": "null"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1998, 5], [2005, 6], [2013, 5], [2014, 5]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "dependencies": {"type": "object", "properties": {"blake2b-universal": {"type": "string"}, "hypercore-crypto": {"type": "string"}, "hypertrie": {"type": "string"}}, "required": ["blake2b-universal", "hypercore-crypto", "hypertrie"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hyperdomains", "version" : "0.0.0", "description" : "WIP - nothing to see here", "main" : "index.js", "dependencies" : {"blake2b-universal" : "^1.0.0", "hypercore-crypto" : "^2.1.0", "hypertrie" : "^5.0.1"}, "devDependencies" : {}, "repository" : {"type" : "git", "url" : "https://github.com/mafintosh/hyperdomains.git"}, "author" : "Mathias Buus (@mafintosh)", "license" : "MIT", "bugs" : {"url" : "https://github.com/mafintosh/hyperdomains/issues"}, "homepage" : "https://github.com/mafintosh/hyperdomains"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"blake2b-universal": {"type": "string"}, "hypercore-crypto": {"type": "string"}, "hypertrie": {"type": "string"}}, "required": ["blake2b-universal", "hypercore-crypto", "hypertrie"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "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"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ractive-require.js": {"type": "string"}, "ractive-require.min.js": {"type": "string"}}, "required": ["ractive-require.js", "ractive-require.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ractive-require.js" : "sha256-XMyLw7MAc3UCqkcfU9bx3YHP2c5VLML9LIVatxsbBjs=", "ractive-require.min.js" : "sha256-Wqv8Ok3XdhtHAZn2taqjKl+jt5lnxe3r6gSWCzHXmAY="} | json_instruct | {"type": "object", "properties": {"ractive-require.js": {"type": "string"}, "ractive-require.min.js": {"type": "string"}}, "required": ["ractive-require.js", "ractive-require.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 743, "hash" : 3352671272, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "scope" : 0, "aggregationType" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[2002, 8], [2003, 5], [2005, 7], [2006, 20], [2007, 13], [2008, 15], [2009, 15], [2010, 18], [2011, 17], [2012, 23], [2013, 12], [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": {"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" : "0x2ba44a80594a3fec6a978d6938bb7ca9801755fbc70a502421afa053f9969c94", "parentHash" : "0x1ee9aa83372a8d24a4fec107871566be71a9af1c616b720a13a0ae5d7900cbfd", "number" : 93907, "timestamp" : 1439699649, "nonce" : "0xd1d1fafdb6aa9928", "difficulty" : 3471591096002, "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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "scorpioidal", "definition" : "1. Having the inflorescence curved or circinate at the end, like a scorpion's tail."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MRRm_new" : 0.20041511283160207, "MRm_new" : 4703.019815719217, "HITS@1m_new" : 0.14154223127514706, "HITS@3m_new" : 0.21925267213594635, "HITS@10m_new" : 0.31135621591703966} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$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"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Trippin' Ape Tribe WL", "symbol" : "TRIPWL", "logoURI" : "https://pbs.twimg.com/profile_images/1516190526592139266/tTBE_jP5_400x400.jpg", "decimals" : 0, "address" : "3hnUjiTnCnSS1FmdFDxCPgMAb7r724Boa3vWb3p3WJuV", "chainId" : 101, "tags" : ["whitelist-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "decimals", "address", "chainId", "tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"commit": {"type": "array", "items": {"type": "string"}}}, "required": ["commit"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"commit" : ["No missing files", "Check Commit Message", "Make sure Description and Source are mached", "Check Missspeling or Grammer error in sources or comments", "Check Local Unit Test success", "Check Build correctly", "Check Current Branch", "Check Coding Style is valid", "Approved from reviewers"]} | json_instruct | {"type": "object", "properties": {"commit": {"type": "array", "items": {"type": "string"}}}, "required": ["commit"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["450621204201", "\u516c\u5b89\u6751\u59d4\u4f1a", "220", "0"], ["450621204202", "\u90a3\u660e\u6751\u59d4\u4f1a", "220", "0"], ["450621204203", "\u677f\u542b\u6751\u59d4\u4f1a", "220", "0"], ["450621204204", "\u660e\u65fa\u6751\u59d4\u4f1a", "220", "0"], ["450621204205", "\u516d\u6539\u6751\u59d4\u4f1a", "220", "0"], ["450621204206", "\u5e73\u798f\u6751\u59d4\u4f1a", "210", "0"], ["450621204207", "\u5cbd\u50da\u6751\u59d4\u4f1a", "220", "0"], ["450621204208", "\u96c4\u6770\u6751\u59d4\u4f1a", "220", "0"], ["450621204209", "\u4f1f\u534e\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}, "example": {"type": "string"}, "build": {"type": "string"}, "build:demo": {"type": "string"}, "publish:public": {"type": "string"}, "publish:dry:run": {"type": "string"}, "deploy:ghpages": {"type": "string"}}, "required": ["start", "test", "test:watch", "example", "build", "build:demo", "publish:public", "publish:dry:run", "deploy:ghpages"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/node", "@babel/preset-env", "jest", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"babel-loader": {"type": "string"}, "difflib": {"type": "string"}, "everpolate": {"type": "string"}, "gh-pages": {"type": "string"}, "number-to-words": {"type": "string"}}, "required": ["babel-loader", "difflib", "everpolate", "gh-pages", "number-to-words"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@bbc/stt-align-node", "version" : "1.4.2", "description" : "", "main" : "index.js", "scripts" : {"start" : "node lib/index.js", "test" : "jest", "test:watch" : "jest --watchAll", "example" : "node example-usage/example-usage-align-stt.js", "build" : "babel src -d build", "build:demo" : "webpack --mode production", "publish:public" : "npm run build && /bin/cp -rf package.json build/ && /bin/cp -rf README.md build/README.md && npm publish build --access public", "publish:dry:run" : "npm run build && /bin/cp -rf package.json build/ && /bin/cp -rf README.md build/README.md && npm publish build --dry-run --access public", "deploy:ghpages" : "npm run build:demo && gh-pages -d demo"}, "author" : "", "license" : "MIT", "devDependencies" : {"@babel/cli" : "^7.7.7", "@babel/core" : "^7.7.7", "@babel/node" : "^7.7.7", "@babel/preset-env" : "^7.7.7", "jest" : "^25.0.0", "webpack" : "^4.41.5", "webpack-cli" : "^3.3.10"}, "dependencies" : {"babel-loader" : "^8.0.6", "difflib" : "^0.2.4", "everpolate" : "0.0.3", "gh-pages" : "^2.2.0", "number-to-words" : "^1.2.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}, "test:watch": {"type": "string"}, "example": {"type": "string"}, "build": {"type": "string"}, "build:demo": {"type": "string"}, "publish:public": {"type": "string"}, "publish:dry:run": {"type": "string"}, "deploy:ghpages": {"type": "string"}}, "required": ["start", "test", "test:watch", "example", "build", "build:demo", "publish:public", "publish:dry:run", "deploy:ghpages"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/cli": {"type": "string"}, "@babel/core": {"type": "string"}, "@babel/node": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "jest": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}}, "required": ["@babel/cli", "@babel/core", "@babel/node", "@babel/preset-env", "jest", "webpack", "webpack-cli"]}, "dependencies": {"type": "object", "properties": {"babel-loader": {"type": "string"}, "difflib": {"type": "string"}, "everpolate": {"type": "string"}, "gh-pages": {"type": "string"}, "number-to-words": {"type": "string"}}, "required": ["babel-loader", "difflib", "everpolate", "gh-pages", "number-to-words"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"comment" : "general reaction (see R01036, R01093 and R01758) NADP+ (see R02820)", "definition" : "Alditol + NAD+ <=> Aldose + NADH + H+", "orthologs" : {}, "name" : "Alditol:NAD+ 1-oxidoreductase", "product_stoichiometries" : ["1", "1", "1"], "enzymes" : ["1.1.1.21"], "equation" : "C00717 + C00003 <=> C01370 + C00004 + C00080", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R02819", "pathways" : {}, "products" : ["C01370", "C00004", "C00080"], "substrates" : ["C00717", "C00003"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {}, "required": []}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"realm": {"type": "string"}, "realm-public-key": {"type": "string"}, "auth-server-url": {"type": "string"}, "ssl-required": {"type": "string"}, "resource": {"type": "string"}, "public-client": {"type": "boolean"}}, "required": ["realm", "realm-public-key", "auth-server-url", "ssl-required", "resource", "public-client"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"realm" : "Optimist-Website", "realm-public-key" : "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCn5h0itJJ90BQWIt4uR+PHNlOJiKVBexhcIPQQc85kPmMJSUHMMo5yJefX+J+mRjXwu1DtW1aszo8dBbS7PMnZDFApO70CUKAtq/bQqHcmBEDMI31E2UOxceXis4Vx7DxsC4yHw6u+0NUETN8Rv6wD741kL30jmlDwIWdGNJSDEwIDAQAB", "auth-server-url" : "http://168.235.154.116:8090/auth", "ssl-required" : "none", "resource" : "Blog-Frontend-Admin", "public-client" : true} | json_instruct | {"type": "object", "properties": {"realm": {"type": "string"}, "realm-public-key": {"type": "string"}, "auth-server-url": {"type": "string"}, "ssl-required": {"type": "string"}, "resource": {"type": "string"}, "public-client": {"type": "boolean"}}, "required": ["realm", "realm-public-key", "auth-server-url", "ssl-required", "resource", "public-client"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"stack": {"type": "string"}}, "required": ["stack"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stack" : "heroku-18"} | json_instruct | {"type": "object", "properties": {"stack": {"type": "string"}}, "required": ["stack"], "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "tsc": {"type": "string"}, "tsc:w": {"type": "string"}, "lite": {"type": "string"}, "typings": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "tsc", "tsc:w", "lite", "typings", "postinstall"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular2": {"type": "string"}, "canvas": {"type": "string"}, "d3": {"type": "string"}, "d3-cloud": {"type": "string"}, "es6-promise": {"type": "string"}, "es6-shim": {"type": "string"}, "jquery": {"type": "string"}, "mathjs": {"type": "string"}, "moremath": {"type": "string"}, "ngx-infinite-scroll": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "systemjs": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["angular2", "canvas", "d3", "d3-cloud", "es6-promise", "es6-shim", "jquery", "mathjs", "moremath", "ngx-infinite-scroll", "reflect-metadata", "rxjs", "systemjs", "zone.js"]}, "devDependencies": {"type": "object", "properties": {"@angular/cli": {"type": "string"}, "@types/core-js": {"type": "string"}, "concurrently": {"type": "string"}, "lite-server": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular/cli", "@types/core-js", "concurrently", "lite-server", "typescript"]}}, "required": ["name", "version", "scripts", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "angular2-quickstart", "version" : "1.0.0", "scripts" : {"start" : "concurrent \"npm run tsc:w\" ", "tsc" : "tsc", "tsc:w" : "tsc -w", "lite" : "lite-server", "typings" : "typings", "postinstall" : "typings install"}, "license" : "ISC", "dependencies" : {"angular2" : "2.0.0-beta.21", "canvas" : "^1.6.5", "d3" : "^4.8.0", "d3-cloud" : "^1.2.4", "es6-promise" : "^3.0.2", "es6-shim" : "^0.33.3", "jquery" : "^3.2.1", "mathjs" : "^3.12.2", "moremath" : "^1.1.6", "ngx-infinite-scroll" : "^0.5.1", "reflect-metadata" : "0.1.2", "rxjs" : "5.0.0-beta.2", "systemjs" : "0.19.22", "zone.js" : "0.5.15"}, "devDependencies" : {"@angular/cli" : "^1.0.0", "@types/core-js" : "^0.9.41", "concurrently" : "^2.0.0", "lite-server" : "^2.1.0", "typescript" : "^2.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "tsc": {"type": "string"}, "tsc:w": {"type": "string"}, "lite": {"type": "string"}, "typings": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "tsc", "tsc:w", "lite", "typings", "postinstall"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular2": {"type": "string"}, "canvas": {"type": "string"}, "d3": {"type": "string"}, "d3-cloud": {"type": "string"}, "es6-promise": {"type": "string"}, "es6-shim": {"type": "string"}, "jquery": {"type": "string"}, "mathjs": {"type": "string"}, "moremath": {"type": "string"}, "ngx-infinite-scroll": {"type": "string"}, "reflect-metadata": {"type": "string"}, "rxjs": {"type": "string"}, "systemjs": {"type": "string"}, "zone.js": {"type": "string"}}, "required": ["angular2", "canvas", "d3", "d3-cloud", "es6-promise", "es6-shim", "jquery", "mathjs", "moremath", "ngx-infinite-scroll", "reflect-metadata", "rxjs", "systemjs", "zone.js"]}, "devDependencies": {"type": "object", "properties": {"@angular/cli": {"type": "string"}, "@types/core-js": {"type": "string"}, "concurrently": {"type": "string"}, "lite-server": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@angular/cli", "@types/core-js", "concurrently", "lite-server", "typescript"]}}, "required": ["name", "version", "scripts", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"@timestamp": {"type": "string"}, "agent": {"type": "object", "properties": {"hostname": {"type": "string"}, "name": {"type": "string"}}, "required": ["hostname", "name"]}, "elasticsearch": {"type": "object", "properties": {"cluster": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "ml": {"type": "object", "properties": {"job": {"type": "object", "properties": {"data_counts": {"type": "object", "properties": {"invalid_date_count": {"type": "integer"}, "processed_record_count": {"type": "integer"}}, "required": ["invalid_date_count", "processed_record_count"]}, "id": {"type": "string"}, "state": {"type": "string"}}, "required": ["data_counts", "id", "state"]}}, "required": ["job"]}}, "required": ["cluster", "ml"]}, "metricset": {"type": "object", "properties": {"host": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "namespace": {"type": "string"}, "rtt": {"type": "integer"}}, "required": ["host", "module", "name", "namespace", "rtt"]}, "service": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["@timestamp", "agent", "elasticsearch", "metricset", "service"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@timestamp" : "2017-10-12T08:05:34.853Z", "agent" : {"hostname" : "host.example.com", "name" : "host.example.com"}, "elasticsearch" : {"cluster" : {"id" : "3LbUkLkURz--FR-YO0wLNA", "name" : "es1"}, "ml" : {"job" : {"data_counts" : {"invalid_date_count" : 0, "processed_record_count" : 0}, "id" : "total-requests", "state" : "closed"}}}, "metricset" : {"host" : "127.0.0.1:9200", "module" : "elasticsearch", "name" : "ml_job", "namespace" : "elasticsearch.ml.job", "rtt" : 115}, "service" : {"name" : "elasticsearch"}} | json_instruct | {"type": "object", "properties": {"@timestamp": {"type": "string"}, "agent": {"type": "object", "properties": {"hostname": {"type": "string"}, "name": {"type": "string"}}, "required": ["hostname", "name"]}, "elasticsearch": {"type": "object", "properties": {"cluster": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "ml": {"type": "object", "properties": {"job": {"type": "object", "properties": {"data_counts": {"type": "object", "properties": {"invalid_date_count": {"type": "integer"}, "processed_record_count": {"type": "integer"}}, "required": ["invalid_date_count", "processed_record_count"]}, "id": {"type": "string"}, "state": {"type": "string"}}, "required": ["data_counts", "id", "state"]}}, "required": ["job"]}}, "required": ["cluster", "ml"]}, "metricset": {"type": "object", "properties": {"host": {"type": "string"}, "module": {"type": "string"}, "name": {"type": "string"}, "namespace": {"type": "string"}, "rtt": {"type": "integer"}}, "required": ["host", "module", "name", "namespace", "rtt"]}, "service": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["@timestamp", "agent", "elasticsearch", "metricset", "service"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "KENDRA", "frequency" : 1455, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"HTTPS_ENABLED": {"type": "boolean"}, "SESSION_SECRET": {"type": "string"}}, "required": ["HTTPS_ENABLED", "SESSION_SECRET"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"HTTPS_ENABLED" : false, "SESSION_SECRET" : "SuperSecretSessionSecret"} | json_instruct | {"type": "object", "properties": {"HTTPS_ENABLED": {"type": "boolean"}, "SESSION_SECRET": {"type": "string"}}, "required": ["HTTPS_ENABLED", "SESSION_SECRET"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [6.946984883179424, 7.09486163052005, 6.8777689490472, 7.03187400620834, 7.022780299099372, 7.220347437885657, 6.977583344908243, 6.932059795702816, 7.272738765420014, 7.002148848978426] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "font-awesome": {"type": "string"}, "chart.js": {"type": "string"}, "datatables.net-bs4": {"type": "string"}}, "required": ["@symfony/webpack-encore", "bootstrap", "jquery", "node-sass", "sass-loader", "font-awesome", "chart.js", "datatables.net-bs4"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev-server": {"type": "string"}, "dev": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev-server", "dev", "watch", "build"]}}, "required": ["devDependencies", "license", "private", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"devDependencies" : {"@symfony/webpack-encore" : "^0.20.1", "bootstrap" : "^4.1.1", "jquery" : "^3.3.1", "node-sass" : "^4.9.0", "sass-loader" : "^7.0.3", "font-awesome" : "^4.7.0", "chart.js" : "2.7.1", "datatables.net-bs4" : "1.10.16"}, "license" : "UNLICENSED", "private" : true, "scripts" : {"dev-server" : "./node_modules/.bin/encore dev-server", "dev" : "./node_modules/.bin/encore dev", "watch" : "./node_modules/.bin/encore dev --watch", "build" : "./node_modules/.bin/encore production"}} | json_instruct | {"type": "object", "properties": {"devDependencies": {"type": "object", "properties": {"@symfony/webpack-encore": {"type": "string"}, "bootstrap": {"type": "string"}, "jquery": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "font-awesome": {"type": "string"}, "chart.js": {"type": "string"}, "datatables.net-bs4": {"type": "string"}}, "required": ["@symfony/webpack-encore", "bootstrap", "jquery", "node-sass", "sass-loader", "font-awesome", "chart.js", "datatables.net-bs4"]}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev-server": {"type": "string"}, "dev": {"type": "string"}, "watch": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev-server", "dev", "watch", "build"]}}, "required": ["devDependencies", "license", "private", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0xb0a41d9bebf1e094124508e98d2cb14c1c37370b66113bea824cc679f904461e", "title" : "Mirror the current governance", "body" : "Should I mirror the governance of the current Co, and then evolve it towards a fully decentralized setting. ", "choices" : ["YES", "NO"], "start" : 1637258639, "end" : 1637345039, "snapshot" : "13640550", "state" : "closed", "author" : "0xC8a08b33995594bfdB0ef9c18EB72da0469E396F", "space" : {"id" : "dealexmachina.eth", "name" : "DEAL EX MACHINA"}, "votes" : 0, "votes_data" : []} | 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": {}}}, "required": ["id", "title", "body", "choices", "start", "end", "snapshot", "state", "author", "space", "votes", "votes_data"], "$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.