input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1 value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[36, 20], [15, 0], [47, 45], [26, 25], [31, 66], [48, 45]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "mingotaan", "h" : [{"d" : [{"f" : "\u628a\u2026\u652a\u6e3e\u6fc1\u4e86\u3001\u5f04\u6e3e\u6fc1\u4e86\u3002", "e" : ["\ufff9`Mingota~`a~`nira~ `ko~ `tefon~.\ufffa\ufffb\u4ed6\u628a\u4e95\u6c34\u652a\u6e3e\u6fc1\u4e86\u3002"]}, {"f" : "\u6307\u652a\u6e3e\u6fc1\u7684\u3001\u5f04\u6e3e\u6fc1\u7684\uff08\u5c0d\u8c61\u3001\u5730\u65b9\uff09\u3002", "e" : ["\ufff9`Mingota~`a~`n~ `a~ `nanom~.\ufffa\ufffb\u5f04\u6e3e\u6fc1\u7684\u6c34\u3002"]}]}], "stem" : "ngota"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "configurationProvider": {"type": "string"}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}, "intelliSenseMode": {"type": "string"}, "defines": {"type": "array", "items": {"type": "string"}}, "compilerPath": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "compileCommands": {"type": "string"}}, "required": ["name", "configurationProvider", "cStandard", "cppStandard", "intelliSenseMode", "defines", "compilerPath", "includePath", "compileCommands"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"configurations" : [{"name" : "Win32", "configurationProvider" : "ms-vscode.cmake-tools", "cStandard" : "gnu17", "cppStandard" : "gnu++17", "intelliSenseMode" : "windows-gcc-x64", "defines" : ["_DEBUG", "UNICODE", "_UNICODE"], "compilerPath" : "${env:QtRoot}\\Tools\\mingw810_64\\bin\\g++.exe", "includePath" : ["${env:QtRoot}\\Tools\\mingw810_64\\include", "${env:QtRoot}\\6.2.0\\mingw81_64\\include\\**", "${default}"], "compileCommands" : "${workspaceFolder}/build/compile_commands.json"}], "version" : 4} | json_instruct | {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "configurationProvider": {"type": "string"}, "cStandard": {"type": "string"}, "cppStandard": {"type": "string"}, "intelliSenseMode": {"type": "string"}, "defines": {"type": "array", "items": {"type": "string"}}, "compilerPath": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "compileCommands": {"type": "string"}}, "required": ["name", "configurationProvider", "cStandard", "cppStandard", "intelliSenseMode", "defines", "compilerPath", "includePath", "compileCommands"]}}, "version": {"type": "integer"}}, "required": ["configurations", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_3v6bj7xi", "name" : "KritikalZoneKev"}, "date" : {"day" : 1634169600, "full" : 1634170491, "month" : 1633046400, "week" : 1633824000}, "id" : "t3_q7o6lr", "picture" : {"filesize" : 68257, "fullUrl" : "https://preview.redd.it/5ujqp66c6bt71.jpg?auto=webp&s=abd83cd3206ba5a1a29af5c012c8abef91ecc2d8", "hash" : "880e5e6db5", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFwAAAwEAAAAAAAAAAAAAAAAAAAMEB//EACAQAAICAQQDAQAAAAAAAAAAAAECAxEABRIiMQQhQXH/xAAUAQEAAAAAAAAAAAAAAAAAAAAB/8QAFhEBAQEAAAAAAAAAAAAAAAAAAQAh/9oADAMBAAIRAxEAPwDDJKm3O1UeufX7hRMqPHfEAbVIoVlGqxxw6nMsSKqeiE7A6xXjRKZD8FqxA+4msOF//9k=", "url" : "https://preview.redd.it/5ujqp66c6bt71.jpg?width=640&crop=smart&auto=webp&s=5a69c436e958b8156304a6f32e7d80c0298f073b", "width" : 640}, "score" : {"comments" : 0, "downs" : 0, "isCurated" : false, "ratio" : 0.95, "ups" : 26, "value" : 26}, "subreddit" : {"id" : "t5_3isai", "name" : "dndmaps"}, "tags" : ["City"], "title" : "Maptober Day 14 - Plagued Village - Roots, Rats & Cocroaches", "url" : "https://www.reddit.com/r/dndmaps/comments/q7o6lr/maptober_day_14_plagued_village_roots_rats/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "isCurated": {"type": "boolean"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "isCurated", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "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"}, "version": {"type": "string"}, "main": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "cookie-parser": {"type": "string"}, "cookie-session": {"type": "string"}, "csurf": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-validator": {"type": "string"}, "font-awesome": {"type": "string"}, "helmet": {"type": "string"}, "html-entities": {"type": "string"}, "jade": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "sanitize-html": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["bcrypt", "body-parser", "bootstrap", "cookie-parser", "cookie-session", "csurf", "debug", "ejs", "express", "express-validator", "font-awesome", "helmet", "html-entities", "jade", "lodash", "moment", "morgan", "request", "sanitize-html", "serve-favicon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "main", "licenses", "dependencies", "engines", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "credit-offers", "version" : "2.0.0", "main" : "./bin/www", "licenses" : [{"type" : "Apache-2.0", "url" : "http://www.apache.org/licenses/LICENSE-2.0"}], "dependencies" : {"bcrypt" : "^1.0.3", "body-parser" : "1.13.3", "bootstrap" : "3.3.7", "cookie-parser" : "1.3.5", "cookie-session" : "^2.0.0-beta.3", "csurf" : "1.8.3", "debug" : "2.2.0", "ejs" : "~2.5.5", "express" : "4.13.4", "express-validator" : "2.21.0", "font-awesome" : "4.7.0", "helmet" : "1.1.0", "html-entities" : "1.2.0", "jade" : "1.11.0", "lodash" : "4.1.0", "moment" : "2.16.0", "morgan" : "1.6.1", "request" : "2.69.0", "sanitize-html" : "1.13.0", "serve-favicon" : "2.3.0"}, "engines" : {"node" : ">=4.0.0"}, "repository" : {"type" : "git", "url" : "https://github.com/capitalone/CreditOffers-API-reference-app"}, "scripts" : {"start" : "node ./bin/www"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "licenses": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "dependencies": {"type": "object", "properties": {"bcrypt": {"type": "string"}, "body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "cookie-parser": {"type": "string"}, "cookie-session": {"type": "string"}, "csurf": {"type": "string"}, "debug": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-validator": {"type": "string"}, "font-awesome": {"type": "string"}, "helmet": {"type": "string"}, "html-entities": {"type": "string"}, "jade": {"type": "string"}, "lodash": {"type": "string"}, "moment": {"type": "string"}, "morgan": {"type": "string"}, "request": {"type": "string"}, "sanitize-html": {"type": "string"}, "serve-favicon": {"type": "string"}}, "required": ["bcrypt", "body-parser", "bootstrap", "cookie-parser", "cookie-session", "csurf", "debug", "ejs", "express", "express-validator", "font-awesome", "helmet", "html-entities", "jade", "lodash", "moment", "morgan", "request", "sanitize-html", "serve-favicon"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}}, "required": ["name", "version", "main", "licenses", "dependencies", "engines", "repository", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"SIMULATE-FAILURE": {"type": "object", "properties": {"summary": {"type": "string"}, "group": {"type": "string"}, "since": {"type": "string"}, "arity": {"type": "integer"}, "container": {"type": "string"}, "function": {"type": "string"}, "command_flags": {"type": "array", "items": {"type": "string"}}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "optional": {"type": "boolean"}, "multiple": {"type": "boolean"}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "type", "optional", "multiple", "arguments"]}}}, "required": ["summary", "group", "since", "arity", "container", "function", "command_flags", "arguments"]}}, "required": ["SIMULATE-FAILURE"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SIMULATE-FAILURE" : {"summary" : "Simulate failover scenarios", "group" : "sentinel", "since" : "3.2.0", "arity" : -3, "container" : "SENTINEL", "function" : "sentinelCommand", "command_flags" : ["ADMIN", "SENTINEL", "ONLY_SENTINEL"], "arguments" : [{"name" : "mode", "type" : "oneof", "optional" : true, "multiple" : true, "arguments" : [{"name" : "crash-after-election", "type" : "pure-token"}, {"name" : "crash-after-promotion", "type" : "pure-token"}, {"name" : "help", "type" : "pure-token"}]}]}} | json_instruct | {"type": "object", "properties": {"SIMULATE-FAILURE": {"type": "object", "properties": {"summary": {"type": "string"}, "group": {"type": "string"}, "since": {"type": "string"}, "arity": {"type": "integer"}, "container": {"type": "string"}, "function": {"type": "string"}, "command_flags": {"type": "array", "items": {"type": "string"}}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "optional": {"type": "boolean"}, "multiple": {"type": "boolean"}, "arguments": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "type", "optional", "multiple", "arguments"]}}}, "required": ["summary", "group", "since", "arity", "container", "function", "command_flags", "arguments"]}}, "required": ["SIMULATE-FAILURE"], "$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"}, "description": {"type": "string"}, "author": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "mode": {"type": "string"}, "scope": {"type": "string"}, "index": {"type": "string"}, "icon": {"type": "string"}, "requires": {"type": "object", "properties": {"http://smartplatforms.org/terms#Medication": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}}, "required": ["http://smartplatforms.org/terms#Medication"]}}, "required": ["name", "description", "author", "id", "version", "mode", "scope", "index", "icon", "requires"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Med Adherence", "description" : "Display Adherence History for Chronic Meds", "author" : "Josh Mandel, Children's Hospital Boston", "id" : "med-adherence@apps.smartplatforms.org", "version" : ".1a", "mode" : "ui", "scope" : "record", "index" : "http://sample-apps.smartplatforms.org/framework/med_adherence/index.html", "icon" : "http://sample-apps.smartplatforms.org/framework/med_adherence/icon.png", "requires" : {"http://smartplatforms.org/terms#Medication" : {"methods" : ["GET"]}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "mode": {"type": "string"}, "scope": {"type": "string"}, "index": {"type": "string"}, "icon": {"type": "string"}, "requires": {"type": "object", "properties": {"http://smartplatforms.org/terms#Medication": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}}, "required": ["http://smartplatforms.org/terms#Medication"]}}, "required": ["name", "description", "author", "id", "version", "mode", "scope", "index", "icon", "requires"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "LENGTH_OF_ERA" : {"CATEGORY" : "Length of era", "MIN_VALUE" : 1, "P10_VALUE" : 1, "P25_VALUE" : 1, "MEDIAN_VALUE" : 1, "P75_VALUE" : 1, "P90_VALUE" : 1, "MAX_VALUE" : 16}, "AGE_AT_FIRST_DIAGNOSIS" : {"CATEGORY" : ["FEMALE", "MALE"], "MIN_VALUE" : [25, 0], "P10_VALUE" : [51, 37], "P25_VALUE" : [66, 55], "MEDIAN_VALUE" : [84, 72], "P75_VALUE" : [89, 83], "P90_VALUE" : [94, 89], "MAX_VALUE" : [107, 96]}} | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "Y_PREVALENCE_1000PP"]}, "PREVALENCE_BY_MONTH": {"type": "object", "properties": {"X_CALENDAR_MONTH": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["X_CALENDAR_MONTH", "Y_PREVALENCE_1000PP"]}, "LENGTH_OF_ERA": {"type": "object", "properties": {"CATEGORY": {"type": "string"}, "MIN_VALUE": {"type": "integer"}, "P10_VALUE": {"type": "integer"}, "P25_VALUE": {"type": "integer"}, "MEDIAN_VALUE": {"type": "integer"}, "P75_VALUE": {"type": "integer"}, "P90_VALUE": {"type": "integer"}, "MAX_VALUE": {"type": "integer"}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}, "AGE_AT_FIRST_DIAGNOSIS": {"type": "object", "properties": {"CATEGORY": {"type": "array", "items": {"type": "string"}}, "MIN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P10_VALUE": {"type": "array", "items": {"type": "integer"}}, "P25_VALUE": {"type": "array", "items": {"type": "integer"}}, "MEDIAN_VALUE": {"type": "array", "items": {"type": "integer"}}, "P75_VALUE": {"type": "array", "items": {"type": "integer"}}, "P90_VALUE": {"type": "array", "items": {"type": "integer"}}, "MAX_VALUE": {"type": "array", "items": {"type": "integer"}}}, "required": ["CATEGORY", "MIN_VALUE", "P10_VALUE", "P25_VALUE", "MEDIAN_VALUE", "P75_VALUE", "P90_VALUE", "MAX_VALUE"]}}, "required": ["PREVALENCE_BY_GENDER_AGE_YEAR", "PREVALENCE_BY_MONTH", "LENGTH_OF_ERA", "AGE_AT_FIRST_DIAGNOSIS"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "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"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"IsRecentlyVerified" : false, "ID" : 176687, "UUID" : "9671DDF4-09F0-4A21-8223-AAB8D8ED83FE", "DataProviderID" : 29, "DataProvidersReference" : "8049", "AddressInfo" : {"ID" : 177046, "Title" : "Heideweg 9", "AddressLine1" : "Heideweg 9", "Town" : "Lampertheim", "Postcode" : "68623", "CountryID" : 87, "Latitude" : 49.588075, "Longitude" : 8.483777, "DistanceUnit" : 0}, "Connections" : [{"ID" : 274893, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}, {"ID" : 274894, "ConnectionTypeID" : 25, "StatusTypeID" : 50, "LevelID" : 2, "PowerKW" : 22, "CurrentTypeID" : 20}], "StatusTypeID" : 0, "DateLastStatusUpdate" : "2021-07-12T02:43:00Z", "MetadataValues" : [{"ID" : 8982, "MetadataFieldID" : 4, "ItemValue" : "Data from the German chargepoint registry provided by Bundesnetzagentur.de under the CC-BY 4.0 license"}], "DataQualityLevel" : 3, "DateCreated" : "2021-07-08T09:48:00Z", "SubmissionStatusTypeID" : 100} | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "DataProvidersReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "Title": {"type": "string"}, "AddressLine1": {"type": "string"}, "Town": {"type": "string"}, "Postcode": {"type": "string"}, "CountryID": {"type": "integer"}, "Latitude": {"type": "number"}, "Longitude": {"type": "number"}, "DistanceUnit": {"type": "integer"}}, "required": ["ID", "Title", "AddressLine1", "Town", "Postcode", "CountryID", "Latitude", "Longitude", "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"]}}, "StatusTypeID": {"type": "integer"}, "DateLastStatusUpdate": {"type": "string"}, "MetadataValues": {"type": "array", "items": {"type": "object", "properties": {"ID": {"type": "integer"}, "MetadataFieldID": {"type": "integer"}, "ItemValue": {"type": "string"}}, "required": ["ID", "MetadataFieldID", "ItemValue"]}}, "DataQualityLevel": {"type": "integer"}, "DateCreated": {"type": "string"}, "SubmissionStatusTypeID": {"type": "integer"}}, "required": ["IsRecentlyVerified", "ID", "UUID", "DataProviderID", "DataProvidersReference", "AddressInfo", "Connections", "StatusTypeID", "DateLastStatusUpdate", "MetadataValues", "DataQualityLevel", "DateCreated", "SubmissionStatusTypeID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "changelog": {"type": "string"}, "tag": {"type": "string"}, "release": {"type": "string"}, "fmt": {"type": "string"}, "vet": {"type": "string"}, "lint": {"type": "string"}, "c": {"type": "string"}, "gen-mock": {"type": "string"}, "ci-local": {"type": "string"}}, "required": ["test", "changelog", "tag", "release", "fmt", "vet", "lint", "c", "gen-mock", "ci-local"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}, "commit-msg": {"type": "string"}}, "required": ["pre-commit", "commit-msg"]}}, "required": ["hooks"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "@commitlint/cli": {"type": "string"}, "@commitlint/config-angular": {"type": "string"}}, "required": ["husky", "@commitlint/cli", "@commitlint/config-angular"]}}, "required": ["scripts", "husky", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"test" : "go test -covermode=atomic ./...", "changelog" : "github_changelog_generator --no-unreleased --no-issue", "tag" : "bash scripts/tag.sh", "release" : "bash scripts/release.sh", "fmt" : "bash scripts/fmt.sh", "vet" : "go vet ./...", "lint" : "gometalinter ./...", "c" : "bash scripts/coverage.sh", "gen-mock" : "bash scripts/gen_mock.sh", "ci-local" : "circleci build -e LOCAL=true"}, "husky" : {"hooks" : {"pre-commit" : "npm run fmt && npm run vet && npm run lint && npm t", "commit-msg" : "commitlint -e $GIT_PARAMS"}}, "devDependencies" : {"husky" : "4.2.5", "@commitlint/cli" : "8.3.5", "@commitlint/config-angular" : "8.3.4"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"test": {"type": "string"}, "changelog": {"type": "string"}, "tag": {"type": "string"}, "release": {"type": "string"}, "fmt": {"type": "string"}, "vet": {"type": "string"}, "lint": {"type": "string"}, "c": {"type": "string"}, "gen-mock": {"type": "string"}, "ci-local": {"type": "string"}}, "required": ["test", "changelog", "tag", "release", "fmt", "vet", "lint", "c", "gen-mock", "ci-local"]}, "husky": {"type": "object", "properties": {"hooks": {"type": "object", "properties": {"pre-commit": {"type": "string"}, "commit-msg": {"type": "string"}}, "required": ["pre-commit", "commit-msg"]}}, "required": ["hooks"]}, "devDependencies": {"type": "object", "properties": {"husky": {"type": "string"}, "@commitlint/cli": {"type": "string"}, "@commitlint/config-angular": {"type": "string"}}, "required": ["husky", "@commitlint/cli", "@commitlint/config-angular"]}}, "required": ["scripts", "husky", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : 66486, "name" : "kara", "description" : "xD", "user" : {"id" : 19931, "name" : "Quacky", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : null}, "updated" : "2012-05-30T12:13:45.000Z", "weekly_install_count" : 0, "total_install_count" : 345, "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" : "2012-05-30T12:13:45.000Z", "category" : "site", "raw_subcategory" : "karachan", "subcategory" : "karachan", "additional_info" : null, "style_tags" : [], "css" : "@-moz-document domain(\"karachan.org\") {\r\nbody{background-image:none !important;}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/66486/kara.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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"result" : {"1" : [{"1" : "Sulaymaniyah International, Iraq (ISU)", "2" : "airport", "3" : "ISU", "4" : "ISU", "5" : "Sulaymaniyah", "6" : 45.3158333, "7" : 35.5625, "10" : "Asia/Baghdad"}, {"1" : "Johor Bahru Senai International, Malaysia (JHB)", "2" : "airport", "3" : "JHB", "4" : "JHB", "5" : "Johor Bahru", "6" : 103.670278, "7" : 1.63888889, "10" : "Asia/Kuching"}, {"1" : "Kuala Lumpur Sultan Abdul Aziz Shah, Malaysia (SZB)", "2" : "airport", "3" : "SZB", "4" : "KUL", "5" : "Kuala Lumpur", "6" : 101.554444, "7" : 3.12166667, "10" : "Asia/Kuching"}]}} | json_instruct | {"type": "object", "properties": {"result": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "object", "properties": {"1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "number"}, "7": {"type": "number"}, "10": {"type": "string"}}, "required": ["1", "2", "3", "4", "5", "6", "7", "10"]}}}, "required": ["1"]}}, "required": ["result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/97b2f9d8-9c06-3222-a574-e54e2db41b12", "expression" : [{"composer" : "http://data.doremus.org/artist/00f6e16d-7cd8-3d52-ad65-5f5e85e42123", "id" : "http://data.doremus.org/expression/5ce74439-6a96-329b-8f26-745cd1f4f05b"}, {"composer" : "http://data.doremus.org/artist/8f81cc2f-fcdc-3e98-880e-976b28024d60", "id" : "http://data.doremus.org/expression/a360d8c7-5449-377a-b1a2-ea43ca270852"}, {"composer" : "http://data.doremus.org/artist/434764e7-d309-3e4a-b745-32e51891c80c", "id" : "http://data.doremus.org/expression/c6d6a82d-e297-3fa5-b1bf-73139bab9148"}, {"composer" : "http://data.doremus.org/artist/1b1205f9-b99a-3bb8-ba77-256689af2e00", "id" : "http://data.doremus.org/expression/28b161ae-d4df-3169-8c90-efae1c3e0200"}, {"composer" : "http://data.doremus.org/artist/a742accd-f881-3a98-b631-932924ad7c42", "id" : "http://data.doremus.org/expression/eda8886b-beed-3334-a0cd-1237e6eb3f2d"}, {"composer" : "http://data.doremus.org/artist/bcf39e82-e208-3049-b550-1feaae6071a6", "id" : "http://data.doremus.org/expression/2ac2f2e7-6f97-3b60-9841-daf0218a6733"}, {"composer" : "http://data.doremus.org/artist/1f65ada3-6d7d-3fce-9a4a-ab109eaf41b3", "id" : "http://data.doremus.org/expression/f4bcfa3b-7938-30e1-afe2-f7eeaec64290"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "null"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "string"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "/books/OL10271831M", "title" : "Even More Bumper Snickers", "subtitle" : null, "publishers" : ["Signet"], "authors" : ["Bill Hoest"], "isbn_10" : "0451113993", "isbn_13" : "9780451113993", "publish_date" : "February 2, 1982", "subjects" : ["Humor / General"]} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "title": {"type": "string"}, "subtitle": {"type": "null"}, "publishers": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "isbn_10": {"type": "string"}, "isbn_13": {"type": "string"}, "publish_date": {"type": "string"}, "subjects": {"type": "array", "items": {"type": "string"}}}, "required": ["key", "title", "subtitle", "publishers", "authors", "isbn_10", "isbn_13", "publish_date", "subjects"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"post_comments": {"type": "object", "properties": {}, "required": []}, "timestamp": {"type": "integer"}, "post_user_id": {"type": "string"}, "link": {"type": "string"}, "post": {"type": "string"}, "post_message": {"type": "array", "items": {}}}, "required": ["post_comments", "timestamp", "post_user_id", "link", "post", "post_message"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"post_comments" : {}, "timestamp" : 1610882821, "post_user_id" : "[]", "link" : "https://facebook.com/groups/mogivietnam/permalink/3679900925378937", "post" : "3679900925378937", "post_message" : []} | json_instruct | {"type": "object", "properties": {"post_comments": {"type": "object", "properties": {}, "required": []}, "timestamp": {"type": "integer"}, "post_user_id": {"type": "string"}, "link": {"type": "string"}, "post": {"type": "string"}, "post_message": {"type": "array", "items": {}}}, "required": ["post_comments", "timestamp", "post_user_id", "link", "post", "post_message"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "pools": {"type": "array", "items": {"type": "object", "properties": {"rolls": {"type": "object", "properties": {"min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["min", "max"]}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "required": ["rolls", "entries"]}}}, "required": ["type", "pools"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "minecraft:generic", "pools" : [{"rolls" : {"min" : 5, "max" : 7}, "entries" : [{"type" : "minecraft:loot_table", "name" : "minecraft:entities/pig"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/cow"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/chicken"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/zombie"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/skeleton"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/spider"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/creeper"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/cave_spider"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/enderman"}, {"type" : "minecraft:loot_table", "name" : "minecraft:entities/witch"}]}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pools": {"type": "array", "items": {"type": "object", "properties": {"rolls": {"type": "object", "properties": {"min": {"type": "integer"}, "max": {"type": "integer"}}, "required": ["min", "max"]}, "entries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}}, "required": ["type", "name"]}}}, "required": ["rolls", "entries"]}}}, "required": ["type", "pools"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"algorithm": {"type": "null"}, "chat": {"type": "array", "items": {"type": "string"}}, "community": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "explorer": {"type": "array", "items": {"type": "string"}}, "fromSymbol": {"type": "string"}, "is_crypto": {"type": "boolean"}, "is_minable": {"type": "boolean"}, "name": {"type": "string"}, "network": {"type": "object", "properties": {"t_available_supply": {"type": "integer"}, "t_block_reward": {"type": "integer"}, "t_max_supply": {"type": "integer"}, "t_total_supply": {"type": "integer"}}, "required": ["t_available_supply", "t_block_reward", "t_max_supply", "t_total_supply"]}, "proof_type": {"type": "null"}, "quote": {"type": "array", "items": {"type": "string"}}, "social": {"type": "array", "items": {"type": "string"}}, "source_code": {"type": "array", "items": {"type": "string"}}, "toSymbol": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "integer"}, "website": {"type": "string"}, "adoptedFromSymbol": {"type": "string"}}, "required": ["algorithm", "chat", "community", "description", "explorer", "fromSymbol", "is_crypto", "is_minable", "name", "network", "proof_type", "quote", "social", "source_code", "toSymbol", "type", "version", "website", "adoptedFromSymbol"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"algorithm" : null, "chat" : ["https://t.me/noahproject", "https://t.me/noahproject_community", "https://line.me/R/ti/p/%40noah_coin"], "community" : ["https://www.reddit.com/user/NOAHCOINOfficial/"], "description" : {"en" : "NOAH PROJECT seeks to bring about social innovation through blockchain technology and work to solve the economic disparities around the world. A portion of the project\u2019s proceeds will be donated to charity by our parent organization, NOAH FOUNDATION."}, "explorer" : ["https://etherscan.io/token/0x58a4884182d9e835597f405e5f258290e46ae7c2", "https://ethplorer.io/address/0x58a4884182d9e835597f405e5f258290e46ae7c2"], "fromSymbol" : "NOAH", "is_crypto" : true, "is_minable" : false, "name" : "Noah", "network" : {"t_available_supply" : 32687957978, "t_block_reward" : 0, "t_max_supply" : 0, "t_total_supply" : 91584000000}, "proof_type" : null, "quote" : ["https://blockmodo.com/quotes/NOAH"], "social" : ["https://twitter.com/NOAHCOIN_Proj"], "source_code" : ["https://github.com/NoahFoundation/NoahCoin"], "toSymbol" : "ALL", "type" : "COINREGISTRY", "version" : 1, "website" : "https://noahcoin.org/", "adoptedFromSymbol" : "NOAH"} | json_instruct | {"type": "object", "properties": {"algorithm": {"type": "null"}, "chat": {"type": "array", "items": {"type": "string"}}, "community": {"type": "array", "items": {"type": "string"}}, "description": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "explorer": {"type": "array", "items": {"type": "string"}}, "fromSymbol": {"type": "string"}, "is_crypto": {"type": "boolean"}, "is_minable": {"type": "boolean"}, "name": {"type": "string"}, "network": {"type": "object", "properties": {"t_available_supply": {"type": "integer"}, "t_block_reward": {"type": "integer"}, "t_max_supply": {"type": "integer"}, "t_total_supply": {"type": "integer"}}, "required": ["t_available_supply", "t_block_reward", "t_max_supply", "t_total_supply"]}, "proof_type": {"type": "null"}, "quote": {"type": "array", "items": {"type": "string"}}, "social": {"type": "array", "items": {"type": "string"}}, "source_code": {"type": "array", "items": {"type": "string"}}, "toSymbol": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "integer"}, "website": {"type": "string"}, "adoptedFromSymbol": {"type": "string"}}, "required": ["algorithm", "chat", "community", "description", "explorer", "fromSymbol", "is_crypto", "is_minable", "name", "network", "proof_type", "quote", "social", "source_code", "toSymbol", "type", "version", "website", "adoptedFromSymbol"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"symbol" : "AXL", "name" : "AXiaL", "decimals" : 18, "address" : "0x4fac0ccd9e2ed9fd462d42b66fb81ba9a1f6f25e"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "654022204001", "text" : "\u5f00\u53d1\u5730\u519c\u6751\u793e\u533a"}, {"id" : "654022204200", "text" : "\u624e\u5e93\u9f50\u725b\u5f55\u6751"}, {"id" : "654022204201", "text" : "\u67e5\u5e72\u5e03\u62c9\u514b\u6751"}, {"id" : "654022204202", "text" : "\u5be8\u725b\u5f55\u6751"}, {"id" : "654022204203", "text" : "\u94c1\u5c14\u66fc\u5e03\u62c9\u514b\u6751"}, {"id" : "654022204204", "text" : "\u7eb3\u5c14\u6d2a\u6751"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "neutronia:block/dried_mud_bricks"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x6166c869792b5359d8f80ffd902bb3ff462a20ac", "tool" : "securify", "start" : 1563601530.465205, "end" : 1563601534.8911138, "duration" : 4.425908803939819, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ac-koa", "banorte-payworks22", "barbakoa", "boar-tasks", "boar-tasks-client", "boar-tasks-server", "cake-mocha", "divramod-utils-boilerplate", "dm-dotfiles", "dm-tex", "dm-typo3", "easynode", "five-bells-integration-test", "gitbook2edx-external-grader", "gobind-db-tests", "hi-framework", "ilp-plugin-tests", "js-stack.tasks", "ko-timeout", "koa-response-censor", "pg-job-queue", "postgresdb", "remove-duplicated-files", "swagger-api-tester", "tapc-plugin-monitor", "test-on-fire"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404399401, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "068955817d12f9a5cb825eca8964d1b5", "wof:id" : 404399401, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.28472, 44.525, 2.28472, 44.525], "geometry" : {"coordinates" : [2.28472, 44.525], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-replace": {"type": "string"}, "grunt-bower-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-less": {"type": "string"}, "grunt-cli": {"type": "string"}}, "required": ["grunt", "grunt-replace", "grunt-bower-cli", "grunt-contrib-concat", "grunt-contrib-uglify", "grunt-contrib-copy", "grunt-contrib-clean", "grunt-contrib-less", "grunt-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "selectize-wp-post-item", "version" : "0.0.5", "description" : "A selectize.js plugin which formats items and options if WordPress post data is provided", "main" : "src/plugins/wp_post_item/plugin.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git://github.com/tmf/selectize-wp-post-item.git"}, "keywords" : ["selectize.js", "plugin", "wordpress"], "author" : "tmf <tom.forrer@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/tmf/selectize-wp-post-item/issues"}, "homepage" : "https://github.com/tmf/selectize-wp-post-item", "dependencies" : {}, "devDependencies" : {"grunt" : "0.4.x", "grunt-replace" : "0.4.x", "grunt-bower-cli" : "0.0.x", "grunt-contrib-concat" : "0.3.x", "grunt-contrib-uglify" : "0.2.x", "grunt-contrib-copy" : "0.4.x", "grunt-contrib-clean" : "0.5.x", "grunt-contrib-less" : "~0.9.0", "grunt-cli" : "^0.1.13"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"grunt": {"type": "string"}, "grunt-replace": {"type": "string"}, "grunt-bower-cli": {"type": "string"}, "grunt-contrib-concat": {"type": "string"}, "grunt-contrib-uglify": {"type": "string"}, "grunt-contrib-copy": {"type": "string"}, "grunt-contrib-clean": {"type": "string"}, "grunt-contrib-less": {"type": "string"}, "grunt-cli": {"type": "string"}}, "required": ["grunt", "grunt-replace", "grunt-bower-cli", "grunt-contrib-concat", "grunt-contrib-uglify", "grunt-contrib-copy", "grunt-contrib-clean", "grunt-contrib-less", "grunt-cli"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Pantay Fatima, Vigan City, Ilocos Sur, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.ilocos-sur.vigan-city.pantay-fatima", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "11", "region_reference" : "1", "region_name" : "Ilocos Region (Region I)", "province_id" : "35", "province_reference" : "35", "province_name" : "Ilocos Sur", "city_id" : "1408", "city_reference" : "646", "city_name" : "Vigan City", "barangay_id" : "41278", "barangay_reference" : "15411", "barangay_name" : "Pantay Fatima"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.367653, 17.574369], [120.376022, 17.568991], [120.375877, 17.56851], [120.376251, 17.566], [120.375923, 17.56333], [120.375801, 17.562401], [120.374557, 17.56048], [120.373451, 17.56007], [120.364594, 17.570009], [120.365631, 17.571171], [120.366692, 17.573111], [120.367653, 17.574369]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "7108020005", "district_id" : "7108020", "name" : "BATUMAWIRA"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Heart 103 Bath", "src" : "http://media-ice.musicradio.com/HeartBathMP3?.mp3?t=1526290390"}, {"name" : "KOR Radio", "src" : "https://str2.openstream.co/377?t=1526290392"}, {"name" : "The Breeze", "src" : "http://stream2.radiomonitor.com:80/Breeze-Bath-128?t=1526290394"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "src": {"type": "string"}}, "required": ["name", "src"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : ["In a large bowl, stir together the masa harina, salt and hot water. Gradually mix in the shortening and flour. If the dough seems dry, add a little more hot water. Form the dough into balls that will fit into the palm of your hand.", "Line a work surface with waxed paper or plastic. Sprinkle with water. Flatten balls on the wet surface until about 1/4 inch thick.", "Heat a griddle or comal over medium heat. Cook the gorditas on each side until they are cooked through.", "Heat oil in a large heavy skillet over medium to medium-high heat until hot. Fry each gordita until puffed, pressing it down into the oil occasionally with a spatula. Drain briefly on paper towels, cut the tips off and stuff full of your favorite foods."], "ingredients" : ["1 cup masa harina (instant corn masa mix)", "1 cup all-purpose flour", "1 teaspoon salt", "1 tablespoon shortening", "1 cup hot water", "1 cup oil for frying"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Gorditas", "url" : "http://allrecipes.com/recipe/78174/gorditas/"} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"date" : "2022-04-02", "total" : 505, "delta" : 2, "version" : "0.11"}, {"date" : "2022-04-08", "total" : 519, "delta" : 14, "version" : "0.11"}, {"date" : "2022-04-10", "total" : 524, "delta" : 5, "version" : "0.11"}, {"date" : "2022-04-12", "total" : 528, "delta" : 4, "version" : "0.11"}, {"date" : "2022-04-13", "total" : 530, "delta" : 2, "version" : "0.11"}, {"date" : "2022-04-29", "total" : 564, "delta" : 34, "version" : "0.11"}, {"date" : "2022-04-30", "total" : 566, "delta" : 2, "version" : "0.11"}, {"date" : "2022-05-03", "total" : 572, "delta" : 6, "version" : "0.11"}, {"date" : "2022-05-10", "total" : 586, "delta" : 14, "version" : "0.11"}, {"date" : "2022-05-13", "total" : 592, "delta" : 6, "version" : "0.11"}, {"date" : "2022-05-14", "total" : 595, "delta" : 3, "version" : "0.11"}, {"date" : "2022-05-17", "total" : 599, "delta" : 4, "version" : "0.11"}, {"date" : "2022-06-01", "total" : 632, "delta" : 33, "version" : "0.11"}, {"date" : "2022-06-05", "total" : 641, "delta" : 9, "version" : "0.11"}, {"date" : "2022-04-02", "total" : 598, "delta" : 2, "version" : "0.12"}, {"date" : "2022-04-08", "total" : 614, "delta" : 16, "version" : "0.12"}, {"date" : "2022-04-10", "total" : 619, "delta" : 5, "version" : "0.12"}, {"date" : "2022-04-12", "total" : 623, "delta" : 4, "version" : "0.12"}, {"date" : "2022-04-13", "total" : 625, "delta" : 2, "version" : "0.12"}, {"date" : "2022-04-29", "total" : 662, "delta" : 37, "version" : "0.12"}, {"date" : "2022-04-30", "total" : 664, "delta" : 2, "version" : "0.12"}, {"date" : "2022-05-03", "total" : 670, "delta" : 6, "version" : "0.12"}, {"date" : "2022-05-10", "total" : 684, "delta" : 14, "version" : "0.12"}, {"date" : "2022-05-13", "total" : 690, "delta" : 6, "version" : "0.12"}, {"date" : "2022-05-14", "total" : 694, "delta" : 4, "version" : "0.12"}, {"date" : "2022-05-17", "total" : 698, "delta" : 4, "version" : "0.12"}, {"date" : "2022-06-01", "total" : 734, "delta" : 36, "version" : "0.12"}, {"date" : "2022-06-05", "total" : 744, "delta" : 10, "version" : "0.12"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
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"}, "files": {"type": "array", "items": {"type": "string"}}, "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", "files", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "stonework", "version" : "1.0.1", "description" : "Arranges images intelligently based on available width and aspect ratios.", "main" : "src/stonework.js", "files" : ["src/**/*"], "repository" : {"type" : "git", "url" : "git+https://github.com/js1300/stonework.git"}, "author" : "Jonathan Simmonds", "license" : "MIT", "bugs" : {"url" : "https://github.com/js1300/stonework/issues"}, "homepage" : "https://github.com/js1300/stonework#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "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", "files", "repository", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"702013f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700197f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["702013f-a", "700197f-a"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"702013f-a" : {"width" : 446, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/702013f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/702013f-a.jpg", "title" : "", "date" : "1927", "text" : "Walton Ave., west side, north from East 164th Street.\nAbout 1927.\nEwing Galloway.\n", "folder" : "Walton Avenue & 164th Street (East), Bronx, NY", "height" : 600, "original_title" : "Bronx: Walton Avenue - 164th Street (East)", "years" : ["1927"]}, "700197f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/700197f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/700197f-a.jpg", "title" : "", "date" : "1941", "text" : "E. 164th Street, at the northeast corner of Walton Avenue, showing the All Hallows Institute, seen from Joyce Kilmer Park. Between the Institute and the steel skeleton o f [sic] a new building on the right is a narrow clearance, the former Butternut Street,\nnow no longer used as a thoroughfare.\nP. L. Sperr April 10, 1941\n", "folder" : "164th Street (East) & Walton Avenue, Bronx, NY", "height" : 403, "original_title" : "Bronx: 164th Street (East) - Walton Avenue", "years" : ["1941"]}} | json_instruct | {"type": "object", "properties": {"702013f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "700197f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["702013f-a", "700197f-a"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testWriting": {"type": "string"}, "testWritingOverflow": {"type": "string"}}, "required": ["testWriting", "testWritingOverflow"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"testWriting" : "SvenVanCaekenberghe 12/8/2010 09:54", "testWritingOverflow" : "SvenVanCaekenberghe 12/8/2010 09:53"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"testWriting": {"type": "string"}, "testWritingOverflow": {"type": "string"}}, "required": ["testWriting", "testWritingOverflow"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "building", "name", "phone", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "way/84778693", "properties" : {"addr:city" : "Winsen", "addr:country" : "DE", "addr:housenumber" : "73", "addr:postcode" : "21423", "addr:street" : "T\u00f6nnh\u00e4user Weg", "building" : "yes", "name" : "Schr\u00f6ders Hofladen", "phone" : "+49 4171 7876866", "shop" : "farm", "id" : "way/84778693"}, "geometry" : {"type" : "Point", "coordinates" : [10.2182601, 53.3695289]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "building": {"type": "string"}, "name": {"type": "string"}, "phone": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["addr:city", "addr:country", "addr:housenumber", "addr:postcode", "addr:street", "building", "name", "phone", "shop", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urlvideo": {"type": "string"}}, "required": ["text", "created", "type", "urlvideo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : "I wish the Mueller Report was an HBO or Netflix series. The actor who plays Trump should be a <a href=\"https://www.indiewire.com/2017/08/best-tv-presidents-ever-1201868686/\">TV president</a>, yet do the corrupt, desperate and sad things he does. Create a contrast betw the president we deserve and the one we have.", "created" : "Wed, 29 May 2019 16:15:14 GMT", "type" : "outline", "urlvideo" : "https://www.youtube.com/watch?v=emmPSEgYkP0"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "created": {"type": "string"}, "type": {"type": "string"}, "urlvideo": {"type": "string"}}, "required": ["text", "created", "type", "urlvideo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "watersource:block/coconut_tree_trapdoor_bottom"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["bitmessage", "eccrypto-scripts", "sps-client"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"zope-event": {"type": "string"}, "zope-hookable": {"type": "string"}, "zope-interface": {"type": "string"}}, "required": ["zope-event", "zope-hookable", "zope-interface"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"zope-event" : "4.5.0", "zope-hookable" : "5.1.0", "zope-interface" : "5.4.0"} | json_instruct | {"type": "object", "properties": {"zope-event": {"type": "string"}, "zope-hookable": {"type": "string"}, "zope-interface": {"type": "string"}}, "required": ["zope-event", "zope-hookable", "zope-interface"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "data": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "locale": {"type": "object", "properties": {"it": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["it"]}}, "required": ["id", "labels", "data", "locale"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "mission1131-14", "labels" : ["AffinityMission"], "data" : {"name" : "Nine Lives"}, "locale" : {"it" : {"name" : "Nove vite"}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "labels": {"type": "array", "items": {"type": "string"}}, "data": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "locale": {"type": "object", "properties": {"it": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["it"]}}, "required": ["id", "labels", "data", "locale"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"auto-load": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["auto-load", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jest": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-jsx-a11y", "jest"]}}, "required": ["name", "repository", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "discord-bot-openbmc", "repository" : {"type" : "git", "url" : "https://github.com/williamspatrick/discord-bot-openbmc"}, "version" : "0.0.0", "description" : "Discord Bot for OpenBMC community", "main" : "index.js", "scripts" : {"lint" : "eslint --fix *.js src/**/*.js test/**/*.js", "start" : "node index.js", "test" : "eslint *.js src/**/*.js test/**/*.js && jest"}, "author" : "", "license" : "MIT", "dependencies" : {"auto-load" : "^3.0.4", "discord.js" : "git://github.com/discordjs/discord.js.git#d744e51c1bdb4c7a26c0faeea1f2f45baaf5fd3c", "dotenv" : "^8.2.0"}, "devDependencies" : {"eslint" : "^7.22.0", "eslint-config-airbnb-base" : "^14.2.1", "eslint-plugin-import" : "^2.22.1", "eslint-plugin-jest" : "^24.3.1", "eslint-plugin-jsx-a11y" : "^6.4.1", "jest" : "^26.6.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "start": {"type": "string"}, "test": {"type": "string"}}, "required": ["lint", "start", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"auto-load": {"type": "string"}, "discord.js": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["auto-load", "discord.js", "dotenv"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "eslint-plugin-jest": {"type": "string"}, "eslint-plugin-jsx-a11y": {"type": "string"}, "jest": {"type": "string"}}, "required": ["eslint", "eslint-config-airbnb-base", "eslint-plugin-import", "eslint-plugin-jest", "eslint-plugin-jsx-a11y", "jest"]}}, "required": ["name", "repository", "version", "description", "main", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "0xbba35dc58905b35e2444662715cd686376fdd470879e5e490aa2756df712504a", "parentHash" : "0x1f6879e2b05ae04762979f85e9ed48443f11cbc1b76b6768f08cb2c0e4d30773", "number" : 7846, "timestamp" : 1438309557, "nonce" : "0x764236c585f876eb", "difficulty" : 422802322281, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x4e5C9FD685DCC9AbEDe1Cbde4959039388bf7c5A", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/fa73765f-1f14-3e64-adfb-8b0b78bf0425", "expression" : [{"id" : "http://data.doremus.org/expression/a5d97f6e-f2ed-3a8f-9118-89374795e3ad"}, {"id" : "http://data.doremus.org/expression/aa61a74d-acdf-392a-9243-fd521b56d3ba"}, {"id" : "http://data.doremus.org/expression/82bee6b5-63b3-39f4-8d72-6ba09d70e0c2"}, {"id" : "http://data.doremus.org/expression/39068c18-f292-3c68-b319-0de4c88ccef0"}, {"id" : "http://data.doremus.org/expression/a30c0ddd-0571-31b5-9451-e9321a385554"}, {"id" : "http://data.doremus.org/expression/21492350-621e-3291-bfc7-12c6df527e5d"}, {"id" : "http://data.doremus.org/expression/f85f768e-0923-361f-846b-e67134b0df0a"}, {"id" : "http://data.doremus.org/expression/10efbf01-893f-3930-9dff-0dcf71238d54"}, {"id" : "http://data.doremus.org/expression/cc610f44-65a2-3fb4-8fb9-563e9ddee127"}, {"id" : "http://data.doremus.org/expression/72594937-b245-3848-8ff2-635d288fe429"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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": {"node-gyp": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["node-gyp", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vue-cli-creator-preset", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/TaroXin/vue-cli-creator-preset.git"}, "author" : "TaroXin", "license" : "ISC", "bugs" : {"url" : "https://github.com/TaroXin/vue-cli-creator-preset/issues"}, "homepage" : "https://github.com/TaroXin/vue-cli-creator-preset#readme", "dependencies" : {"node-gyp" : "^3.8.0", "superagent" : "^3.8.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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": {"node-gyp": {"type": "string"}, "superagent": {"type": "string"}}, "required": ["node-gyp", "superagent"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jarray-util": {"type": "string"}, "jcollection-util": {"type": "string"}, "jprimitive-collections": {"type": "string"}}, "required": ["jarray-util", "jcollection-util", "jprimitive-collections"]}}, "required": ["version", "name", "description", "homepage", "license", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.2.1", "name" : "jcollection-extensions", "description" : "Java collection extensions, currently contains unique integer Id generator, list, and map classes", "homepage" : "https://github.com/TeamworkGuy2/JCollectionExtensions", "license" : "MIT", "main" : "./bin/jcollection_extensions.jar", "dependencies" : {"jarray-util" : "*", "jcollection-util" : "*", "jprimitive-collections" : "*"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"jarray-util": {"type": "string"}, "jcollection-util": {"type": "string"}, "jprimitive-collections": {"type": "string"}}, "required": ["jarray-util", "jcollection-util", "jprimitive-collections"]}}, "required": ["version", "name", "description", "homepage", "license", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 170863, "info" : {"name" : "Better Hacker News Dark", "description" : "Dark, Restricted Width", "additionalInfo" : null, "format" : "uso", "category" : "ycombinator", "createdAt" : "2019-04-10T06:49:46.000Z", "updatedAt" : "2019-04-10T06:49:46.000Z", "license" : "CC0-1.0", "author" : {"id" : 806914, "name" : "tst"}}, "stats" : {"installs" : {"total" : 15, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "170863_after.png", "archived" : true}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document domain(\"news.ycombinator.com\") {\r\nbody {\r\n background-color: #262626 !important;\r\n}\r\n\r\nbody table {\r\n max-width: 50rem;\r\n}\r\n\r\n.comment {\r\n font-size: 1rem;\r\n}\r\n\r\nbody > center > table,\r\ninput,\r\ntextarea {\r\n background-color: #222 !important;\r\n}\r\n\r\nbody > center > table > tbody > tr:first-child > td {\r\n background-color: #ff6600 !important;\r\n}\r\n\r\n/* Bright text */\r\ntd.title a:link,\r\nspan.comment font,\r\nspan.comment font a:link,\r\nu a:link,\r\nspan.yclinks a:link,\r\nbody:not([id]),\r\ntd:nth-child(2):not(.subtext) > a:link,\r\ninput,\r\ntextarea,\r\np > a,\r\na > u,\r\n.c00,\r\n.c00 a:link,\r\na[href=\"http://www.ycombinator.com/apply/\"] {\r\n color: #ccc !important;\r\n}\r\n\r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "pash", "definition" : "To strike; to crush; to smash; to dash in pieces. [Obs.] P. Plowman. \"I'll pash him o'er the face.\" Shak.\n\n1. The head; the poll. [R.] \"A rough pash.\" Shak. 2. A crushing blow. [Obs.] 3. A heavy fall of rain or snow. [Prov. Eng.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Sophie-Scholl-Schule Gemeinschaftshauptschule d. Stadt Gronau", "id" : "NRW-144034", "address" : "Gasstra\u00dfe 17, 48599 Gronau (Westf.)", "school_type" : "Hauptschule", "fax" : "02565 967011", "phone" : "02565 967010", "website" : " http://home.t-online.de/home/hsepe", "email" : " 144034@schule.nrw.de ", "state" : "NRW", "programs" : {"programs" : ["Fairtrade Schools", "Schule ohne Rassismus - Schule mit Courage"]}, "full_time_school" : false, "lon" : 7.041736, "lat" : 52.18342} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": "array", "items": {"type": "string"}}}, "required": ["programs"]}, "full_time_school": {"type": "boolean"}, "lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["name", "id", "address", "school_type", "fax", "phone", "website", "email", "state", "programs", "full_time_school", "lon", "lat"], "$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"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sass-glob": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify-es": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-cssnano", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sass-glob", "gulp-sourcemaps", "gulp-uglify-es"]}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "random-front-end-stuff", "version" : "1.0.0", "description" : "Front-end code samples", "main" : "gulpfile.js", "dependencies" : {}, "devDependencies" : {"gulp" : "^4.0.0", "gulp-concat" : "^2.6.1", "gulp-cssnano" : "^2.1.3", "gulp-postcss" : "^8.0.0", "gulp-rename" : "^1.4.0", "gulp-sass" : "^4.0.2", "gulp-sass-glob" : "^1.0.9", "gulp-sourcemaps" : "^2.6.4", "gulp-uglify-es" : "^1.0.4"}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/AESM/Random-Front-End-Stuff.git"}, "keywords" : ["HTML5", "CSS3", "JavaScript"], "author" : "Ali Esmaili", "license" : "MIT", "bugs" : {"url" : "https://github.com/AESM/Random-Front-End-Stuff/issues"}, "homepage" : "https://github.com/AESM/Random-Front-End-Stuff#readme"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-cssnano": {"type": "string"}, "gulp-postcss": {"type": "string"}, "gulp-rename": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-sass-glob": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-uglify-es": {"type": "string"}}, "required": ["gulp", "gulp-concat", "gulp-cssnano", "gulp-postcss", "gulp-rename", "gulp-sass", "gulp-sass-glob", "gulp-sourcemaps", "gulp-uglify-es"]}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"702082f-b": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "702082f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "702082f-c": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["702082f-b", "702082f-a", "702082f-c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"702082f-b" : {"width" : 367, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/702082f-b.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/702082f-b.jpg", "title" : "", "date" : "", "text" : "1950 West Farms Road, south of the souteast corner of E. Tremont Avenue, showing the Crowther Mansion, built-1816. It later became part of the bleachery works located here.\nViews 1,2 about 1915\nView 3: E. P. Chrystie April 16, 1927\n", "folder" : "1950 West Farms Road & Tremont Avenue (East)., Bronx, NY", "height" : 600, "original_title" : "Bronx: 1950 West Farms Road - Tremont Avenue (East).", "years" : [""]}, "702082f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/702082f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/702082f-a.jpg", "title" : "", "date" : "", "text" : "1950 West Farms Road, south of the souteast corner of E. Tremont Avenue, showing the Crowther Mansion, built-1816. It later became part of the bleachery works located here.\nViews 1,2 about 1915\nView 3: E. P. Chrystie April 16, 1927\n", "folder" : "1950 West Farms Road & Tremont Avenue (East)., Bronx, NY", "height" : 468, "original_title" : "Bronx: 1950 West Farms Road - Tremont Avenue (East).", "years" : [""]}, "702082f-c" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/702082f-c.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/702082f-c.jpg", "title" : "", "date" : "", "text" : "1950 West Farms Road, south of the souteast corner of E. Tremont Avenue, showing the Crowther Mansion, built-1816. It later became part of the bleachery works located here.\nViews 1,2 about 1915\nView 3: E. P. Chrystie April 16, 1927\n", "folder" : "1950 West Farms Road & Tremont Avenue (East)., Bronx, NY", "height" : 440, "original_title" : "Bronx: 1950 West Farms Road - Tremont Avenue (East).", "years" : [""]}} | json_instruct | {"type": "object", "properties": {"702082f-b": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "702082f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}, "702082f-c": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"}, "original_title": {"type": "string"}, "years": {"type": "array", "items": {"type": "string"}}}, "required": ["width", "thumb_url", "image_url", "title", "date", "text", "folder", "height", "original_title", "years"]}}, "required": ["702082f-b", "702082f-a", "702082f-c"], "$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"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"modernizr": {"type": "string"}, "jquery": {"type": "string"}, "knockout": {"type": "string"}, "moment": {"type": "string"}, "pagerjs": {"type": "string"}, "underscore": {"type": "string"}, "parse": {"type": "string"}}, "required": ["modernizr", "jquery", "knockout", "moment", "pagerjs", "underscore", "parse"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "package", "version" : "0.0.0", "main" : "bower_components", "dependencies" : {"modernizr" : "~2.8.3", "jquery" : "~2.1.0", "knockout" : "~3.2.0", "moment" : "~2.8.3", "pagerjs" : "~1.0.1", "underscore" : "~1.7.0", "parse" : "~1.3.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"modernizr": {"type": "string"}, "jquery": {"type": "string"}, "knockout": {"type": "string"}, "moment": {"type": "string"}, "pagerjs": {"type": "string"}, "underscore": {"type": "string"}, "parse": {"type": "string"}}, "required": ["modernizr", "jquery", "knockout", "moment", "pagerjs", "underscore", "parse"]}}, "required": ["name", "version", "main", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "denseores:block/dense_redstone_ore"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}}, "required": ["test", "coverage", "lint", "lint-fix"]}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"encode": {"type": "string"}, "decode": {"type": "string"}, "file": {"type": "string"}}, "required": ["encode", "decode", "file"]}}, "required": ["nodes"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "node-red": {"type": "string"}, "node-red-node-test-helper": {"type": "string"}, "should": {"type": "string"}}, "required": ["eslint", "istanbul", "mocha", "node-red", "node-red-node-test-helper", "should"]}, "dependencies": {"type": "object", "properties": {"protobufjs": {"type": "string"}}, "required": ["protobufjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "node-red", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "node-red-contrib-protobuf", "version" : "1.0.1", "description" : "Protocol buffer encode/decode nodes.", "main" : "src/index.js", "scripts" : {"test" : "mocha \"test/**/*spec.js\"", "coverage" : "istanbul cover _mocha $(find ./lib -name \"*.spec.js\" -not -path \"./node_modules/*\")", "lint" : "eslint \"src/**/*.js\"", "lint-fix" : "eslint --fix \"src/**/*.js\""}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/w4tsn/node-red-contrib-protobuf.git"}, "keywords" : ["node-red", "protobuf"], "author" : "Alexander Wellbrock <a.wellbrock@mailbox.org>", "license" : "BSD-3", "bugs" : {"url" : "https://github.com/w4tsn/node-red-contrib-protobuf/issues"}, "homepage" : "https://github.com/w4tsn/node-red-contrib-protobuf#README", "node-red" : {"nodes" : {"encode" : "src/nodes/encode.js", "decode" : "src/nodes/decode.js", "file" : "src/nodes/protofile.js"}}, "devDependencies" : {"eslint" : "^5.0.1", "istanbul" : "^0.4.5", "mocha" : "^5.2.0", "node-red" : "^0.18.7", "node-red-node-test-helper" : "^0.1.8", "should" : "^13.2.1"}, "dependencies" : {"protobufjs" : "^6.8.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "coverage": {"type": "string"}, "lint": {"type": "string"}, "lint-fix": {"type": "string"}}, "required": ["test", "coverage", "lint", "lint-fix"]}, "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"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "node-red": {"type": "object", "properties": {"nodes": {"type": "object", "properties": {"encode": {"type": "string"}, "decode": {"type": "string"}, "file": {"type": "string"}}, "required": ["encode", "decode", "file"]}}, "required": ["nodes"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "istanbul": {"type": "string"}, "mocha": {"type": "string"}, "node-red": {"type": "string"}, "node-red-node-test-helper": {"type": "string"}, "should": {"type": "string"}}, "required": ["eslint", "istanbul", "mocha", "node-red", "node-red-node-test-helper", "should"]}, "dependencies": {"type": "object", "properties": {"protobufjs": {"type": "string"}}, "required": ["protobufjs"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "node-red", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "directive": {"type": "string"}, "domElement": {"type": "string"}, "css": {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}, "top": {"type": "string"}, "left": {"type": "string"}}, "required": ["width", "height", "top", "left"]}, "preserveAspectRatio": {"type": "boolean"}}, "required": ["name", "author", "version", "description", "directive", "domElement", "css", "preserveAspectRatio"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "RaceTicker", "author" : "Keudn, Husk, Janvanfalken, Oren, and FluffyHulk", "version" : "0.1", "description" : "Just a tutorial app", "directive" : "raceTicker", "domElement" : "<race-ticker></race-ticker>", "css" : {"width" : "400px", "height" : "800px", "top" : "200px", "left" : "200px"}, "preserveAspectRatio" : false} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "directive": {"type": "string"}, "domElement": {"type": "string"}, "css": {"type": "object", "properties": {"width": {"type": "string"}, "height": {"type": "string"}, "top": {"type": "string"}, "left": {"type": "string"}}, "required": ["width", "height", "top", "left"]}, "preserveAspectRatio": {"type": "boolean"}}, "required": ["name", "author", "version", "description", "directive", "domElement", "css", "preserveAspectRatio"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "5206010012", "district_id" : "5206010", "name" : "BARALAU"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "malasapatefoc", "h" : [{"d" : [{"f" : "\u7576\u6210\u7f70\u91d1\u3002", "e" : ["\ufff9`Mala~`sapatefoc~ `kona~ `payso~.\ufffa\ufffb\u9019\u4e9b\u9322\u662f\u8981\u7576\u7f70\u91d1\u7684\u3002"]}]}], "stem" : "tefoc"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[151.25, 29.25], [151.25, 29.333333333333332], [151.375, 29.333333333333332], [151.375, 29.25], [151.25, 29.25]]]}, "properties" : {"code" : 435172, "url" : "http://madefor.github.io/0410/api/v1/435172.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/435172.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404365603, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "caebe0cd49ad837b8057c776fd0ef2a6", "wof:id" : 404365603, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.82769842336259, 46.28282491499751, 0.87881151962006, 46.34154129721075], "geometry" : {"coordinates" : [[[0.84400005239679, 46.28282491499751], [0.83960369690317, 46.28426395887137], [0.83474663397593, 46.29372934389148], [0.8378548824951, 46.30024722667736], [0.82769842336259, 46.31578220162408], [0.84143298982338, 46.31727735893313], [0.84704565219494, 46.32298658130279], [0.84808928239784, 46.33975228334273], [0.86760348091226, 46.33895699970487], [0.87092339902278, 46.34154129721075], [0.87881151962006, 46.33836442596365], [0.87289188344147, 46.32939024997706], [0.87416429858369, 46.31237987867659], [0.863541570836, 46.30544314926143], [0.8612786894433, 46.29882480697805], [0.84400005239679, 46.28282491499751]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["buttercup", "grunt-simpledav-upload", "webdav-fuse"] | json_instruct | {"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": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "data": {"type": "object", "properties": {"address": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}}, "required": ["address", "password", "port"]}}, "required": ["title", "description", "data"]}}, "required": ["user"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "auth_required": {"type": "string"}, "auth_failed": {"type": "string"}}, "required": ["cannot_connect", "auth_required", "auth_failed"]}, "abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["step", "error", "abort"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"description": {"type": "string"}, "data": {"type": "object", "properties": {"update_rate": {"type": "string"}, "read_timeout": {"type": "string"}}, "required": ["update_rate", "read_timeout"]}}, "required": ["description", "data"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"step" : {"user" : {"title" : "FoldingAtHomeControl", "description" : "Je\u015bli potrzebujesz pomocy w konfiguracji, zajrzyj tam: https://github.com/eifinger/hass-foldingathomecontrol", "data" : {"address" : "Adres IP lub Host", "password" : "Has\u0142o", "port" : "Numer portu"}}}, "error" : {"cannot_connect" : "Brak po\u0142\u0105czenia z hostem.", "auth_required" : "Do po\u0142\u0105czenia si\u0119 z tym hostem wymagane jest podanie has\u0142a.", "auth_failed" : "Nazwa u\u017cytkownika lub has\u0142o s\u0105 nieprawid\u0142owe."}, "abort" : {"already_configured" : "Dla ka\u017cdego adresu dozwolona jest tylko jedna konfiguracja integracji FoldingAtHomeControl."}}, "options" : {"step" : {"init" : {"description" : "Konfiguracja opcji integracji FoldingAtHomeControl", "data" : {"update_rate" : "Cz\u0119sto\u015b\u0107 aktualizacji", "read_timeout" : "Limit czasu odczytu"}}}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"step": {"type": "object", "properties": {"user": {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "data": {"type": "object", "properties": {"address": {"type": "string"}, "password": {"type": "string"}, "port": {"type": "string"}}, "required": ["address", "password", "port"]}}, "required": ["title", "description", "data"]}}, "required": ["user"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "auth_required": {"type": "string"}, "auth_failed": {"type": "string"}}, "required": ["cannot_connect", "auth_required", "auth_failed"]}, "abort": {"type": "object", "properties": {"already_configured": {"type": "string"}}, "required": ["already_configured"]}}, "required": ["step", "error", "abort"]}, "options": {"type": "object", "properties": {"step": {"type": "object", "properties": {"init": {"type": "object", "properties": {"description": {"type": "string"}, "data": {"type": "object", "properties": {"update_rate": {"type": "string"}, "read_timeout": {"type": "string"}}, "required": ["update_rate", "read_timeout"]}}, "required": ["description", "data"]}}, "required": ["init"]}}, "required": ["step"]}}, "required": ["config", "options"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"theme_color": {"type": "string"}, "background_color": {"type": "string"}, "display": {"type": "string"}, "scope": {"type": "string"}, "start_url": {"type": "string"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["theme_color", "background_color", "display", "scope", "start_url", "name", "short_name", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"theme_color" : "#3b35f6", "background_color" : "#3b35f6", "display" : "standalone", "scope" : "/", "start_url" : "https://admin.til.ojisan.io", "name" : "admin.til.ojisan.io", "short_name" : "til-admin", "description" : "admin view for til.ojisan.io", "icons" : [{"src" : "icon-192x192.png", "sizes" : "192x192", "type" : "image/png"}, {"src" : "icon-512x512.png", "sizes" : "512x512", "type" : "image/png"}]} | json_instruct | {"type": "object", "properties": {"theme_color": {"type": "string"}, "background_color": {"type": "string"}, "display": {"type": "string"}, "scope": {"type": "string"}, "start_url": {"type": "string"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}}, "required": ["theme_color", "background_color", "display", "scope", "start_url", "name", "short_name", "description", "icons"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"requirejs": {"type": "string"}}, "required": ["requirejs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}}, "required": ["name", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "viewjs-example-amd", "dependencies" : {"requirejs" : "~2.1.10"}, "scripts" : {"build" : "r.js -o build-config.js"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "dependencies": {"type": "object", "properties": {"requirejs": {"type": "string"}}, "required": ["requirejs"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}}, "required": ["name", "dependencies", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "BANGKALAN", "originalFilename" : "PDF115.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 230924, "noUrut" : 1, "nama" : "IMRON ROSYADI, SE, M.SI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF178.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 287496, "noUrut" : 2, "nama" : "ANTON BASTONI, ST", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF130.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 233739, "noUrut" : 3, "nama" : "RUSMIANIEK", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF177.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 287546, "noUrut" : 4, "nama" : "ACEK KUSUMA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA SURABAYA", "originalFilename" : "PDF180.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 287693, "noUrut" : 5, "nama" : "H. SYAIFUL ANAM", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF148.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 266633, "noUrut" : 6, "nama" : "R. SYARIFAH,, SE", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF181.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 287800, "noUrut" : 7, "nama" : "FITRIA AL AMIN, S. Tr. Keb", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "BANGKALAN", "originalFilename" : "PDF043.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 160212, "noUrut" : 8, "nama" : "ABDUL HADI", "stringJenisKelamin" : "Laki-Laki"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 101897511, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "21d458bcbeefbf13fe47f6c2fa38a26f", "wof:id" : 101897511, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.21660274614726, 44.49659061980662, 1.22977709819548, 44.50885472872864], "geometry" : {"coordinates" : [[[1.22797097222173, 44.50885472872864], [1.22811040014176, 44.50796007833242], [1.22935890737267, 44.50806564692999], [1.22977709819548, 44.50538168475464], [1.22852864906969, 44.50527612195896], [1.22894684575624, 44.50259215780761], [1.22645007622873, 44.50238099895739], [1.22658950224491, 44.50148634637941], [1.22534114310952, 44.50138074645827], [1.22548058268427, 44.50048609494996], [1.22423224708848, 44.50038048201009], [1.22479002478008, 44.49680187506738], [1.22229352100356, 44.49659061980662], [1.22201456633019, 44.49837991726918], [1.2207662819892, 44.49827426334161], [1.22062677658215, 44.49916890884009], [1.21813018171605, 44.4989575522572], [1.21799063177929, 44.49985219301993], [1.21674232125514, 44.49974649036403], [1.21660274614726, 44.50064112832547], [1.22159609076732, 44.50106385697592], [1.22145658729761, 44.50195850181507], [1.22395332340773, 44.50216978029312], [1.22381385285758, 44.50306442813729], [1.22506224654359, 44.50317004688094], [1.22478332675269, 44.50495934384537], [1.22603176334786, 44.50506495150432], [1.22547393155219, 44.50864354279912], [1.22797097222173, 44.50885472872864]]], "type" : "Polygon"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"breeze.css": {"type": "string"}, "normalize.css": {"type": "string"}, "rupture": {"type": "string"}}, "required": ["breeze.css", "normalize.css", "rupture"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mits-default-theme", "version" : "1.3.2", "description" : "Styled components set for Make I.T. Simple projects", "main" : "main.styl", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/MakeITSimpleUK/mits-default-theme.git"}, "author" : "Anton Skyba <\u201cinbox@antonskyba.me\u201d>", "license" : "ISC", "bugs" : {"url" : "https://github.com/MakeITSimpleUK/mits-default-theme/issues"}, "homepage" : "https://github.com/MakeITSimpleUK/mits-default-theme#readme", "dependencies" : {"breeze.css" : "^2.1.2", "normalize.css" : "^8.0.0", "rupture" : "^0.7.1"}, "devDependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "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": {"breeze.css": {"type": "string"}, "normalize.css": {"type": "string"}, "rupture": {"type": "string"}}, "required": ["breeze.css", "normalize.css", "rupture"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"09-09-2019": {"type": "integer"}, "12-09-2019": {"type": "integer"}}, "required": ["09-09-2019", "12-09-2019"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"09-09-2019" : 413, "12-09-2019" : 12} | json_instruct | {"type": "object", "properties": {"09-09-2019": {"type": "integer"}, "12-09-2019": {"type": "integer"}}, "required": ["09-09-2019", "12-09-2019"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"int": {"type": "integer"}, "rcv": {"type": "integer"}, "send": {"type": "integer"}, "bit_length": {"type": "array", "items": {"type": "integer"}}, "clock": {"type": "array", "items": {"type": "integer"}}, "id": {"type": "integer"}}, "required": ["int", "rcv", "send", "bit_length", "clock", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"int" : 6, "rcv" : 3, "send" : 4, "bit_length" : [2, 3, 4, 68, 69, 70, 120, 145, 146, 147, 148, 149, 150], "clock" : [2, 4, 8, 200723610554235223600, 401447221108470447200, 802894442216940894400, 879352805316878130650621847276240000, 36073072826844959105232743304276405599520000, 72146145653689918210465486608552811199040000, 144292291307379836420930973217105622398080000, 288584582614759672841861946434211244796160000, 577169165229519345683723892868422489592320000, 1154338330459038691367447785736844979184640000], "id" : 0} | json_instruct | {"type": "object", "properties": {"int": {"type": "integer"}, "rcv": {"type": "integer"}, "send": {"type": "integer"}, "bit_length": {"type": "array", "items": {"type": "integer"}}, "clock": {"type": "array", "items": {"type": "integer"}}, "id": {"type": "integer"}}, "required": ["int", "rcv", "send", "bit_length", "clock", "id"], "$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"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "underscore": {"type": "string"}, "backbone": {"type": "string"}, "minpubsub": {"type": "string"}, "d3": {"type": "string"}, "requirejs-text": {"type": "string"}, "requirejs": {"type": "string"}, "moment": {"type": "string"}, "underscore.string": {"type": "string"}, "handlebars": {"type": "string"}, "amplify": {"type": "string"}, "topojson": {"type": "string"}, "gmaps-markerclusterer-plus": {"type": "string"}, "Class.js": {"type": "string"}, "uri-templates": {"type": "string"}, "jquery.simplePagination": {"type": "string"}, "geojson-google-maps": {"type": "string"}, "jquery-ujs": {"type": "string"}, "keymaster": {"type": "string"}, "enquire": {"type": "string"}, "chosen": {"type": "string"}, "slick-carousel": {"type": "string"}, "bluebird": {"type": "string"}, "turf": {"type": "string"}, "urijs": {"type": "string"}, "nouislider": {"type": "string"}}, "required": ["jquery", "underscore", "backbone", "minpubsub", "d3", "requirejs-text", "requirejs", "moment", "underscore.string", "handlebars", "amplify", "topojson", "gmaps-markerclusterer-plus", "Class.js", "uri-templates", "jquery.simplePagination", "geojson-google-maps", "jquery-ujs", "keymaster", "enquire", "chosen", "slick-carousel", "bluebird", "turf", "urijs", "nouislider"]}, "resolutions": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "homepage", "authors", "description", "license", "ignore", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gfw-climate", "version" : "1.0.0", "homepage" : "https://github.com/Vizzuality/gfw-climate", "authors" : ["Vizzuality <info@vizzuality.com>"], "description" : "GFW Climate", "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_components", "vendor/assets/bower_components", "test", "tests"], "dependencies" : {"jquery" : "1.11.1", "underscore" : "~1.6.0", "backbone" : "~1.1.2", "minpubsub" : "~0.0.2", "d3" : "~3.4.8", "requirejs-text" : "~2.0.12", "requirejs" : "~2.1.14", "moment" : "~2.7.0", "underscore.string" : "~2.3.3", "handlebars" : "~1.3.0", "amplify" : "~1.1.2", "topojson" : "~1.6.15", "gmaps-markerclusterer-plus" : "~2.1.1", "Class.js" : "~1.0.0", "uri-templates" : "~0.1.5", "jquery.simplePagination" : "*", "geojson-google-maps" : "*", "jquery-ujs" : "~1.0.2", "keymaster" : "~1.6.3", "enquire" : "~2.1.2", "chosen" : "~1.4.2", "slick-carousel" : "~1.5.8", "bluebird" : "~3.1.1", "turf" : "~2.0.2", "urijs" : "URIjs#^1.18.2", "nouislider" : "^9.0.0"}, "resolutions" : {"jquery" : "1.11.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "license": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "underscore": {"type": "string"}, "backbone": {"type": "string"}, "minpubsub": {"type": "string"}, "d3": {"type": "string"}, "requirejs-text": {"type": "string"}, "requirejs": {"type": "string"}, "moment": {"type": "string"}, "underscore.string": {"type": "string"}, "handlebars": {"type": "string"}, "amplify": {"type": "string"}, "topojson": {"type": "string"}, "gmaps-markerclusterer-plus": {"type": "string"}, "Class.js": {"type": "string"}, "uri-templates": {"type": "string"}, "jquery.simplePagination": {"type": "string"}, "geojson-google-maps": {"type": "string"}, "jquery-ujs": {"type": "string"}, "keymaster": {"type": "string"}, "enquire": {"type": "string"}, "chosen": {"type": "string"}, "slick-carousel": {"type": "string"}, "bluebird": {"type": "string"}, "turf": {"type": "string"}, "urijs": {"type": "string"}, "nouislider": {"type": "string"}}, "required": ["jquery", "underscore", "backbone", "minpubsub", "d3", "requirejs-text", "requirejs", "moment", "underscore.string", "handlebars", "amplify", "topojson", "gmaps-markerclusterer-plus", "Class.js", "uri-templates", "jquery.simplePagination", "geojson-google-maps", "jquery-ujs", "keymaster", "enquire", "chosen", "slick-carousel", "bluebird", "turf", "urijs", "nouislider"]}, "resolutions": {"type": "object", "properties": {"jquery": {"type": "string"}}, "required": ["jquery"]}}, "required": ["name", "version", "homepage", "authors", "description", "license", "ignore", "dependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "STAAT1", "lang" : "en", "description" : null, "name" : "States", "type" : "Merkmal"} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"resolvers": {"type": "object", "properties": {"property-sort-order": {"type": "integer"}}, "required": ["property-sort-order"]}}, "required": ["resolvers"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resolvers" : {"property-sort-order" : 1}} | json_instruct | {"type": "object", "properties": {"resolvers": {"type": "object", "properties": {"property-sort-order": {"type": "integer"}}, "required": ["property-sort-order"]}}, "required": ["resolvers"], "$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": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.526696, 41.149222], [-87.526587, 41.16609], [-87.526019, 41.166322], [-87.484775, 41.169886], [-87.45799, 41.170591], [-87.446792, 41.174353], [-87.440966, 41.172916], [-87.414338, 41.16223], [-87.393657, 41.16283], [-87.380709, 41.172652], [-87.363887, 41.176765], [-87.346584, 41.182296], [-87.330964, 41.183143], [-87.324206, 41.186406], [-87.28573, 41.215202], [-87.275882, 41.218595], [-87.275726, 41.144392], [-87.334068, 41.144825], [-87.333711, 41.086345], [-87.429549, 41.086476], [-87.429608, 41.081395], [-87.433663, 41.084676], [-87.439992, 41.086873], [-87.44291, 41.086988], [-87.443396, 41.089662], [-87.447766, 41.091586], [-87.448662, 41.08658], [-87.526511, 41.087168], [-87.526696, 41.149222]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 24036}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85786795, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "ccc64462035005ec8756f9df279f110f", "wof:id" : 85786795, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.143444, 51.317457, -0.143444, 51.317457], "geometry" : {"coordinates" : [-0.143444, 51.317457], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"regenerator-runtime": {"type": "string"}}, "required": ["regenerator-runtime"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "gatsby-plugin-google-analytics": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}}, "required": ["@babel/runtime"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "regenerator-runtime": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@babel/runtime", "gatsby-plugin-google-analytics", "regenerator-runtime"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gatsby-starter-hello-world", "version" : "0.1.0", "lockfileVersion" : 1, "requires" : true, "dependencies" : {"@babel/runtime" : {"version" : "7.7.4", "resolved" : "https://registry.npmjs.org/@babel/runtime/-/runtime-7.7.4.tgz", "integrity" : "sha512-r24eVUUr0QqNZa+qrImUk8fn5SPhHq+IfYvIoIMg0do3GdK9sMdiLKP3GYVVaxpPKORgm8KRKaNTEhAjgIpLMw==", "requires" : {"regenerator-runtime" : "^0.13.2"}}, "gatsby-plugin-google-analytics" : {"version" : "2.1.29", "resolved" : "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.1.29.tgz", "integrity" : "sha512-vRMmXyam7LUwD+xdWCLQTbe5pT8FOX3vcIJdwckY/c3x3/GFIkx9bRJ1/N8z9x9dAci3g0HoTQZ6BkcqcNhzkA==", "requires" : {"@babel/runtime" : "^7.7.4"}}, "regenerator-runtime" : {"version" : "0.13.3", "resolved" : "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz", "integrity" : "sha512-naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw=="}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "lockfileVersion": {"type": "integer"}, "requires": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@babel/runtime": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"regenerator-runtime": {"type": "string"}}, "required": ["regenerator-runtime"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "gatsby-plugin-google-analytics": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}, "requires": {"type": "object", "properties": {"@babel/runtime": {"type": "string"}}, "required": ["@babel/runtime"]}}, "required": ["version", "resolved", "integrity", "requires"]}, "regenerator-runtime": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["@babel/runtime", "gatsby-plugin-google-analytics", "regenerator-runtime"]}}, "required": ["name", "version", "lockfileVersion", "requires", "dependencies"], "$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"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "hiredis": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "node-uuid": {"type": "string"}, "redis": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "hiredis", "mongodb", "mongoose", "node-uuid", "redis", "socket.io"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "livelecture", "version" : "1.0.0", "description" : "A web application designed to make lectures more interactive", "main" : "main.js", "directories" : {"doc" : "docs"}, "dependencies" : {"express" : "^3.19.1", "hiredis" : "^0.1.17", "mongodb" : "^1.4.29", "mongoose" : "^3.8.22", "node-uuid" : "^1.4.2", "redis" : "^0.10.3", "socket.io" : "^0.9.17"}, "devDependencies" : {}, "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Shannin Ciprich and Nick Hynes", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"doc": {"type": "string"}}, "required": ["doc"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "hiredis": {"type": "string"}, "mongodb": {"type": "string"}, "mongoose": {"type": "string"}, "node-uuid": {"type": "string"}, "redis": {"type": "string"}, "socket.io": {"type": "string"}}, "required": ["express", "hiredis", "mongodb", "mongoose", "node-uuid", "redis", "socket.io"]}, "devDependencies": {"type": "object", "properties": {}, "required": []}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "directories", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Bremondans", "dpt" : "Doubs", "inscrits" : 81, "abs" : 17, "votants" : 64, "blancs" : 6, "nuls" : 2, "exp" : 56, "res" : [{"panneau" : "1", "voix" : 35}, {"panneau" : "2", "voix" : 21}]} | 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#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"k": {"type": "integer"}, "nb_peaks": {"type": "integer"}, "global_minima": {"type": "object", "properties": {"freq": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["freq", "count"]}, "global_maxima": {"type": "object", "properties": {"freq": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["freq", "count"]}, "mean_freq": {"type": "integer"}, "peaks": {"type": "array", "items": {"type": "object", "properties": {"mean_freq": {"type": "number"}, "stddev": {"type": "number"}, "count": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["mean_freq", "stddev", "count", "volume"]}}, "hom_peak": {"type": "object", "properties": {"freq": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["freq", "index"]}, "est_genome_size": {"type": "integer"}, "est_het_rate": {"type": "number"}}, "required": ["k", "nb_peaks", "global_minima", "global_maxima", "mean_freq", "peaks", "hom_peak", "est_genome_size", "est_het_rate"]}, "gc": {"type": "object", "properties": {"k": {"type": "integer"}, "nb_peaks": {"type": "integer"}, "mean_gc%": {"type": "number"}, "peaks": {"type": "array", "items": {"type": "object", "properties": {"mean_freq": {"type": "number"}, "stddev": {"type": "number"}, "count": {"type": "number"}, "volume": {"type": "integer"}}, "required": ["mean_freq", "stddev", "count", "volume"]}}}, "required": ["k", "nb_peaks", "mean_gc%", "peaks"]}}, "required": ["coverage", "gc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coverage" : {"k" : 27, "nb_peaks" : 1, "global_minima" : {"freq" : 58, "count" : 779}, "global_maxima" : {"freq" : 721, "count" : 11656}, "mean_freq" : 719, "peaks" : [{"mean_freq" : 719.8631278642832, "stddev" : 161.7557005678383, "count" : 10663, "volume" : 3746990}], "hom_peak" : {"freq" : 719, "index" : 1}, "est_genome_size" : 3746990, "est_het_rate" : 0.0}, "gc" : {"k" : 27, "nb_peaks" : 1, "mean_gc%" : 53.48796469611531, "peaks" : [{"mean_freq" : 14.595911503708635, "stddev" : 3.1462326367852644, "count" : 15191142.874382924, "volume" : 119795198}]}} | json_instruct | {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"k": {"type": "integer"}, "nb_peaks": {"type": "integer"}, "global_minima": {"type": "object", "properties": {"freq": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["freq", "count"]}, "global_maxima": {"type": "object", "properties": {"freq": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["freq", "count"]}, "mean_freq": {"type": "integer"}, "peaks": {"type": "array", "items": {"type": "object", "properties": {"mean_freq": {"type": "number"}, "stddev": {"type": "number"}, "count": {"type": "integer"}, "volume": {"type": "integer"}}, "required": ["mean_freq", "stddev", "count", "volume"]}}, "hom_peak": {"type": "object", "properties": {"freq": {"type": "integer"}, "index": {"type": "integer"}}, "required": ["freq", "index"]}, "est_genome_size": {"type": "integer"}, "est_het_rate": {"type": "number"}}, "required": ["k", "nb_peaks", "global_minima", "global_maxima", "mean_freq", "peaks", "hom_peak", "est_genome_size", "est_het_rate"]}, "gc": {"type": "object", "properties": {"k": {"type": "integer"}, "nb_peaks": {"type": "integer"}, "mean_gc%": {"type": "number"}, "peaks": {"type": "array", "items": {"type": "object", "properties": {"mean_freq": {"type": "number"}, "stddev": {"type": "number"}, "count": {"type": "number"}, "volume": {"type": "integer"}}, "required": ["mean_freq", "stddev", "count", "volume"]}}}, "required": ["k", "nb_peaks", "mean_gc%", "peaks"]}}, "required": ["coverage", "gc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "behindhand", "definition" : "1. In arrears financially; in a state where expenditures have exceeded the receipt of funds. 2. In a state of backwardness, in respect to what is seasonable or appropriate, or as to what should have been accomplished; not equally forward with some other person or thing; dilatory; backward; late; tardy; as, behindhand in studies or in work. In this also [dress] the country are very much behindhand. Addison."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"evas-php/evas-base": {"type": "string"}}, "required": ["evas-php/evas-base"]}}, "required": ["name", "description", "keywords", "version", "type", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "evas-php/evas-di", "description" : "Di module (Dependency Injection container trait & class) based on magic methods", "keywords" : ["dependency injection", "evas-php"], "version" : "1.1", "type" : "library", "license" : "CC-BY-4.0", "authors" : [{"name" : "Egor Vasyakin", "email" : "egor@evas-php.com"}], "require" : {"evas-php/evas-base" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"evas-php/evas-base": {"type": "string"}}, "required": ["evas-php/evas-base"]}}, "required": ["name", "description", "keywords", "version", "type", "license", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Amatista vajrada", "description" : "Material de ascensi\u00f3n de personaje.\\n\u201cEste cuerpo es el m\u00e1s noble y eminente de todos en este mundo\u201d.\\n\u201cDeber\u00eda gobernar todo lo que hay bajo el cielo\u201d.\\n\u201cUna vez, este cuerpo le prometi\u00f3 a su gente un sue\u00f1o: la inmutable eternidad\u201d.", "rarity" : "5", "category" : "AVATAR_MATERIAL", "materialtype" : "Material de mejora de personaje", "source" : ["Derrotar un Hipostasis Electro (Niv. 75+)", "Sintetizar"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "rarity", "category", "materialtype", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "helpUs": {"type": "string"}, "takeShortSurvey": {"type": "string"}, "remindLater": {"type": "string"}, "neverAgain": {"type": "string"}}, "required": ["", "helpUs", "takeShortSurvey", "remindLater", "neverAgain"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"" : ["--------------------------------------------------------------------------------------------", "Copyright (c) Microsoft Corporation. All rights reserved.", "Licensed under the MIT License. See License.txt in the project root for license information.", "--------------------------------------------------------------------------------------------", "Do not edit this file. It is machine generated."], "helpUs" : "{0} i\u00e7in hizmetimizi iyile\u015ftirmemize yard\u0131mc\u0131 olun", "takeShortSurvey" : "K\u0131sa Ankete Kat\u0131l", "remindLater" : "Daha Sonra Hat\u0131rlat", "neverAgain" : "Tekrar G\u00f6sterme"} | json_instruct | {"type": "object", "properties": {"": {"type": "array", "items": {"type": "string"}}, "helpUs": {"type": "string"}, "takeShortSurvey": {"type": "string"}, "remindLater": {"type": "string"}, "neverAgain": {"type": "string"}}, "required": ["", "helpUs", "takeShortSurvey", "remindLater", "neverAgain"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_4r1q3w5z", "name" : "creek_and_bugs"}, "date" : {"day" : 1614038400, "full" : 1614086903, "month" : 1612137600, "week" : 1613865600}, "id" : "t3_lqiewq", "picture" : {"filesize" : 76654, "fullUrl" : "https://preview.redd.it/gszxymejb8j61.jpg?auto=webp&s=93968904b83f27a3b39f2d01db56176f5db629a3", "hash" : "0c35d15fac", "height" : 480, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAMABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAjEAACAgEDBAMBAAAAAAAAAAABAgMEEQAhQQYHEjEUIlFx/8QAFAEBAAAAAAAAAAAAAAAAAAAAA//EABkRAAIDAQAAAAAAAAAAAAAAAAECAAMiEv/aAAwDAQACEQMRAD8An+jLFKzFMLFhaUiu2ZKtdGeRcc++cjf+6WnqQXaLyS15xDADn6GUquRg+QCj1725OpftciFbqCNB8aMFWC7tvzozq7uH1DUt26tO0K8Sg+PgDlc/mSdAyaxGFi8AtP/Z", "url" : "https://preview.redd.it/gszxymejb8j61.jpg?width=640&crop=smart&auto=webp&s=e5d05631aec500c3a39e4c3b4014b418d60b972c", "width" : 640}, "score" : {"comments" : 51, "downs" : 0, "ratio" : 1, "ups" : 743, "value" : 743}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "First floor walls are up!I can\u2019t wait to start painting this... trying to be patient as I work on second floor", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/lqiewq/first_floor_walls_are_upi_cant_wait_to_start/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "variegation", "definition" : "The act of variegating or diversifying, or the state of being diversified, by different colors; diversity of colors."} | 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": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-121.953164, 38.347439], [-121.95305, 38.351803], [-121.924789, 38.351103], [-121.913925, 38.349775], [-121.908434, 38.346692], [-121.905022, 38.347493], [-121.900712, 38.346311], [-121.89695, 38.346578], [-121.896986, 38.337172], [-121.933925, 38.336864], [-121.934022, 38.343086], [-121.938128, 38.343358], [-121.943139, 38.344975], [-121.950342, 38.345044], [-121.953197, 38.346258], [-121.953164, 38.347439]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 10130}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"angular-ui-router.js": {"type": "string"}, "angular-ui-router.min.js": {"type": "string"}}, "required": ["angular-ui-router.js", "angular-ui-router.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-ui-router.js" : "sha512-lkRDnl9VJ6BkBkKk1b76bjOO6bgo4ea474vvsqsgNGeDJVCGACaLrE4pTks5SyVMgMMnYWepbHoRqokajGRirQ==", "angular-ui-router.min.js" : "sha512-yJweI9zKHA3GuzIgaubhwOB9RhX7oN7fq/P5tvt0Cw7FkNxRFUkNR8x8Wgw3itFBY1jss5jcQOFC0KBJSOUfcA=="} | json_instruct | {"type": "object", "properties": {"angular-ui-router.js": {"type": "string"}, "angular-ui-router.min.js": {"type": "string"}}, "required": ["angular-ui-router.js", "angular-ui-router.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"miq\u00b7\u0161\u0101h": {"type": "object", "properties": {"jer.10.5|1": {"type": "array", "items": {"type": "string"}}, "num.10.2|4": {"type": "array", "items": {"type": "string"}}, "num.8.4|3": {"type": "array", "items": {"type": "string"}}, "num.8.4|9": {"type": "array", "items": {"type": "string"}}, "exo.37.7|4": {"type": "array", "items": {"type": "string"}}, "exo.37.17|5": {"type": "array", "items": {"type": "string"}}, "exo.37.22|5": {"type": "array", "items": {"type": "string"}}, "exo.25.18|4": {"type": "array", "items": {"type": "string"}}, "exo.25.36|5": {"type": "array", "items": {"type": "string"}}, "exo.25.31|4": {"type": "array", "items": {"type": "string"}}}, "required": ["jer.10.5|1", "num.10.2|4", "num.8.4|3", "num.8.4|9", "exo.37.7|4", "exo.37.17|5", "exo.37.22|5", "exo.25.18|4", "exo.25.36|5", "exo.25.31|4"]}}, "required": ["miq\u00b7\u0161\u0101h"]}, "meanings": {"type": "object", "properties": {"hammer": {"type": "integer"}, "piece": {"type": "integer"}, "upright": {"type": "integer"}}, "required": ["hammer", "piece", "upright"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pos" : "n", "translits" : {"miq\u00b7\u0161\u0101h" : {"jer.10.5|1" : ["Like a palm tree\uff64", "upright", "they [are]"], "num.10.2|4" : ["silver.", "Of hammered work", "you shall make"], "num.8.4|3" : ["of the lampstand", "[was] hammered", "gold\uff64"], "num.8.4|9" : ["its flowers", "hammered work\u2013", "it [was]"], "exo.37.7|4" : ["of gold\uff64", "beaten of one piece", "he made"], "exo.37.17|5" : ["pure.", "Of hammered work", "he made"], "exo.37.22|5" : ["all of it [was]", "hammered piece", "one"], "exo.25.18|4" : ["of gold\uff64", "of hammered work", "you shall make"], "exo.25.36|5" : ["all of it [shall be]", "hammered piece", "one"], "exo.25.31|4" : ["pure", "of hammered work.", "Shall be"]}}, "meanings" : {"hammer" : 8, "piece" : 1, "upright" : 1}, "meaningsCount" : 3, "occurences" : 10} | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"miq\u00b7\u0161\u0101h": {"type": "object", "properties": {"jer.10.5|1": {"type": "array", "items": {"type": "string"}}, "num.10.2|4": {"type": "array", "items": {"type": "string"}}, "num.8.4|3": {"type": "array", "items": {"type": "string"}}, "num.8.4|9": {"type": "array", "items": {"type": "string"}}, "exo.37.7|4": {"type": "array", "items": {"type": "string"}}, "exo.37.17|5": {"type": "array", "items": {"type": "string"}}, "exo.37.22|5": {"type": "array", "items": {"type": "string"}}, "exo.25.18|4": {"type": "array", "items": {"type": "string"}}, "exo.25.36|5": {"type": "array", "items": {"type": "string"}}, "exo.25.31|4": {"type": "array", "items": {"type": "string"}}}, "required": ["jer.10.5|1", "num.10.2|4", "num.8.4|3", "num.8.4|9", "exo.37.7|4", "exo.37.17|5", "exo.37.22|5", "exo.25.18|4", "exo.25.36|5", "exo.25.31|4"]}}, "required": ["miq\u00b7\u0161\u0101h"]}, "meanings": {"type": "object", "properties": {"hammer": {"type": "integer"}, "piece": {"type": "integer"}, "upright": {"type": "integer"}}, "required": ["hammer", "piece", "upright"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$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"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Bosnia and Herzegovina - Conflict Data", "downloads" : 129, "tags" : ["hxl", "protests", "security incidents", "violence and conflict", "Bosnia And Herzegowina"], "hxl" : 1, "org" : "Armed Conflict Location & Event Data Project (ACLED)", "id" : "196a7dbd-124d-46d6-9996-e89edea33915", "resources" : [{"update_date" : "2021-02-03T00:35:24.518050", "link" : "https://data.humdata.org/dataset/196a7dbd-124d-46d6-9996-e89edea33915/resource/e88e117b-7560-4a1b-9049-fe6e4ecd6e1a/download/conflict_data_bih.csv"}, {"update_date" : "2021-02-03T00:35:24.518050", "link" : "https://data.humdata.org/dataset/196a7dbd-124d-46d6-9996-e89edea33915/resource/09c2d3b5-a9db-4044-a172-5b534ee74dae/download/qc_conflict_data_bih.csv"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date": {"type": "string"}, "link": {"type": "string"}}, "required": ["update_date", "link"]}}}, "required": ["title", "downloads", "tags", "hxl", "org", "id", "resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "4367761", "name" : "Nene Close", "nodes" : [{"type" : "node", "id" : 26622428, "lat" : 52.5819694, "lon" : -0.4160726}, {"type" : "node", "id" : 26622434, "lat" : 52.5822365, "lon" : -0.4151263}, {"type" : "node", "id" : 26622438, "lat" : 52.5825056, "lon" : -0.4150225}, {"type" : "node", "id" : 26622466, "lat" : 52.5822098, "lon" : -0.4171761}, {"type" : "node", "id" : 1252313058, "lat" : 52.5821695, "lon" : -0.4169027}, {"type" : "node", "id" : 1252313071, "lat" : 52.5821194, "lon" : -0.4167018}, {"type" : "node", "id" : 4559296131, "lat" : 52.5820348, "lon" : -0.4156148}, {"type" : "node", "id" : 5919014443, "lat" : 52.5825451, "lon" : -0.4149646}, {"type" : "node", "id" : 5919014444, "lat" : 52.5824489, "lon" : -0.4150611}, {"type" : "node", "id" : 5919014445, "lat" : 52.5822713, "lon" : -0.4150826}, {"type" : "node", "id" : 5919014446, "lat" : 52.5819828, "lon" : -0.4157692}, {"type" : "node", "id" : 5919014447, "lat" : 52.5819665, "lon" : -0.4159275}, {"type" : "node", "id" : 5919014448, "lat" : 52.5819926, "lon" : -0.4162359}, {"type" : "node", "id" : 5919014449, "lat" : 52.5820333, "lon" : -0.4164183}], "volunteer_postcode" : "PE8 6QF", "closest_distance" : 3298} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunteer_postcode": {"type": "string"}, "closest_distance": {"type": "integer"}}, "required": ["id", "name", "nodes", "volunteer_postcode", "closest_distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "author", "license", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "webhooks-queue-linter", "version" : "0.0.1", "description" : "Setup standard JS linter on repo root", "author" : "E-Com Club", "license" : "MIT", "private" : true, "devDependencies" : {"standard" : "*"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"standard": {"type": "string"}}, "required": ["standard"]}}, "required": ["name", "version", "description", "author", "license", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d39efdae36ada899fb7f88e7ffe5365b1056b4f1"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-timereg"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"description": {"type": "string"}, "samples": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}, "products": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "value", "products"]}}, "typeList": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "fullname": {"type": "string"}, "isLeaf": {"type": "boolean"}, "typeMap": {"type": "object", "properties": {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>": {"type": "integer"}}, "required": ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "typeList": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "description": {"type": "string"}, "since": {"type": "string"}, "filename": {"type": "string"}, "line": {"type": "integer"}, "lineEnd": {"type": "integer"}, "version": {"type": "string"}}, "required": ["name", "fullname", "isLeaf", "typeMap", "typeList", "description", "since", "filename", "line", "lineEnd", "version"]}}}, "required": ["description", "samples", "typeList", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "<p>An object defining mouse events for the plot line. Supported\nproperties are <code>click</code>, <code>mouseover</code>, <code>mouseout</code>, <code>mousemove</code>.</p>\n", "samples" : [{"name" : "Mouse events demonstrated", "value" : "highcharts/xaxis/plotlines-events/", "products" : ["highcharts"]}], "typeList" : {"names" : ["*"]}, "children" : [{"name" : "click", "fullname" : "yAxis.plotLines.events.click", "isLeaf" : true, "typeMap" : {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>" : 1}, "typeList" : {"names" : ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "description" : "<p>Click event on a plot band.</p>\n", "since" : "1.2.0", "filename" : "js/Core/Axis/PlotLineOrBand.js", "line" : 590, "lineEnd" : 595, "version" : "4772fd2e03"}, {"name" : "mousemove", "fullname" : "yAxis.plotLines.events.mousemove", "isLeaf" : true, "typeMap" : {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>" : 1}, "typeList" : {"names" : ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "description" : "<p>Mouse move event on a plot band.</p>\n", "since" : "1.2.0", "filename" : "js/Core/Axis/PlotLineOrBand.js", "line" : 596, "lineEnd" : 601, "version" : "4772fd2e03"}, {"name" : "mouseout", "fullname" : "yAxis.plotLines.events.mouseout", "isLeaf" : true, "typeMap" : {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>" : 1}, "typeList" : {"names" : ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "description" : "<p>Mouse out event on the corner of a plot band.</p>\n", "since" : "1.2.0", "filename" : "js/Core/Axis/PlotLineOrBand.js", "line" : 602, "lineEnd" : 607, "version" : "4772fd2e03"}, {"name" : "mouseover", "fullname" : "yAxis.plotLines.events.mouseover", "isLeaf" : true, "typeMap" : {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>" : 1}, "typeList" : {"names" : ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "description" : "<p>Mouse over event on a plot band.</p>\n", "since" : "1.2.0", "filename" : "js/Core/Axis/PlotLineOrBand.js", "line" : 608, "lineEnd" : 613, "version" : "4772fd2e03"}]} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "samples": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}, "products": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "value", "products"]}}, "typeList": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "fullname": {"type": "string"}, "isLeaf": {"type": "boolean"}, "typeMap": {"type": "object", "properties": {"Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>": {"type": "integer"}}, "required": ["Highcharts.EventCallbackFunction.<Highcharts.PlotLineOrBand>"]}, "typeList": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}}, "required": ["names"]}, "description": {"type": "string"}, "since": {"type": "string"}, "filename": {"type": "string"}, "line": {"type": "integer"}, "lineEnd": {"type": "integer"}, "version": {"type": "string"}}, "required": ["name", "fullname", "isLeaf", "typeMap", "typeList", "description", "since", "filename", "line", "lineEnd", "version"]}}}, "required": ["description", "samples", "typeList", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sentences" : [{"text" : {"content" : "Mixed Puppy 4 Months+ old Dewormed & Healthy Cute & Smart, Very Obedient & Know shake hands Adoption fee : Vaccination & others", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0.8, "score" : 0.8}}], "tokens" : [], "entities" : [{"name" : "Puppy", "type" : "OTHER", "metadata" : {}, "salience" : 0.5550959, "mentions" : [{"text" : {"content" : "Puppy", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "Adoption fee", "type" : "OTHER", "metadata" : {}, "salience" : 0.12684812, "mentions" : [{"text" : {"content" : "Adoption fee", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "Vaccination", "type" : "OTHER", "metadata" : {}, "salience" : 0.12684812, "mentions" : [{"text" : {"content" : "Vaccination", "beginOffset" : -1}, "type" : "COMMON"}]}, {"name" : "Very Obedient", "type" : "PERSON", "metadata" : {}, "salience" : 0.10080206, "mentions" : [{"text" : {"content" : "Very Obedient", "beginOffset" : -1}, "type" : "PROPER"}]}, {"name" : "others", "type" : "PERSON", "metadata" : {}, "salience" : 0.09040583, "mentions" : [{"text" : {"content" : "others", "beginOffset" : -1}, "type" : "COMMON"}]}], "documentSentiment" : {"magnitude" : 0.8, "score" : 0.8}, "language" : "en", "categories" : []} | json_instruct | {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}}, "required": ["text", "sentiment"]}}, "tokens": {"type": "array", "items": {}}, "entities": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "metadata": {"type": "object", "properties": {}, "required": []}, "salience": {"type": "number"}, "mentions": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "type": {"type": "string"}}, "required": ["text", "type"]}}}, "required": ["name", "type", "metadata", "salience", "mentions"]}}, "documentSentiment": {"type": "object", "properties": {"magnitude": {"type": "number"}, "score": {"type": "number"}}, "required": ["magnitude", "score"]}, "language": {"type": "string"}, "categories": {"type": "array", "items": {}}}, "required": ["sentences", "tokens", "entities", "documentSentiment", "language", "categories"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"next_topic_id": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "topic_vote": {"type": "object", "properties": {}, "required": []}, "next_comment_id": {"type": "integer"}, "comment": {"type": "object", "properties": {"2_1PniNzyi8fygvwyBaLpA9oBDVWZ5fXuJUw": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}, "3_16ruLucRLto6GhT1Zb3P8JVZzC48fxd9Cc": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}, "1_1E8KDakJCmMofVgTawocXc4pX9Fn3K3ob1": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}}, "required": ["2_1PniNzyi8fygvwyBaLpA9oBDVWZ5fXuJUw", "3_16ruLucRLto6GhT1Zb3P8JVZzC48fxd9Cc", "1_1E8KDakJCmMofVgTawocXc4pX9Fn3K3ob1"]}, "comment_vote": {"type": "object", "properties": {}, "required": []}}, "required": ["next_topic_id", "topic", "topic_vote", "next_comment_id", "comment", "comment_vote"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"next_topic_id" : 1, "topic" : [], "topic_vote" : {}, "next_comment_id" : 4, "comment" : {"2_1PniNzyi8fygvwyBaLpA9oBDVWZ5fXuJUw" : [{"comment_id" : 1, "body" : "> [zerobunker](#comment_134_168qV1Xxp2EyszrzdECLUwXrn9wGYjDdar): old chinese poverb says \"if you dont like it,then please suffer in silence\"\n\nBon App\u00e9tit\nhttp://www.mylot.com/post/905685/barbecued-babies", "added" : 1492526273}], "3_16ruLucRLto6GhT1Zb3P8JVZzC48fxd9Cc" : [{"comment_id" : 2, "body" : "Syrian children are very asked\nhttp://www.jewworldorder.org/jewish-human-organ-trade-in-turkey-stealing-syrian-children/\nhttp://whatsupic.com/news-politics-world/1462183659.html", "added" : 1492526810}], "1_1E8KDakJCmMofVgTawocXc4pX9Fn3K3ob1" : [{"comment_id" : 3, "body" : "https://hofflandia.wordpress.com/2011/06/01/the-jews-starts-all-major-wars/\nhttp://www.goodnewsaboutgod.com/studies/political/jews/hate_gentiles.htm", "added" : 1492526947}]}, "comment_vote" : {}} | json_instruct | {"type": "object", "properties": {"next_topic_id": {"type": "integer"}, "topic": {"type": "array", "items": {}}, "topic_vote": {"type": "object", "properties": {}, "required": []}, "next_comment_id": {"type": "integer"}, "comment": {"type": "object", "properties": {"2_1PniNzyi8fygvwyBaLpA9oBDVWZ5fXuJUw": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}, "3_16ruLucRLto6GhT1Zb3P8JVZzC48fxd9Cc": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}, "1_1E8KDakJCmMofVgTawocXc4pX9Fn3K3ob1": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "added": {"type": "integer"}}, "required": ["comment_id", "body", "added"]}}}, "required": ["2_1PniNzyi8fygvwyBaLpA9oBDVWZ5fXuJUw", "3_16ruLucRLto6GhT1Zb3P8JVZzC48fxd9Cc", "1_1E8KDakJCmMofVgTawocXc4pX9Fn3K3ob1"]}, "comment_vote": {"type": "object", "properties": {}, "required": []}}, "required": ["next_topic_id", "topic", "topic_vote", "next_comment_id", "comment", "comment_vote"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["520382201200", "\u65b0\u5c71\u6751\u59d4\u4f1a", "210", "0"], ["520382201201", "\u767d\u4e91\u6751\u59d4\u4f1a", "220", "0"], ["520382201202", "\u9647\u5c97\u6751\u59d4\u4f1a", "220", "0"], ["520382201203", "\u7530\u5174\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"overtrue/wechat": {"type": "string"}, "illuminate/database": {"type": "string"}, "catfan/Medoo": {"type": "string"}}, "required": ["overtrue/wechat", "illuminate/database", "catfan/Medoo"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"overtrue/wechat" : "~4.0", "illuminate/database" : "^5.5", "catfan/Medoo" : "^1.6"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"overtrue/wechat": {"type": "string"}, "illuminate/database": {"type": "string"}, "catfan/Medoo": {"type": "string"}}, "required": ["overtrue/wechat", "illuminate/database", "catfan/Medoo"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"5.0": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}, "4.27": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}, "4.26": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}}, "required": ["5.0", "4.27", "4.26"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"5.0" : {"Output" : "Dist/5.0"}, "4.27" : {"Output" : "Dist/4.27"}, "4.26" : {"Output" : "Dist/4.26"}} | json_instruct | {"type": "object", "properties": {"5.0": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}, "4.27": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}, "4.26": {"type": "object", "properties": {"Output": {"type": "string"}}, "required": ["Output"]}}, "required": ["5.0", "4.27", "4.26"], "$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"}, "types": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "umd:main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "scripts": {"type": "object", "properties": {"flush": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["flush", "test", "build"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "bundlesize": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-object-rest-spread": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@types/jest": {"type": "string"}, "babel-jest": {"type": "string"}, "bundlesize": {"type": "string"}, "del-cli": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "tsd": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-object-rest-spread", "@babel/preset-env", "@types/jest", "babel-jest", "bundlesize", "del-cli", "jest", "rollup", "rollup-plugin-babel", "rollup-plugin-terser", "tsd"]}}, "required": ["name", "version", "license", "types", "repository", "description", "main", "umd:main", "module", "jsnext:main", "scripts", "files", "keywords", "bundlesize", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "safely-iterate", "version" : "1.0.1", "license" : "MIT", "types" : "index.d.ts", "repository" : "whizkydee/safely-iterate", "description" : "Fail-safe optimized array iteration utilities for reactive environments.", "main" : "dist/index.cjs.js", "umd:main" : "dist/index.umd.js", "module" : "dist/index.esm.js", "jsnext:main" : "dist/index.esm.js", "scripts" : {"flush" : "del dist", "test" : "jest && tsd", "build" : "yarn flush && rollup -c && bundlesize"}, "files" : ["dist", "index.d.ts"], "keywords" : ["map", "array utilities", "map", "filter", "reducers", "array helpers", "forEach", "safe map"], "bundlesize" : [{"path" : "dist/index.*.js"}], "devDependencies" : {"@babel/core" : "^7.6.4", "@babel/plugin-proposal-object-rest-spread" : "^7.6.2", "@babel/preset-env" : "^7.6.3", "@types/jest" : "^25.2.1", "babel-jest" : "^24.9.0", "bundlesize" : "^0.18.0", "del-cli" : "^3.0.0", "jest" : "^24.9.0", "rollup" : "^1.25.2", "rollup-plugin-babel" : "^4.3.3", "rollup-plugin-terser" : "^5.1.2", "tsd" : "^0.11.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "umd:main": {"type": "string"}, "module": {"type": "string"}, "jsnext:main": {"type": "string"}, "scripts": {"type": "object", "properties": {"flush": {"type": "string"}, "test": {"type": "string"}, "build": {"type": "string"}}, "required": ["flush", "test", "build"]}, "files": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"type": "string"}}, "bundlesize": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-proposal-object-rest-spread": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@types/jest": {"type": "string"}, "babel-jest": {"type": "string"}, "bundlesize": {"type": "string"}, "del-cli": {"type": "string"}, "jest": {"type": "string"}, "rollup": {"type": "string"}, "rollup-plugin-babel": {"type": "string"}, "rollup-plugin-terser": {"type": "string"}, "tsd": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-proposal-object-rest-spread", "@babel/preset-env", "@types/jest", "babel-jest", "bundlesize", "del-cli", "jest", "rollup", "rollup-plugin-babel", "rollup-plugin-terser", "tsd"]}}, "required": ["name", "version", "license", "types", "repository", "description", "main", "umd:main", "module", "jsnext:main", "scripts", "files", "keywords", "bundlesize", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 75014, "info" : {"name" : "Stuttgart University Centered", "description" : "Centers the whole content of the Stuttgart University's website.\r\n\r\nCurrently, the content is attached to the screen's left. This style centers the content block and sets a dark background around the content block.", "additionalInfo" : "The style currently applies to the general home page (www.uni-stuttgart.de) and to some other sites. If you want to have this style on more sites, simply click Edit Style and add add a new domain statement:\r\n\r\n@-moz-document domain(\"www.uni-stuttgart.de\"), domain(\"www.informatik.uni-stuttgart.de\"), domain(\"www.yoursite.uni-stuttgart.de\") {", "format" : "uso", "category" : "uni-stuttgart", "createdAt" : "2012-09-16T12:44:16.000Z", "updatedAt" : "2012-09-16T12:44:16.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 16219, "name" : "Yogu"}}, "stats" : {"installs" : {"total" : 35, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "75014-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"www.uni-stuttgart.de\"), domain(\"www.informatik.uni-stuttgart.de\") {\r\n html {\r\n background: #808080;\r\n }\r\n body {\r\n width: 1000px !important;\r\n margin-left: auto !important;\r\n margin-right: auto !important;\r\n position: relative !important;\r\n background: none !important;\r\n box-shadow: 0 0 10px black;\r\n } \r\n}"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Alex Gleason"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}}, "required": ["copyright"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mime": {"type": "string"}, "multer": {"type": "string"}, "mysql": {"type": "string"}, "vhost": {"type": "string"}, "body-parser": {"type": "string"}, "nodemailer": {"type": "string"}}, "required": ["ejs", "express", "express-session", "mime", "multer", "mysql", "vhost", "body-parser", "nodemailer"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"preinstall_DISABLED": {"type": "string"}}, "required": ["preinstall_DISABLED"]}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}}, "required": ["author", "name", "description", "version", "repository", "main", "keywords", "dependencies", "engines", "scripts", "readme", "readmeFilename"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"name" : "Howest"}, "name" : "cody", "description" : "Cody CMS", "version" : "3.3.22", "repository" : {"type" : "git", "url" : "http://github.com/jcoppieters/cody.git"}, "main" : "./index", "keywords" : ["cody", "cms", "howest"], "dependencies" : {"ejs" : "0.x", "express" : "4.x", "express-session" : "1.x", "mime" : "1.x", "multer" : "^0.1.4", "mysql" : "2.x", "vhost" : "2.x", "body-parser" : "^1.6.7", "nodemailer" : "^1.3.0"}, "engines" : {"node" : "*"}, "scripts" : {"preinstall_DISABLED" : "npm list forever -g || npm install forever -g"}, "readme" : "Cody CMS\n\nFor documentation see: \n- https://github.com/jcoppieters/cody and/or \n- http://www.cody-cms.org\n\nContact us at johan.coppieters@howest.be\n\nThe Cody team.\n", "readmeFilename" : "README.md"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties": {"ejs": {"type": "string"}, "express": {"type": "string"}, "express-session": {"type": "string"}, "mime": {"type": "string"}, "multer": {"type": "string"}, "mysql": {"type": "string"}, "vhost": {"type": "string"}, "body-parser": {"type": "string"}, "nodemailer": {"type": "string"}}, "required": ["ejs", "express", "express-session", "mime", "multer", "mysql", "vhost", "body-parser", "nodemailer"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "scripts": {"type": "object", "properties": {"preinstall_DISABLED": {"type": "string"}}, "required": ["preinstall_DISABLED"]}, "readme": {"type": "string"}, "readmeFilename": {"type": "string"}}, "required": ["author", "name", "description", "version", "repository", "main", "keywords", "dependencies", "engines", "scripts", "readme", "readmeFilename"], "$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" : "arfo:block/bop_fungal_field_oak_leaves"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"epoch": {"type": "array", "items": {"type": "integer"}}, "loss": {"type": "array", "items": {"type": "number"}}, "sec": {"type": "array", "items": {"type": "number"}}, "lr": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "er": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "val_er": {"type": "array", "items": {"type": "number"}}}, "required": ["epoch", "loss", "sec", "lr", "acc", "er", "val_loss", "val_acc", "val_er"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"epoch" : [0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9], "loss" : [2.258377960750035, 2.1810754911223453, 2.1302774359168275, 2.08488942666857, 2.041957988159489, 2.0186919972840656, 2.0144536558753137, 2.0103780704774836, 2.0063438247770136, 2.002208054446971], "sec" : [7.5988335609436035, 1.1288225650787354, 7.607855319976807, 1.173593282699585, 7.568741798400879, 1.1708202362060547, 7.524562358856201, 1.1535911560058594, 7.597339630126953, 1.17319655418396, 7.638640403747559, 1.1507525444030762, 7.592915773391724, 1.21250319480896, 7.569532871246338, 1.1483943462371826, 7.651162147521973, 1.1736838817596436, 7.537195682525635, 1.1689894199371338], "lr" : [0.0001, -1.0, 0.0001, -1.0, 0.0001, -1.0, 0.0001, -1.0, 0.0001, -1.0, 1e-05, -1.0, 1e-05, -1.0, 1e-05, -1.0, 1e-05, -1.0, 1e-05, -1.0], "acc" : [0.16258333333333333, 0.2698, 0.39858333333333335, 0.39805, 0.40905, 0.41783333333333333, 0.42223333333333335, 0.4229833333333333, 0.42475, 0.42695], "er" : [83.74166666666667, 73.02, 60.14166666666667, 60.195, 59.095, 58.21666666666667, 57.776666666666664, 57.701666666666675, 57.525000000000006, 57.30500000000001], "val_loss" : [2.208565398107601, 2.151020753232739, 2.1025708627097215, 2.0576905389375324, 2.0148458118680157, 2.0096286882328083, 2.0051391562329064, 2.0015285135824468, 1.9965517837789994, 1.9930700969092454], "val_acc" : [0.2205, 0.3708, 0.3876, 0.4107, 0.4197, 0.4274, 0.4308, 0.4284, 0.4329, 0.4329], "val_er" : [77.95, 62.92, 61.24000000000001, 58.92999999999999, 58.03, 57.26, 56.919999999999995, 57.16, 56.709999999999994, 56.709999999999994]} | json_instruct | {"type": "object", "properties": {"epoch": {"type": "array", "items": {"type": "integer"}}, "loss": {"type": "array", "items": {"type": "number"}}, "sec": {"type": "array", "items": {"type": "number"}}, "lr": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "er": {"type": "array", "items": {"type": "number"}}, "val_loss": {"type": "array", "items": {"type": "number"}}, "val_acc": {"type": "array", "items": {"type": "number"}}, "val_er": {"type": "array", "items": {"type": "number"}}}, "required": ["epoch", "loss", "sec", "lr", "acc", "er", "val_loss", "val_acc", "val_er"], "$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.