input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state"]}, "country": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["US Census", "country", "state", "county"]}, "license": {"type": "string"}, "type": {"type": "string"}, "compression": {"type": "string"}, "note": {"type": "string"}, "year": {"type": "string"}, "data": {"type": "string"}, "website": {"type": "string"}}, "required": ["coverage", "license", "type", "compression", "note", "year", "data", "website"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"coverage" : {"US Census" : {"geoid" : "53045", "name" : "Mason County", "state" : "Washington"}, "country" : "us", "state" : "wa", "county" : "Mason"}, "license" : "http://www.co.mason.wa.us/gis/disclaimer.php", "type" : "ESRI", "compression" : "zip", "note" : "point shapefile Site_Address.shp, address columns: ADDRESS, ZIP_CD", "year" : "2014", "data" : "http://www.arcgis.com/home/item.html?id=986434ffd63b4c7ba618953d5e049ae9", "website" : "http://www.co.mason.wa.us/gis/"} | json_instruct | {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state"]}, "country": {"type": "string"}, "state": {"type": "string"}, "county": {"type": "string"}}, "required": ["US Census", "country", "state", "county"]}, "license": {"type": "string"}, "type": {"type": "string"}, "compression": {"type": "string"}, "note": {"type": "string"}, "year": {"type": "string"}, "data": {"type": "string"}, "website": {"type": "string"}}, "required": ["coverage", "license", "type", "compression", "note", "year", "data", "website"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "sourceMap": {"type": "boolean"}, "emitDecoratorMetadata": {"type": "boolean"}, "experimentalDecorators": {"type": "boolean"}, "moduleResolution": {"type": "string"}, "removeComments": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "suppressImplicitAnyIndexErrors": {"type": "boolean"}}, "required": ["module", "target", "declaration", "rootDir", "outDir", "sourceMap", "emitDecoratorMetadata", "experimentalDecorators", "moduleResolution", "removeComments", "noImplicitAny", "suppressImplicitAnyIndexErrors"]}, "exclude": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "exclude", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"compilerOptions" : {"module" : "commonjs", "target" : "es5", "declaration" : true, "rootDir" : "./src/my-date-picker", "outDir" : "./dist", "sourceMap" : true, "emitDecoratorMetadata" : true, "experimentalDecorators" : true, "moduleResolution" : "node", "removeComments" : true, "noImplicitAny" : true, "suppressImplicitAnyIndexErrors" : true}, "exclude" : ["node_modules", "npmdist", "dist"], "files" : ["./src/my-date-picker/directives/*.ts", "./src/my-date-picker/services/*.ts", "./src/my-date-picker/interfaces/*.ts", "./src/my-date-picker/index.ts", "./src/my-date-picker/my-date-picker.component.ts", "./src/my-date-picker/my-date-picker.module.ts"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "sourceMap": {"type": "boolean"}, "emitDecoratorMetadata": {"type": "boolean"}, "experimentalDecorators": {"type": "boolean"}, "moduleResolution": {"type": "string"}, "removeComments": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "suppressImplicitAnyIndexErrors": {"type": "boolean"}}, "required": ["module", "target", "declaration", "rootDir", "outDir", "sourceMap", "emitDecoratorMetadata", "experimentalDecorators", "moduleResolution", "removeComments", "noImplicitAny", "suppressImplicitAnyIndexErrors"]}, "exclude": {"type": "array", "items": {"type": "string"}}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["compilerOptions", "exclude", "files"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Shidler", "state_name" : "Oklahoma", "state_abbrv" : "OK", "lat" : "36.7819", "long" : "-96.6607"} | json_instruct | {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "ARESU", "frequency" : 0, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}}, "required": ["sideEffects", "main", "module", "typings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sideEffects" : false, "main" : "../../cjs/viz/vector_map.js", "module" : "../../esm/viz/vector_map.js", "typings" : "../vector_map.d.ts"} | json_instruct | {"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}}, "required": ["sideEffects", "main", "module", "typings"], "$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": "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"]}, "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", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 35053, "info" : {"name" : "MM Poznan Admin", "description" : "Zmiana stylu tabeli admina MM Pozna\u0144", "additionalInfo" : null, "format" : "uso", "category" : "mmpoznan", "createdAt" : "2010-07-29T09:35:12.000Z", "updatedAt" : "2013-01-24T02:18:39.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 58031, "name" : "sebluc"}}, "stats" : {"installs" : {"total" : 71, "weekly" : 0}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document url(\"http://www.mmpoznan.pl/admin/\") {\r\ntable#content_tbl {\r\n width: 700px !important;\r\n height: 500px !important;\r\n}\r\n\r\n#content_ifr {\r\n height: 500px !important;\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"]}, "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", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/lodash": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@types/express", "@types/lodash", "nodemon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "knex": {"type": "string"}, "lodash": {"type": "string"}, "node-fetch": {"type": "string"}, "pg": {"type": "string"}, "redis": {"type": "string"}, "typescript": {"type": "string"}, "zipkin": {"type": "string"}, "zipkin-context-cls": {"type": "string"}, "zipkin-instrumentation-express": {"type": "string"}, "zipkin-instrumentation-fetch": {"type": "string"}, "zipkin-instrumentation-postgres": {"type": "string"}, "zipkin-instrumentation-redis": {"type": "string"}, "zipkin-transport-http": {"type": "string"}}, "required": ["express", "knex", "lodash", "node-fetch", "pg", "redis", "typescript", "zipkin", "zipkin-context-cls", "zipkin-instrumentation-express", "zipkin-instrumentation-fetch", "zipkin-instrumentation-postgres", "zipkin-instrumentation-redis", "zipkin-transport-http"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "demo-services", "version" : "1.0.0", "description" : "", "main" : "server.ts", "scripts" : {"start" : "nodemon"}, "engines" : {"node" : "10.4.1", "npm" : "6.1.0"}, "author" : "", "license" : "ISC", "devDependencies" : {"@types/express" : "^4.16.0", "@types/lodash" : "^4.14.149", "nodemon" : "^1.18.3"}, "dependencies" : {"express" : "^4.16.3", "knex" : "^0.15.2", "lodash" : "^4.17.15", "node-fetch" : "^2.2.0", "pg" : "^7.4.3", "redis" : "^2.8.0", "typescript" : "^3.8.3", "zipkin" : "^0.14.1", "zipkin-context-cls" : "^0.13.0", "zipkin-instrumentation-express" : "^0.14.1", "zipkin-instrumentation-fetch" : "^0.14.1", "zipkin-instrumentation-postgres" : "^0.14.1", "zipkin-instrumentation-redis" : "^0.14.1", "zipkin-transport-http" : "^0.14.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "@types/lodash": {"type": "string"}, "nodemon": {"type": "string"}}, "required": ["@types/express", "@types/lodash", "nodemon"]}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "knex": {"type": "string"}, "lodash": {"type": "string"}, "node-fetch": {"type": "string"}, "pg": {"type": "string"}, "redis": {"type": "string"}, "typescript": {"type": "string"}, "zipkin": {"type": "string"}, "zipkin-context-cls": {"type": "string"}, "zipkin-instrumentation-express": {"type": "string"}, "zipkin-instrumentation-fetch": {"type": "string"}, "zipkin-instrumentation-postgres": {"type": "string"}, "zipkin-instrumentation-redis": {"type": "string"}, "zipkin-transport-http": {"type": "string"}}, "required": ["express", "knex", "lodash", "node-fetch", "pg", "redis", "typescript", "zipkin", "zipkin-context-cls", "zipkin-instrumentation-express", "zipkin-instrumentation-fetch", "zipkin-instrumentation-postgres", "zipkin-instrumentation-redis", "zipkin-transport-http"]}}, "required": ["name", "version", "description", "main", "scripts", "engines", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ll": {"type": "array", "items": {"type": "string"}}, "uri": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["ll", "uri", "id", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ll" : ["39.25", "35.75"], "uri" : "http://pleiades.stoa.org/places/628949", "id" : "628949", "title" : "Cappadocia"} | json_instruct | {"type": "object", "properties": {"ll": {"type": "array", "items": {"type": "string"}}, "uri": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["ll", "uri", "id", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "sitemap_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "default_value": {"type": "string"}}, "required": ["selector", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "sitemap_urls", "selectors", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index_name" : "goteleport", "start_urls" : ["https://goteleport.com/docs/"], "stop_urls" : [], "sitemap_urls" : ["https://goteleport.com/sitemap.xml"], "selectors" : {"lvl0" : {"selector" : "", "default_value" : "Documentation"}, "lvl1" : "#__next h1", "lvl2" : "#__next h2", "lvl3" : "#__next h3", "lvl4" : "#__next h4", "lvl5" : "#__next h5", "text" : "#__next p, #__next li"}, "conversation_id" : ["1348066577"], "nb_hits" : 3641} | json_instruct | {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "sitemap_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "default_value": {"type": "string"}}, "required": ["selector", "default_value"]}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lvl5": {"type": "string"}, "text": {"type": "string"}}, "required": ["lvl0", "lvl1", "lvl2", "lvl3", "lvl4", "lvl5", "text"]}, "conversation_id": {"type": "array", "items": {"type": "string"}}, "nb_hits": {"type": "integer"}}, "required": ["index_name", "start_urls", "stop_urls", "sitemap_urls", "selectors", "conversation_id", "nb_hits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : 9104051012, "parent" : 9104051, "name" : "TIRASAI", "latitude" : null, "longitude" : null, "postal" : [], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "12goTestTask", "description" : "All Different Directions", "authors" : [{"name" : "Evgeny Putseiko", "email" : "panikac@gmail.com"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "^5.0"}, "autoload" : {"psr-4" : {"App\\" : "app\\"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": []}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"App\\": {"type": "string"}}, "required": ["App\\"]}}, "required": ["psr-4"]}}, "required": ["name", "description", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "371329110001", "text" : "\u5357\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110002", "text" : "\u897f\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110003", "text" : "\u5317\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110004", "text" : "\u4e1c\u5e97\u5934\u56de\u65cf\u5c45\u59d4\u4f1a"}, {"id" : "371329110204", "text" : "\u4e1c\u516b\u91cc\u5df7\u6751\u59d4\u4f1a"}, {"id" : "371329110205", "text" : "\u897f\u516b\u91cc\u5df7\u6751\u59d4\u4f1a"}, {"id" : "371329110208", "text" : "\u5434\u5bb6\u6708\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110209", "text" : "\u6cad\u4e1c\u6751\u59d4\u4f1a"}, {"id" : "371329110210", "text" : "\u4e8e\u5e84\u5b50\u6751\u59d4\u4f1a"}, {"id" : "371329110211", "text" : "\u9876\u5b50\u6751\u59d4\u4f1a"}, {"id" : "371329110212", "text" : "\u897f\u6c88\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "371329110213", "text" : "\u5927\u579b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110214", "text" : "\u5c0f\u579b\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110215", "text" : "\u4e1c\u6c88\u9a6c\u6751\u59d4\u4f1a"}, {"id" : "371329110225", "text" : "\u4ed3\u5de1\u4f1a\u6751\u59d4\u4f1a"}, {"id" : "371329110229", "text" : "\u4e1c\u5927\u4e8e\u79d1\u6751\u59d4\u4f1a"}, {"id" : "371329110230", "text" : "\u897f\u5927\u4e8e\u79d1\u6751\u59d4\u4f1a"}, {"id" : "371329110238", "text" : "\u5f20\u696e\u6797\u6751\u59d4\u4f1a"}, {"id" : "371329110239", "text" : "\u90c7\u696e\u6797\u6751\u59d4\u4f1a"}, {"id" : "371329110242", "text" : "\u8881\u95f5\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110243", "text" : "\u65b0\u5f20\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110244", "text" : "\u9f99\u5174\u6c6a\u6751\u6751\u59d4\u4f1a"}, {"id" : "371329110246", "text" : "\u4e01\u696e\u6797\u6751\u6751\u59d4\u4f1a"}, {"id" : "371329110247", "text" : "\u5b98\u5e84\u6751\u59d4\u4f1a"}, {"id" : "371329110248", "text" : "\u9648\u5de1\u4f1a\u6751\u6751\u59d4\u4f1a"}, {"id" : "371329110250", "text" : "\u6c38\u5b89\u793e\u533a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "371329110251", "text" : "\u63aa\u5e84\u793e\u533a\u6751\u6c11\u59d4\u5458\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Algorithms and matching lower bounds for approximately-convex optimization.", "fields" : ["convex function", "regular polygon", "conjecture", "existential quantification", "gradient descent"], "abstract" : "In recent years, a rapidly increasing number of applications in practice requires solving non-convex objectives, like training neural networks, learning graphical models, maximum likelihood estimation etc. Though simple heuristics such as gradient descent with very few modifications tend to work well, theoretical understanding is very weak. We consider possibly the most natural class of non-convex functions where one could hope to obtain provable guarantees: functions that are ``approximately convex'', i.e. functions $\\tf: \\Real^d \\to \\Real$ for which there exists a \\emph{convex function} $f$ such that for all $x$, $|\\tf(x) - f(x)| \\le \\errnoise$ for a fixed value $\\errnoise$. We then want to minimize $\\tf$, i.e. output a point $\\tx$ such that $\\tf(\\tx) \\le \\min_{x} \\tf(x) + \\err$. It is quite natural to conjecture that for fixed $\\err$, the problem gets harder for larger $\\errnoise$, however, the exact dependency of $\\err$ and $\\errnoise$ is not known. In this paper, we strengthen the known \\emph{information theoretic} lower bounds on the trade-off between $\\err$ and $\\errnoise$ substantially, and exhibit an algorithm that matches these lower bounds for a large class of convex bodies.", "citation" : "Citations (1)", "departments" : ["Princeton University", "Princeton University"], "authors" : ["Andrej Risteski.....http://dblp.org/pers/hd/r/Risteski:Andrej", "Yuanzhi Li.....http://dblp.org/pers/hd/l/Li:Yuanzhi"], "conf" : "nips", "year" : "2016", "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"saturn/hyperion": {"type": "string"}, "saturn/Session": {"type": "string"}, "saturn/image": {"type": "string"}}, "required": ["saturn/hyperion", "saturn/Session", "saturn/image"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"require" : {"saturn/hyperion" : "^1.0", "saturn/Session" : "^1.0", "saturn/image" : "^1.0"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"saturn/hyperion": {"type": "string"}, "saturn/Session": {"type": "string"}, "saturn/image": {"type": "string"}}, "required": ["saturn/hyperion", "saturn/Session", "saturn/image"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "Shivesh Prakash"}, {"author" : "Shailesh Bihari"}, {"author" : "Ubbo Wiersema"}], "doi" : "10.1186/1471-2466-14-41", "publication_date" : "2014-03-13", "id" : "EN116074", "url" : "https://pubmed.ncbi.nlm.nih.gov/24612935", "source" : "BMC pulmonary medicine", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "We describe a case of a 23-year-old known asthmatic who presented at 32 weeks gestation with life-threatening respiratory failure resembling acute severe asthma, requiring invasive ventilation which was extremely difficult. This was subsequently found to be due to a large tracheal LCH producing a ball-valve phenomenon and predominantly expiratory airflow limitation similar to acute asthma. The endotracheal tube was advanced past the lesion under bronchoscopic guidance, and urgent Caesarean section performed due to foetal distress. The tumour was subsequently debulked and the trachea stented, facilitated by bi-femoral veno-venous extra-corporeal membrane oxygenation with relatively low dose of heparin."} | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Similarity" : "0.987", "Title" : "Memory Retrieval Effects on Filler-Gap Procession", "Year" : 2007}, {"Similarity" : "0.979", "Title" : "The use of that in the Production and Comprehension of Object Relative Clauses", "Year" : 2003}, {"Similarity" : "0.976", "Title" : "Working Memory Constraints on Multiple Center-Embedding", "Year" : 2010}, {"Similarity" : "0.976", "Title" : "The Time Course of Verb Processing in Dutch Sentences", "Year" : 2004}, {"Similarity" : "0.974", "Title" : "A Pseudo-Deterministic Model of Human Language Processing", "Year" : 2011}, {"Similarity" : "0.972", "Title" : "Time is of the Essence Processing Temporal Connectives During Reading", "Year" : 2004}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$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" : "unmercied", "definition" : "Unmerciful; merciless. [Obs.] Drayton."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"category": {"type": "string"}, "comments": {"type": "null"}, "location": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["category", "comments", "location", "name", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "Photography", "comments" : null, "location" : "Chicago & Destination", "name" : "OkBritknee Photography", "url" : "http://www.okbritknee.com"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "comments": {"type": "null"}, "location": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["category", "comments", "location", "name", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "moduleCredit", "moduleCode", "attributes", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acadYear" : "2019/2020", "description" : "Today's Japan is one of the most highly developed consumer markets. For its people shopping has presumably become the most important leisure and social activity and companies try to attract customers with continuous product and sales innovations. The module investigates this intricate relationship between business and consumer, economics and society, by looking at various case studies, for each critically identifying and discussing patterns of consumption and marketing from a multidisciplinary perspective. These case studies may include department stores, vending machines, electronic gadgets, branded merchandise, food, gift giving, and fashion goods.", "title" : "Marketing and Consumer Culture in Japan", "department" : "Japanese Studies", "faculty" : "Arts and Social Science", "workload" : [2, 1, 0, 3, 4], "moduleCredit" : "4", "moduleCode" : "JS2225", "attributes" : {"su" : true}, "semesterData" : [{"semester" : 1, "timetable" : [{"classNo" : "D2", "startTime" : "1400", "endTime" : "1600", "weeks" : [3, 5, 7, 9, 11, 13], "venue" : "AS7-0102", "day" : "Thursday", "lessonType" : "Tutorial", "size" : 20}, {"classNo" : "E2", "startTime" : "1600", "endTime" : "1800", "weeks" : [4, 6, 8, 10, 12], "venue" : "AS3-0309", "day" : "Wednesday", "lessonType" : "Tutorial", "size" : 20}, {"classNo" : "1", "startTime" : "1000", "endTime" : "1200", "weeks" : [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13], "venue" : "UTSRC-GLR", "day" : "Thursday", "lessonType" : "Lecture", "size" : 80}, {"classNo" : "E1", "startTime" : "1400", "endTime" : "1600", "weeks" : [4, 6, 8, 10, 12], "venue" : "AS2-0413", "day" : "Wednesday", "lessonType" : "Tutorial", "size" : 20}, {"classNo" : "D1", "startTime" : "1200", "endTime" : "1400", "weeks" : [3, 5, 7, 9, 11, 13], "venue" : "AS4-0109", "day" : "Tuesday", "lessonType" : "Tutorial", "size" : 20}], "examDate" : "2019-11-29T01:00:00.000Z", "examDuration" : 120}]} | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "string"}, "attributes": {"type": "object", "properties": {"su": {"type": "boolean"}}, "required": ["su"]}, "semesterData": {"type": "array", "items": {"type": "object", "properties": {"semester": {"type": "integer"}, "timetable": {"type": "array", "items": {"type": "object", "properties": {"classNo": {"type": "string"}, "startTime": {"type": "string"}, "endTime": {"type": "string"}, "weeks": {"type": "array", "items": {"type": "integer"}}, "venue": {"type": "string"}, "day": {"type": "string"}, "lessonType": {"type": "string"}, "size": {"type": "integer"}}, "required": ["classNo", "startTime", "endTime", "weeks", "venue", "day", "lessonType", "size"]}}, "examDate": {"type": "string"}, "examDuration": {"type": "integer"}}, "required": ["semester", "timetable", "examDate", "examDuration"]}}}, "required": ["acadYear", "description", "title", "department", "faculty", "workload", "moduleCredit", "moduleCode", "attributes", "semesterData"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"staves" : [{"lines" : [[[2001, 881], [2291, 881]]]}, {"lines" : [[[535, 1257], [2908, 1257]], [[535, 1297], [2908, 1297]], [[535, 1300], [2908, 1300]]]}, {"lines" : [[[862, 1674], [1154, 1674]]]}, {"lines" : [[[2170, 1881], [2461, 1881]]]}]} | json_instruct | {"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string"}, "myIcpcId": {"type": "string"}, "appearances": {"type": "integer"}, "wins": {"type": "integer"}, "gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}, "regionalChampionships": {"type": "integer"}}, "required": ["fullName", "shortName", "region", "hashTag", "url", "myIcpcId", "appearances", "wins", "gold", "silver", "bronze", "regionalChampionships"]}, "team": {"type": "object", "properties": {"name": {"type": "string"}, "regionals": {"type": "array", "items": {"type": "string"}}, "openCupPlace": {"type": "integer"}, "openCupTimes": {"type": "integer"}}, "required": ["name", "regionals", "openCupPlace", "openCupTimes"]}, "coach": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"achievement": {"type": "string"}, "priority": {"type": "integer"}}, "required": ["achievement", "priority"]}}}, "required": ["name", "altNames", "tcRating", "cfRating", "achievements"]}, "contestants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfHandle": {"type": "string"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfHandle", "cfRating", "achievements"]}}}, "required": ["id", "university", "team", "coach", "contestants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 23, "university" : {"fullName" : "Fuzhou University", "shortName" : "Fuzhou U", "region" : "Asia", "hashTag" : "FuzhouU", "url" : "http://www.fzu.edu.cn", "myIcpcId" : "313615", "appearances" : 7, "wins" : 0, "gold" : 0, "silver" : 0, "bronze" : 0, "regionalChampionships" : 0}, "team" : {"name" : "_______", "regionals" : ["The 2016 ACM-ICPC Asia Beijing Regional Contest, 7th"], "openCupPlace" : 155, "openCupTimes" : 1}, "coach" : {"name" : "Yanggeng Fu", "altNames" : ["Fu Yanggeng"], "tcRating" : -1, "cfRating" : -1, "achievements" : [{"achievement" : "World Finals coach (2015)", "priority" : 1001}]}, "contestants" : [{"name" : "Xiaodong Guo", "altNames" : ["Guo Xiaodong"], "tcRating" : -1, "cfHandle" : "NUOUN", "cfRating" : 1944, "achievements" : []}, {"name" : "Peng Zou", "altNames" : ["Zou Peng"], "tcRating" : -1, "cfHandle" : "Y_UME", "cfRating" : 2430, "achievements" : []}, {"name" : "Yifan Zhuo", "altNames" : ["Zhuo Yifan", "zhuo yifan", "yifan zhuo"], "tcRating" : -1, "cfHandle" : "joyfun", "cfRating" : 2086, "achievements" : []}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string"}, "myIcpcId": {"type": "string"}, "appearances": {"type": "integer"}, "wins": {"type": "integer"}, "gold": {"type": "integer"}, "silver": {"type": "integer"}, "bronze": {"type": "integer"}, "regionalChampionships": {"type": "integer"}}, "required": ["fullName", "shortName", "region", "hashTag", "url", "myIcpcId", "appearances", "wins", "gold", "silver", "bronze", "regionalChampionships"]}, "team": {"type": "object", "properties": {"name": {"type": "string"}, "regionals": {"type": "array", "items": {"type": "string"}}, "openCupPlace": {"type": "integer"}, "openCupTimes": {"type": "integer"}}, "required": ["name", "regionals", "openCupPlace", "openCupTimes"]}, "coach": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {"type": "object", "properties": {"achievement": {"type": "string"}, "priority": {"type": "integer"}}, "required": ["achievement", "priority"]}}}, "required": ["name", "altNames", "tcRating", "cfRating", "achievements"]}, "contestants": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "altNames": {"type": "array", "items": {"type": "string"}}, "tcRating": {"type": "integer"}, "cfHandle": {"type": "string"}, "cfRating": {"type": "integer"}, "achievements": {"type": "array", "items": {}}}, "required": ["name", "altNames", "tcRating", "cfHandle", "cfRating", "achievements"]}}}, "required": ["id", "university", "team", "coach", "contestants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"resources": {"type": "object", "properties": {"virtualServers": {"type": "array", "items": {}}}, "required": ["virtualServers"]}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resources" : {"virtualServers" : []}} | json_instruct | {"type": "object", "properties": {"resources": {"type": "object", "properties": {"virtualServers": {"type": "array", "items": {}}}, "required": ["virtualServers"]}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"sn56.74:0.1": {"type": "string"}, "sn56.74:0.2": {"type": "string"}, "sn56.74:0.3": {"type": "string"}, "sn56.74:1.1": {"type": "string"}}, "required": ["sn56.74:0.1", "sn56.74:0.2", "sn56.74:0.3", "sn56.74:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn56.74:0.1" : "Linked Discourses 56 ", "sn56.74:0.2" : "8. Abbreviated Texts on Raw Grain ", "sn56.74:0.3" : "74. Lying ", "sn56.74:1.1" : "\u201c\u2026 the sentient beings who refrain from lying are few, while those who don\u2019t refrain are many. \u2026\u201d "} | json_instruct | {"type": "object", "properties": {"sn56.74:0.1": {"type": "string"}, "sn56.74:0.2": {"type": "string"}, "sn56.74:0.3": {"type": "string"}, "sn56.74:1.1": {"type": "string"}}, "required": ["sn56.74:0.1", "sn56.74:0.2", "sn56.74:0.3", "sn56.74:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MRRm_new" : 0.11440195830716257, "MRm_new" : 1113.7503098888396, "HITS@1m_new" : 0.06479297432745225, "HITS@3m_new" : 0.11670235202658805, "HITS@10m_new" : 0.21232253588938038} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "blockus:block/bamboo_stairs"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sagar Dagdu": {"type": "string"}}, "required": ["Sagar Dagdu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"FMDB/SQLCipher": {"type": "array", "items": {}}}, "required": ["FMDB/SQLCipher"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "swift_version", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SDDatabase", "version" : "1.0.0", "summary" : "A simple yet powerful wrapper over the famous FMDB.", "homepage" : "https://github.com/SagarSDagdu/SDDatabase", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sagar Dagdu" : "shags032@gmail.com"}, "source" : {"git" : "https://github.com/SagarSDagdu/SDDatabase.git", "tag" : "1.0.0"}, "platforms" : {"ios" : "8.0"}, "swift_version" : "4.2", "source_files" : "SDDatabase/Classes/**/*", "dependencies" : {"FMDB/SQLCipher" : []}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "properties": {"Sagar Dagdu": {"type": "string"}}, "required": ["Sagar Dagdu"]}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "swift_version": {"type": "string"}, "source_files": {"type": "string"}, "dependencies": {"type": "object", "properties": {"FMDB/SQLCipher": {"type": "array", "items": {}}}, "required": ["FMDB/SQLCipher"]}}, "required": ["name", "version", "summary", "homepage", "license", "authors", "source", "platforms", "swift_version", "source_files", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"sikera": {"type": "object", "properties": {"luk.1.15|9": {"type": "array", "items": {"type": "string"}}}, "required": ["luk.1.15|9"]}}, "required": ["sikera"]}, "meanings": {"type": "object", "properties": {"strong": {"type": "integer"}}, "required": ["strong"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"pos" : "n", "translits" : {"sikera" : {"luk.1.15|9" : ["and", "strong drink", "no"]}}, "meanings" : {"strong" : 1}, "meaningsCount" : 1, "occurences" : 1} | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"sikera": {"type": "object", "properties": {"luk.1.15|9": {"type": "array", "items": {"type": "string"}}}, "required": ["luk.1.15|9"]}}, "required": ["sikera"]}, "meanings": {"type": "object", "properties": {"strong": {"type": "integer"}}, "required": ["strong"]}, "meaningsCount": {"type": "integer"}, "occurences": {"type": "integer"}}, "required": ["pos", "translits", "meanings", "meaningsCount", "occurences"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "null"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "null"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "null"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "18065729", "tms:id" : "85", "accession_number" : "1931-66-148", "title" : "Cameo", "url" : "http://collection.cooperhewitt.org/objects/18065729/", "department_id" : "35347497", "period_id" : null, "media_id" : "35389407", "type_id" : "35237143", "date" : null, "year_start" : null, "year_end" : null, "year_acquired" : "1931", "decade" : null, "woe:country" : null, "medium" : "Glass, gold", "markings" : null, "signed" : null, "inscribed" : null, "provenance" : null, "dimensions" : "Overall: 2.4 x 2 cm (15/16 x 13/16 in.)", "creditline" : "Gift of Sarah Cooper Hewitt", "description" : null, "justification" : null, "type" : {"id" : "35237143", "name" : "Cameo"}, "images" : [], "participants" : [], "tombstone" : {"epitaph" : "Cameo.\nGlass, gold. Gift of Sarah Cooper Hewitt. 1931-66-148."}, "colors" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "null"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "null"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "null"}, "provenance": {"type": "null"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "null"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200842677770000, "key" : "0c27162f-df53-535e-9f9e-297842602694{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"trim\":false,\"toFormat\":\"png\",\"toFormatBase64\":\"\",\"width\":20,\"height\":6}", "val" : {"src" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAGCAYAAADDl76dAAAACXBIWXMAAAsSAAALEgHS3X78AAABC0lEQVQY02VRy04CQRDc72AfXJzZL+RA1IiPGBKQAxejGAMqMTGyrCwgP8HVJyC70X+Qy5TT8yC78dCp6e6amq4eZ5WEv+k4xHocinSiEIRfCVdhc8PZhuWs7V2JqxHfOLZAzY8hg0aObKIvUf89YviMOZYjXqhlxYeVqCMTQY2XRyY6ey7uT33cHHloV0qImgGu9l1cynpH4ry/g4tdF92ah+6hh/NqSYUcQJiJxVbwdcBET5KiRoCHuq+ESax/4mPaLmN4FuBtwHB37OH6wEXcKquHb2W+eOJqOiWYt7yI9U4kAT8zbfn7WVu0lilPDYfO2ZT6ZNtYLnxKbul2NzbSXP0/x3xKEm7+AJg7OcFckHqxAAAAAElFTkSuQmCC", "width" : 20, "height" : 6, "aspectRatio" : 3.3333333333333335, "originalName" : "donate-button.png"}} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "width", "height", "aspectRatio", "originalName"]}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01003503": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01003503"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Topology", "objects" : {"E01003503" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00017684", "LAD11CD" : "E09000025"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00017710", "LAD11CD" : "E09000025"}, "arcs" : [[5, 6]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00017713", "LAD11CD" : "E09000025"}, "arcs" : [[7, -6, 8, -1]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00017717", "LAD11CD" : "E09000025"}, "arcs" : [[9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00175051", "LAD11CD" : "E09000025"}, "arcs" : [[11, -3, 12, -10, 13]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00175057", "LAD11CD" : "E09000025"}, "arcs" : [[14, -4, -12]]}]}}, "arcs" : [[[5726, 9145], [-447, -857], [-890, 268], [9, -2499]], [[4398, 6057], [19, -727]], [[4417, 5330], [-1540, -1168]], [[2877, 4162], [-29, 1480]], [[2848, 5642], [180, -365], [432, 835], [645, -22], [-528, 392], [99, 2734], [1021, 407], [-318, -389], [1347, -89]], [[7555, 7840], [-789, 1669]], [[6766, 9509], [29, 490], [1740, -115], [-15, -711], [1479, -1872], [-325, -1991], [-384, -336], [-1735, 2866]], [[5726, 9145], [322, -19], [718, 383]], [[7555, 7840], [-755, -679], [-439, 1037], [-1024, -299], [-415, -1621], [-524, -221]], [[6113, 2105], [-1597, 1496]], [[4516, 3601], [1208, -172], [2178, 1921], [-221, -1188], [620, 5], [491, -1057], [-1812, -680], [-867, -325]], [[1624, 4264], [1253, -102]], [[4417, 5330], [99, -1729]], [[6113, 2105], [-5569, -2105], [780, 416], [34, 1552], [-407, 1455], [-951, 1107], [1624, -266]], [[1624, 4264], [-396, 3454], [1560, -133], [60, -1943]]], "transform" : {"scale" : [9.511859185716572e-07, 4.805246494969587e-07], "translate" : [0.006408319700689, 51.51521919565971]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01003503": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01003503"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isoCode": {"type": "string"}, "countryCode": {"type": "string"}, "cities": {"type": "null"}}, "required": ["name", "isoCode", "countryCode", "cities"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "Alberta", "isoCode" : "CA-AB", "countryCode" : "CA", "cities" : null}, {"name" : "British Columbia", "isoCode" : "CA-BC", "countryCode" : "CA", "cities" : null}, {"name" : "Manitoba", "isoCode" : "CA-MB", "countryCode" : "CA", "cities" : null}, {"name" : "New Brunswick", "isoCode" : "CA-NB", "countryCode" : "CA", "cities" : null}, {"name" : "Newfoundland and Labrador", "isoCode" : "CA-NL", "countryCode" : "CA", "cities" : null}, {"name" : "Nova Scotia", "isoCode" : "CA-NS", "countryCode" : "CA", "cities" : null}, {"name" : "Ontario", "isoCode" : "CA-ON", "countryCode" : "CA", "cities" : null}, {"name" : "Prince Edward Island", "isoCode" : "CA-PE", "countryCode" : "CA", "cities" : null}, {"name" : "Quebec", "isoCode" : "CA-QC", "countryCode" : "CA", "cities" : null}, {"name" : "Saskatchewan", "isoCode" : "CA-SK", "countryCode" : "CA", "cities" : null}, {"name" : "Northwest Territories", "isoCode" : "CA-NT", "countryCode" : "CA", "cities" : null}, {"name" : "Nunavut", "isoCode" : "CA-NU", "countryCode" : "CA", "cities" : null}, {"name" : "Yukon", "isoCode" : "CA-YT", "countryCode" : "CA", "cities" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isoCode": {"type": "string"}, "countryCode": {"type": "string"}, "cities": {"type": "null"}}, "required": ["name", "isoCode", "countryCode", "cities"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"company": {"type": "string"}, "inkname": {"type": "string"}, "dominant": {"type": "object", "properties": {"rgb": {"type": "object", "properties": {"r": {"type": "integer"}, "g": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["r", "g", "b"]}, "hsl": {"type": "object", "properties": {"\u03b1": {"type": "number"}, "\u03b2": {"type": "number"}, "H": {"type": "number"}, "S": {"type": "number"}, "L": {"type": "number"}, "C": {"type": "number"}}, "required": ["\u03b1", "\u03b2", "H", "S", "L", "C"]}}, "required": ["rgb", "hsl"]}, "id": {"type": "string"}}, "required": ["company", "inkname", "dominant", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"company" : "Noodler's Ink", "inkname" : "Saguaro Wine", "dominant" : {"rgb" : {"r" : 103, "g" : 0, "b" : 77}, "hsl" : {"\u03b1" : 0.3583333333333333, "\u03b2" : -0.37046642273000985, "H" : 5.481140638953821, "S" : 2.867073351236838, "L" : 0.2861111111111111, "C" : 1.640603084318857}}, "id" : "6a6ad2f3b8e610fd4737cc1362f92376"} | json_instruct | {"type": "object", "properties": {"company": {"type": "string"}, "inkname": {"type": "string"}, "dominant": {"type": "object", "properties": {"rgb": {"type": "object", "properties": {"r": {"type": "integer"}, "g": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["r", "g", "b"]}, "hsl": {"type": "object", "properties": {"\u03b1": {"type": "number"}, "\u03b2": {"type": "number"}, "H": {"type": "number"}, "S": {"type": "number"}, "L": {"type": "number"}, "C": {"type": "number"}}, "required": ["\u03b1", "\u03b2", "H", "S", "L", "C"]}}, "required": ["rgb", "hsl"]}, "id": {"type": "string"}}, "required": ["company", "inkname", "dominant", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "supply ability": {"type": "string"}}, "required": ["<page title>", "fob price", "minorder quantity", "payment terms", "port", "supply ability"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"<page title>" : "Hot Sale!!!7inch Tft Monitor Cctv Sewer Pipe Inspection Camera With Dvr And Keyboard Tec-z710dk - Buy Sewer Pipe Inspection Camera,Cctv Pipe Inspection Camera,Inspection Camera With Dvr Product on Alibaba.com", "fob price" : "Get Latest Price", "minorder quantity" : "1 Set/Sets waterproof pipe inspection camera", "payment terms" : "T/T,Western Union,MoneyGram", "port" : "Shenzhen", "supply ability" : "1200 Set/Sets per Month waterproof pipe inspection camera"} | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "supply ability": {"type": "string"}}, "required": ["<page title>", "fob price", "minorder quantity", "payment terms", "port", "supply ability"], "$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"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "social_media_url": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "screenshots", "license", "authors", "social_media_url", "source", "source_files", "frameworks", "platforms", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ODMSwipeSelector", "version" : "0.0.2", "summary" : "A value selector with a swipe gesture.", "homepage" : "https://github.com/oscart/ODMSwipeSelector", "screenshots" : "https://s3.amazonaws.com/f.cl.ly/items/3b2v2V2j0y2E2z1l3V3a/Screen%20Recording%202014-12-31%20at%2010.55%20AM.gif", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : "Oscar De Moya", "social_media_url" : "http://twitter.com/odm", "source" : {"git" : "https://github.com/oscart/ODMSwipeSelector.git", "tag" : "0.0.2"}, "source_files" : ["ODMSwipeSelector", "ODMSwipeSelector/*.{h,m}"], "frameworks" : "UIKit", "platforms" : {"ios" : "8.1"}, "requires_arc" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "string"}, "social_media_url": {"type": "string"}, "source": {"type": "object", "properties": {"git": {"type": "string"}, "tag": {"type": "string"}}, "required": ["git", "tag"]}, "source_files": {"type": "array", "items": {"type": "string"}}, "frameworks": {"type": "string"}, "platforms": {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"]}, "requires_arc": {"type": "boolean"}}, "required": ["name", "version", "summary", "homepage", "screenshots", "license", "authors", "social_media_url", "source", "source_files", "frameworks", "platforms", "requires_arc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "string"}, "rating": {"type": "string"}, "timestamp": {"type": "integer"}, "title": {"type": "string"}}, "required": ["appId", "cpu", "gpu", "gpuDriver", "kernel", "notes", "os", "protonVersion", "ram", "rating", "timestamp", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"appId" : "49470", "cpu" : "Intel(R) Xeon(R) CPU X5687 @ 3.60GHz", "gpu" : "GeForce GTX 960/PCIe/SSE2", "gpuDriver" : "4.6.0 NVIDIA 396.54", "kernel" : "4.15.0-33-generic", "notes" : "Everything worked with out any issues. Tested campaign and deck building.", "os" : "Ubuntu 18.04.1 LTS (64 bit)", "protonVersion" : "Default", "ram" : "24098 Mb", "rating" : "Platinum", "timestamp" : 1536767385, "title" : "Magic: The Gathering - Duels of the Planeswalkers 2012"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "string"}, "rating": {"type": "string"}, "timestamp": {"type": "integer"}, "title": {"type": "string"}}, "required": ["appId", "cpu", "gpu", "gpuDriver", "kernel", "notes", "os", "protonVersion", "ram", "rating", "timestamp", "title"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Q5Y944": {"type": "string"}, "POLG_HAVCF": {"type": "string"}, "Genome polyprotein": {"type": "string"}}, "required": ["Q5Y944", "POLG_HAVCF", "Genome polyprotein"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Q5Y944" : "Q5Y944", "POLG_HAVCF" : "Q5Y944", "Genome polyprotein" : "Q5Y944"} | json_instruct | {"type": "object", "properties": {"Q5Y944": {"type": "string"}, "POLG_HAVCF": {"type": "string"}, "Genome polyprotein": {"type": "string"}}, "required": ["Q5Y944", "POLG_HAVCF", "Genome polyprotein"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"900758613": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900758614": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900758613", "900758614"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900758613" : {"nama" : "TPS 1", "dapil" : [8201, 18202, 2820702]}, "900758614" : {"nama" : "TPS 2", "dapil" : [8201, 18202, 2820702]}} | json_instruct | {"type": "object", "properties": {"900758613": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900758614": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900758613", "900758614"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"source" : "http://www.spanishdict.com/conjugate/exorcizar", "word" : "exorcizar", "infinitivo" : "exorcizar", "gerundio" : ["exorcizando"], "participio" : ["exorcizado"], "tenses" : {"3" : [["exorcizo"], ["exorcizas"], ["exorciza"], ["exorcizamos"], ["exorciz\u00e1is"], ["exorcizan"]], "4" : [["exorcic\u00e9"], ["exorcizaste"], ["exorciz\u00f3"], ["exorcizamos"], ["exorcizasteis"], ["exorcizaron"]], "5" : [["exorcizaba"], ["exorcizabas"], ["exorcizaba"], ["exorciz\u00e1bamos"], ["exorcizabais"], ["exorcizaban"]], "6" : [["exorcizar\u00eda"], ["exorcizar\u00edas"], ["exorcizar\u00eda"], ["exorcizar\u00edamos"], ["exorcizar\u00edais"], ["exorcizar\u00edan"]], "7" : [["exorcizar\u00e9"], ["exorcizar\u00e1s"], ["exorcizar\u00e1"], ["exorcizaremos"], ["exorcizar\u00e9is"], ["exorcizar\u00e1n"]], "8" : [["exorcice"], ["exorcices"], ["exorcice"], ["exorcicemos"], ["exorcic\u00e9is"], ["exorcicen"]], "9" : [["exorcizara"], ["exorcizaras"], ["exorcizara"], ["exorciz\u00e1ramos"], ["exorcizarais"], ["exorcizaran"]], "10" : [["exorcizase"], ["exorcizases"], ["exorcizase"], ["exorciz\u00e1semos"], ["exorcizaseis"], ["exorcizasen"]], "11" : [["exorcizare"], ["exorcizares"], ["exorcizare"], ["exorciz\u00e1remos"], ["exorcizareis"], ["exorcizaren"]], "12" : {"1" : ["exorciza"], "2" : ["exorcice"], "3" : ["exorcicemos"], "4" : ["exorcizad"], "5" : ["exorcicen"]}}} | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "4": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "5": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "6": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "7": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "8": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "9": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "10": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "11": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "12": {"type": "object", "properties": {"1": {"type": "array", "items": {"type": "string"}}, "2": {"type": "array", "items": {"type": "string"}}, "3": {"type": "array", "items": {"type": "string"}}, "4": {"type": "array", "items": {"type": "string"}}, "5": {"type": "array", "items": {"type": "string"}}}, "required": ["1", "2", "3", "4", "5"]}}, "required": ["3", "4", "5", "6", "7", "8", "9", "10", "11", "12"]}}, "required": ["source", "word", "infinitivo", "gerundio", "participio", "tenses"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u4e45\u8abc\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99635792", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07710006017317", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u5916\u57d4\u5340\u9435\u5c71\u91cc\u9577\u751f\u8def806\u865f", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u81fa\u4e2d\u5e02\u5916\u57d4\u5340\u9435\u5c71\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u9673\u4e16\u5f18", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "22710103", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "0770208", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "0771011", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["15\u7d19\u6f3f\u3001\u7d19\u53ca\u7d19\u88fd\u54c1\u88fd\u9020\u696d", "22\u5851\u81a0\u88fd\u54c1\u88fd\u9020\u696d", "25\u91d1\u5c6c\u88fd\u54c1\u88fd\u9020\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["159\u5176\u4ed6\u7d19\u88fd\u54c1", "220\u5851\u81a0\u88fd\u54c1", "259\u5176\u4ed6\u91d1\u5c6c\u88fd\u54c1"]} | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-8jxr-w97p-qwwv", "modified" : "2022-05-01T18:09:43Z", "published" : "2022-05-01T18:09:43Z", "aliases" : ["CVE-2007-3026"], "details" : "Integer overflow in Panda Software AdminSecure allows remote attackers to execute arbitrary code via crafted packets with modified length values to TCP ports 19226 or 19227, resulting in a heap-based buffer overflow.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-3026"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/35600"}, {"type" : "WEB", "url" : "http://osvdb.org/38614"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/26157"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/2917"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/474551/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/25046"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1018446"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2007/2641"}, {"type" : "WEB", "url" : "http://www.zerodayinitiative.com/advisories/ZDI-07-041.html"}], "database_specific" : {"cwe_ids" : [], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"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" : "5318010001", "district_id" : "5318010", "name" : "AEWOE"}, {"id" : "5318010002", "district_id" : "5318010", "name" : "BELA"}, {"id" : "5318010003", "district_id" : "5318010", "name" : "WOLOKISA"}, {"id" : "5318010004", "district_id" : "5318010", "name" : "WULIWALO"}, {"id" : "5318010005", "district_id" : "5318010", "name" : "MAUKELI"}, {"id" : "5318010006", "district_id" : "5318010", "name" : "LOKALABA"}, {"id" : "5318010007", "district_id" : "5318010", "name" : "WOLOTELU"}, {"id" : "5318010008", "district_id" : "5318010", "name" : "MAUPONGGO"}, {"id" : "5318010009", "district_id" : "5318010", "name" : "SAWU"}, {"id" : "5318010010", "district_id" : "5318010", "name" : "JAWAPOGO"}, {"id" : "5318010011", "district_id" : "5318010", "name" : "LAJAWAJO"}, {"id" : "5318010012", "district_id" : "5318010", "name" : "ULULOGA"}, {"id" : "5318010013", "district_id" : "5318010", "name" : "LODAOLO"}, {"id" : "5318010014", "district_id" : "5318010", "name" : "WOLOEDE"}, {"id" : "5318010015", "district_id" : "5318010", "name" : "WOEWOLO"}, {"id" : "5318010016", "district_id" : "5318010", "name" : "SELALEJO"}, {"id" : "5318010017", "district_id" : "5318010", "name" : "UA"}, {"id" : "5318010018", "district_id" : "5318010", "name" : "KELIWATULEWA"}, {"id" : "5318010019", "district_id" : "5318010", "name" : "KOTAGANA"}, {"id" : "5318010020", "district_id" : "5318010", "name" : "WOLOLELU"}, {"id" : "5318010021", "district_id" : "5318010", "name" : "SELALEJO TIMUR"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "cmd/gc: fix a typo", "cc" : ["golang-dev@googlegroups.com", "iant@golang.org"], "reviewers" : [], "messages" : [{"sender" : "cshapiro@golang.org", "recipients" : ["cshapiro@golang.org", "golang-dev@googlegroups.com", "reply@codereview-hr.appspotmail.com"], "text" : "Hello golang-dev@googlegroups.com,\n\nI'd like you to review this change to\nhttps://code.google.com/p/go/", "disapproval" : false, "date" : "2013-04-04 18:35:34.473700", "approval" : false}, {"sender" : "r@golang.org", "recipients" : ["cshapiro@golang.org", "golang-dev@googlegroups.com", "r@golang.org", "reply@codereview-hr.appspotmail.com"], "text" : "LGTM\nOMG", "disapproval" : false, "date" : "2013-04-04 18:39:49.722850", "approval" : true}, {"sender" : "iant@golang.org", "recipients" : ["cshapiro@golang.org", "golang-dev@googlegroups.com", "iant@golang.org", "reply@codereview-hr.appspotmail.com"], "text" : "LGTM", "disapproval" : false, "date" : "2013-04-04 18:39:49.926630", "approval" : true}, {"sender" : "cshapiro@golang.org", "recipients" : ["cshapiro@golang.org", "golang-dev@googlegroups.com", "iant@golang.org", "reply@codereview-hr.appspotmail.com"], "text" : "*** Submitted as https://code.google.com/p/go/source/detail?r=28403d782616 ***\n\ncmd/gc: fix a typo\n\nR=golang-dev, iant\nCC=golang-dev\nhttps://codereview.appspot.com/8379043", "disapproval" : false, "date" : "2013-04-04 18:42:05.082890", "approval" : false}], "owner_email" : "cshapiro@golang.org", "private" : false, "base_url" : "", "owner" : "cshapiro", "subject" : "code review 8379043: cmd/gc: fix a typo", "created" : "2013-04-04 18:35:07.845310", "patchsets" : [1, 2001, 5001, 11001], "modified" : "2013-04-04 18:42:06.129870", "closed" : true, "issue" : 8379043} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"published" : "2015-09-30T20:16:58Z", "media-type" : "Blog", "title" : "Open Post", "id" : "172d7435-86c4-4042-af14-90e204af64e3", "content" : "Open Post by DatzHott on September 30, 2015 in Hott Culture Leave a comment This is an open post, where you can discuss any subject matter. This post will not be censored or moderated. Disqus may automatically moderate certain words considered offensive. There are no rules in Open Posts. So enter at your own risk. Source:: Sandra Rose Related \u2190 Woman Who Posted Snapchat Selfie of Boyfriend Pointing Gun at Her Head Was Later Found Dead Related News", "source" : "Datzhott"} | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "", "user" : "alexander-baumgarten", "url" : "https://api.github.com/repos/spack/spack/issues/19902", "updated_at" : "2020-11-13 20:14:38", "created_at" : "2020-11-13 19:32:20", "closed_at" : "2020-11-13 20:14:37", "state" : "closed", "title" : "Feature/r tximportdata", "number" : 19902, "milestone" : null, "labels" : ["new-package"], "id" : 742735851, "html_url" : "https://github.com/spack/spack/pull/19902", "assignees" : [], "comments" : 0} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": {"type": "null"}, "labels": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "html_url": {"type": "string"}, "assignees": {"type": "array", "items": {}}, "comments": {"type": "integer"}}, "required": ["body", "user", "url", "updated_at", "created_at", "closed_at", "state", "title", "number", "milestone", "labels", "id", "html_url", "assignees", "comments"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"firstOctave": {"type": "integer"}, "amplitudes": {"type": "array", "items": {"type": "integer"}}}, "required": ["firstOctave", "amplitudes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"firstOctave" : 0, "amplitudes" : [0, 0]} | json_instruct | {"type": "object", "properties": {"firstOctave": {"type": "integer"}, "amplitudes": {"type": "array", "items": {"type": "integer"}}}, "required": ["firstOctave", "amplitudes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "2001", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Nawang"}, {"id" : "2002", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Nawang Baru"}, {"id" : "2003", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Temuyat"}, {"id" : "2004", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Betaoh"}, {"id" : "2005", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Payau"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"title" : "Hit It Again", "yearf" : 2011.1052511416, "rscore" : 1.0316553384}, {"title" : "Don't Trust Me", "yearf" : 2009.0915525114, "rscore" : 1.2581219586}, {"title" : "Dont Trust Me", "yearf" : 2008.9577625571, "rscore" : 1.2581219586}, {"title" : "Deja Vu", "yearf" : 2010.5520547945, "rscore" : 1.0593785471}, {"title" : "Set You Free", "yearf" : 2012.1408675799, "rscore" : 1.6493248511}, {"title" : "Touchin On My", "yearf" : 2010.5136986301, "rscore" : 1.5662599437}, {"title" : "Double Vision", "yearf" : 2010.5915525114, "rscore" : 1.3914249421}, {"title" : "Starstrukk", "yearf" : 2009.7636986301, "rscore" : 1.5430748637}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"locked" : false, "starred" : false, "name" : "boat", "command" : "print('https://youtu.be/COQR9A8D4XQ')"} | json_instruct | {"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$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": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_10bjw9", "name" : "sFAMINE"}, "date" : {"day" : 1615334400, "full" : 1615364388, "month" : 1614556800, "week" : 1615075200}, "id" : "t3_m1sswv", "picture" : {"filesize" : 160224, "fullUrl" : "https://preview.redd.it/415zqtd5u5m61.jpg?width=3024&format=pjpg&auto=webp&s=272dc788cdf66bd3307d7558132d7c3faba6af58", "hash" : "5b371ef9a9", "height" : 853, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAQAAwDASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQb/xAAjEAACAgICAQQDAAAAAAAAAAABAgMEBREAMSEHEyJhcYGR/8QAFQEBAQAAAAAAAAAAAAAAAAAAAwT/xAAbEQEAAgMBAQAAAAAAAAAAAAABERIAAlEh4f/aAAwDAQACEQMRAD8AnqWPgmginyuRZSxDqqxsY2XWxv4/nhd/0/p5Gy9ipmDCjdoVQgH62ynX65QY7NYienHFFdbH20AUNYQOAeux4I/nHqC+5G7IonQudPE4ZT4HR5PttMtkeR8xi/hUTo5//9k=", "url" : "https://preview.redd.it/415zqtd5u5m61.jpg?width=640&crop=smart&auto=webp&s=098f32ef1927855722a766f5a12eb5076a0026d5", "width" : 640}, "score" : {"comments" : 21, "downs" : 0, "ratio" : 0.99, "ups" : 497, "value" : 497}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Blue Sci Fi Structure Terrain", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/m1sswv/blue_sci_fi_structure_terrain/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"movie_name": {"type": "string"}, "movie_rating": {"type": "number"}, "movie_links": {"type": "string"}, "movie_years": {"type": "integer"}, "movie_postion": {"type": "integer"}}, "required": ["movie_name", "movie_rating", "movie_links", "movie_years", "movie_postion"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"movie_name" : "Sholay", "movie_rating" : 8.1, "movie_links" : "https://www.imdb.com/title/tt0073707/", "movie_years" : 1975, "movie_postion" : 60} | json_instruct | {"type": "object", "properties": {"movie_name": {"type": "string"}, "movie_rating": {"type": "number"}, "movie_links": {"type": "string"}, "movie_years": {"type": "integer"}, "movie_postion": {"type": "integer"}}, "required": ["movie_name", "movie_rating", "movie_links", "movie_years", "movie_postion"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"public": {"type": "object", "properties": {"serverInstance": {"type": "integer"}, "node": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type": "integer"}, "maxContainersPerJob": {"type": "integer"}, "repo": {"type": "string"}}, "required": ["pollInterval", "concurrency", "timeout", "maxContainersPerJob", "repo"]}, "v8": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type": "integer"}, "repo": {"type": "string"}}, "required": ["pollInterval", "concurrency", "timeout", "repo"]}, "analyticsSettings": {"type": "object", "properties": {"Google Analytics": {"type": "object", "properties": {"trackingId": {"type": "string"}}, "required": ["trackingId"]}}, "required": ["Google Analytics"]}, "gittag": {"type": "string"}}, "required": ["serverInstance", "node", "v8", "analyticsSettings", "gittag"]}, "githubOauthClientId": {"type": "string"}, "githubOauthSecret": {"type": "string"}, "githubAuthorizedUsernames": {"type": "array", "items": {}}}, "required": ["public", "githubOauthClientId", "githubOauthSecret", "githubAuthorizedUsernames"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"public" : {"serverInstance" : 1, "node" : {"pollInterval" : 2000, "concurrency" : 10, "timeout" : 10000, "maxContainersPerJob" : 5, "repo" : "dockervhf/mononode"}, "v8" : {"pollInterval" : 2000, "concurrency" : 20, "timeout" : 10000, "repo" : "dockervhf/d8"}, "analyticsSettings" : {"Google Analytics" : {"trackingId" : "to-fill"}}, "gittag" : ""}, "githubOauthClientId" : "", "githubOauthSecret" : "", "githubAuthorizedUsernames" : []} | json_instruct | {"type": "object", "properties": {"public": {"type": "object", "properties": {"serverInstance": {"type": "integer"}, "node": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type": "integer"}, "maxContainersPerJob": {"type": "integer"}, "repo": {"type": "string"}}, "required": ["pollInterval", "concurrency", "timeout", "maxContainersPerJob", "repo"]}, "v8": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type": "integer"}, "repo": {"type": "string"}}, "required": ["pollInterval", "concurrency", "timeout", "repo"]}, "analyticsSettings": {"type": "object", "properties": {"Google Analytics": {"type": "object", "properties": {"trackingId": {"type": "string"}}, "required": ["trackingId"]}}, "required": ["Google Analytics"]}, "gittag": {"type": "string"}}, "required": ["serverInstance", "node", "v8", "analyticsSettings", "gittag"]}, "githubOauthClientId": {"type": "string"}, "githubOauthSecret": {"type": "string"}, "githubAuthorizedUsernames": {"type": "array", "items": {}}}, "required": ["public", "githubOauthClientId", "githubOauthSecret", "githubAuthorizedUsernames"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "embellishcraft:block/sandstone_large_bricks_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ml.get_filters": {"type": "object", "properties": {"documentation": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "stability": {"type": "string"}, "visibility": {"type": "string"}, "headers": {"type": "object", "properties": {"accept": {"type": "array", "items": {"type": "string"}}}, "required": ["accept"]}, "url": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "methods": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "methods"]}}}, "required": ["paths"]}, "params": {"type": "object", "properties": {"from": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "size": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["from", "size"]}}, "required": ["documentation", "stability", "visibility", "headers", "url", "params"]}}, "required": ["ml.get_filters"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ml.get_filters" : {"documentation" : {"url" : "https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-filter.html", "description" : "Retrieves filters."}, "stability" : "stable", "visibility" : "public", "headers" : {"accept" : ["application/json"]}, "url" : {"paths" : [{"path" : "/_ml/filters", "methods" : ["GET"]}, {"path" : "/_ml/filters/{filter_id}", "methods" : ["GET"], "parts" : {"filter_id" : {"type" : "string", "description" : "The ID of the filter to fetch"}}}]}, "params" : {"from" : {"type" : "int", "description" : "skips a number of filters"}, "size" : {"type" : "int", "description" : "specifies a max number of filters to get"}}}} | json_instruct | {"type": "object", "properties": {"ml.get_filters": {"type": "object", "properties": {"documentation": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "stability": {"type": "string"}, "visibility": {"type": "string"}, "headers": {"type": "object", "properties": {"accept": {"type": "array", "items": {"type": "string"}}}, "required": ["accept"]}, "url": {"type": "object", "properties": {"paths": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "methods": {"type": "array", "items": {"type": "string"}}}, "required": ["path", "methods"]}}}, "required": ["paths"]}, "params": {"type": "object", "properties": {"from": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "size": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["from", "size"]}}, "required": ["documentation", "stability", "visibility", "headers", "url", "params"]}}, "required": ["ml.get_filters"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ja332:0.1": {"type": "string"}, "ja332:0.2": {"type": "string"}, "ja332:0.3": {"type": "string"}, "ja332:0.4": {"type": "string"}, "ja332:1.1": {"type": "string"}, "ja332:1.2": {"type": "string"}, "ja332:1.3": {"type": "string"}, "ja332:1.4": {"type": "string"}, "ja332:2.1": {"type": "string"}, "ja332:2.2": {"type": "string"}, "ja332:2.3": {"type": "string"}, "ja332:2.4": {"type": "string"}, "ja332:3.1": {"type": "string"}, "ja332:3.2": {"type": "string"}, "ja332:3.3": {"type": "string"}, "ja332:3.4": {"type": "string"}, "ja332:4.1": {"type": "string"}, "ja332:4.2": {"type": "string"}, "ja332:4.3": {"type": "string"}, "ja332:4.4": {"type": "string"}, "ja332:5.1": {"type": "string"}}, "required": ["ja332:0.1", "ja332:0.2", "ja332:0.3", "ja332:0.4", "ja332:1.1", "ja332:1.2", "ja332:1.3", "ja332:1.4", "ja332:2.1", "ja332:2.2", "ja332:2.3", "ja332:2.4", "ja332:3.1", "ja332:3.2", "ja332:3.3", "ja332:3.4", "ja332:4.1", "ja332:4.2", "ja332:4.3", "ja332:4.4", "ja332:5.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ja332:0.1" : "J\u0101taka", "ja332:0.2" : "Catukkanip\u0101ta", "ja332:0.3" : "Kokilavagga", "ja332:0.4" : "2. Rathala\u1e6d\u1e6dhij\u0101taka", "ja332:1.1" : "\u201cApi hantv\u0101 hato br\u016bti,", "ja332:1.2" : "jetv\u0101 jitoti bh\u0101sati;", "ja332:1.3" : "Pubbamakkh\u0101yino r\u0101ja,", "ja332:1.4" : "a\u00f1\u00f1adatthu na saddahe.", "ja332:2.1" : "Tasm\u0101 pa\u1e47\u1e0ditaj\u0101tiyo,", "ja332:2.2" : "su\u1e47eyya itarassapi;", "ja332:2.3" : "Ubhinna\u1e41 vacana\u1e41 sutv\u0101,", "ja332:2.4" : "yath\u0101 dhammo tath\u0101 kare.", "ja332:3.1" : "Alaso gih\u012b k\u0101mabhog\u012b na s\u0101dhu,", "ja332:3.2" : "Asa\u00f1\u00f1ato pabbajito na s\u0101dhu;", "ja332:3.3" : "R\u0101j\u0101 na s\u0101dhu anisammak\u0101r\u012b,", "ja332:3.4" : "Yo pa\u1e47\u1e0dito kodhano ta\u1e41 na s\u0101dhu.", "ja332:4.1" : "Nisamma khattiyo kayir\u0101,", "ja332:4.2" : "n\u0101nisamma disampati;", "ja332:4.3" : "Nisammak\u0101rino r\u0101ja,", "ja332:4.4" : "yaso kitti ca va\u1e0d\u1e0dhat\u012b\u201dti.", "ja332:5.1" : "Rathala\u1e6d\u1e6dhij\u0101taka\u1e41 dutiya\u1e41."} | json_instruct | {"type": "object", "properties": {"ja332:0.1": {"type": "string"}, "ja332:0.2": {"type": "string"}, "ja332:0.3": {"type": "string"}, "ja332:0.4": {"type": "string"}, "ja332:1.1": {"type": "string"}, "ja332:1.2": {"type": "string"}, "ja332:1.3": {"type": "string"}, "ja332:1.4": {"type": "string"}, "ja332:2.1": {"type": "string"}, "ja332:2.2": {"type": "string"}, "ja332:2.3": {"type": "string"}, "ja332:2.4": {"type": "string"}, "ja332:3.1": {"type": "string"}, "ja332:3.2": {"type": "string"}, "ja332:3.3": {"type": "string"}, "ja332:3.4": {"type": "string"}, "ja332:4.1": {"type": "string"}, "ja332:4.2": {"type": "string"}, "ja332:4.3": {"type": "string"}, "ja332:4.4": {"type": "string"}, "ja332:5.1": {"type": "string"}}, "required": ["ja332:0.1", "ja332:0.2", "ja332:0.3", "ja332:0.4", "ja332:1.1", "ja332:1.2", "ja332:1.3", "ja332:1.4", "ja332:2.1", "ja332:2.2", "ja332:2.3", "ja332:2.4", "ja332:3.1", "ja332:3.2", "ja332:3.3", "ja332:3.4", "ja332:4.1", "ja332:4.2", "ja332:4.3", "ja332:4.4", "ja332:5.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"year" : 1968, "sex" : "F", "n" : 7, "prop" : 4.09e-06}, {"year" : 1969, "sex" : "F", "n" : 10, "prop" : 5.67e-06}, {"year" : 1970, "sex" : "F", "n" : 14, "prop" : 7.64e-06}, {"year" : 1972, "sex" : "F", "n" : 8, "prop" : 4.96e-06}, {"year" : 1973, "sex" : "F", "n" : 5, "prop" : 3.22e-06}, {"year" : 1974, "sex" : "F", "n" : 7, "prop" : 4.47e-06}, {"year" : 1975, "sex" : "F", "n" : 8, "prop" : 5.13e-06}, {"year" : 1980, "sex" : "F", "n" : 5, "prop" : 2.81e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["lint", "pretest", "test", "coverage"]}, "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"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}, "devDependencies": {"type": "object", "properties": {"coveralls": {"type": "string"}, "jest": {"type": "string"}, "semistandard": {"type": "string"}}, "required": ["coveralls", "jest", "semistandard"]}, "semistandard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}}, "required": ["env"]}}, "required": ["name", "description", "version", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "engines", "homepage", "dependencies", "devDependencies", "semistandard"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "gilp-util", "description" : "Utils for gilp.", "version" : "0.0.11", "main" : "lib/index.js", "scripts" : {"lint" : "semistandard", "pretest" : "npm run lint --scripts-prepend-node-path", "test" : "jest", "coverage" : "jest --coverage && cat ./tests/coverage/lcov.info | coveralls"}, "repository" : {"type" : "git", "url" : "https://github.com/sophilabs/gilp-util.git"}, "keywords" : ["gulp", "git", "hooks"], "author" : "Sophilabs", "license" : "MIT", "bugs" : {"url" : "https://github.com/sophilabs/gilp-util/issues"}, "engines" : {"node" : ">= 10.0"}, "homepage" : "https://github.com/sophilabs/gilp-util#readme", "dependencies" : {"yargs" : "16.0.3"}, "devDependencies" : {"coveralls" : "3.1.0", "jest" : "^26.5.3", "semistandard" : "*"}, "semistandard" : {"env" : ["jest"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}}, "required": ["lint", "pretest", "test", "coverage"]}, "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"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"yargs": {"type": "string"}}, "required": ["yargs"]}, "devDependencies": {"type": "object", "properties": {"coveralls": {"type": "string"}, "jest": {"type": "string"}, "semistandard": {"type": "string"}}, "required": ["coveralls", "jest", "semistandard"]}, "semistandard": {"type": "object", "properties": {"env": {"type": "array", "items": {"type": "string"}}}, "required": ["env"]}}, "required": ["name", "description", "version", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "engines", "homepage", "dependencies", "devDependencies", "semistandard"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 39581190, "name" : "Subterror Nemesis Archer", "is_illegal" : false, "is_custom" : false, "text" : "At the start of the Damage Step, if this card attacks an opponent's face-down Defense Position monster, and you control another \"Subterror\" monster: You can shuffle that opponent's monster into the Deck. If this card on the field is destroyed by battle or card effect and sent to the GY: You can Special Summon 1 \"Subterror\" monster from your Deck in face-up or face-down Defense Position. You can only use each effect of \"Subterror Nemesis Archer\" once per turn.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/39581190.jpg"], "type" : "Monster", "attribute" : "EARTH", "atk" : 1600, "species" : "Fairy", "monster_type" : "", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 1400, "level" : 3, "is_tuner" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["(", "Never", "gon", "na", "give", "up", "on", "you", ")"], ["(", "just", "a", "little", "bit", ")", "c'mon", ")"], ["Keep", "on", "comin", "'", "4", "more"], ["It", "'s", "that", "brown", "man", "from", "long", "islandin", "'", "shores"], ["Got", "a", "way", "with", "women", ",", "so", "I", "get", "away", "with", "yours"], ["Which", "leaves", "all", "the", "pretty", "women", "heavily", "sedated"], ["So", "I", "head", "out", "of", "state", "to", "find", "a", "couple", "of", "dimes"], ["But", "a", "government", "rate", "ca", "n't", "settle", "for", "no", "nickels"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": "string"}}, "required": ["quantity", "size"]}}, "required": ["web"]}, "addons": {"type": "array", "items": {"type": "string"}}, "stack": {"type": "string"}}, "required": ["name", "env", "formation", "addons", "stack"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "scaife-cts-api", "env" : {}, "formation" : {"web" : {"quantity" : 1, "size" : "hobby"}}, "addons" : ["logdna:quaco"], "stack" : "container"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": "string"}}, "required": ["quantity", "size"]}}, "required": ["web"]}, "addons": {"type": "array", "items": {"type": "string"}}, "stack": {"type": "string"}}, "required": ["name", "env", "formation", "addons", "stack"], "$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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-ejs": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-ejs"]}}, "required": ["name", "version", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "DMT_CSR_AN", "version" : "1.0.0", "private" : true, "scripts" : {}, "devDependencies" : {"browser-sync" : "^2.24.6", "gulp" : "^3.9.1", "gulp-ejs" : "^3.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-ejs": {"type": "string"}}, "required": ["browser-sync", "gulp", "gulp-ejs"]}}, "required": ["name", "version", "private", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cam/image_array" : "7122_cam-image_array_.jpg", "user/angle" : 0.986, "user/throttle" : 0.696, "user/mode" : "user", "pos/pos_x" : 83.50198, "pos/pos_y" : 0.5532885, "pos/pos_z" : -4.097638, "pos/speed" : 10.58221, "pos/cte" : -0.9271564, "milliseconds" : 380084} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": {"type": "number"}, "milliseconds": {"type": "integer"}}, "required": ["cam/image_array", "user/angle", "user/throttle", "user/mode", "pos/pos_x", "pos/pos_y", "pos/pos_z", "pos/speed", "pos/cte", "milliseconds"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-3f52-g2gw-29vq", "modified" : "2022-05-02T00:09:42Z", "published" : "2022-05-02T00:09:42Z", "aliases" : ["CVE-2008-4397"], "details" : "Directory traversal vulnerability in the RPC interface (asdbapi.dll) in CA ARCserve Backup (formerly BrightStor ARCserve Backup) r11.1 through r12.0 allows remote attackers to execute arbitrary commands via a .. (dot dot) in an RPC call with opnum 0x10A.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2008-4397"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/45774"}, {"type" : "WEB", "url" : "https://support.ca.com/irj/portal/anonymous/phpsupcontent?contentID=188143"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/32220"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/4412"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/497218"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/497281/100/0/threaded"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/31684"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1021032"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2008/2777"}], "database_specific" : {"cwe_ids" : ["CWE-22"], "severity" : "HIGH", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "array", "items": {"type": "string"}}, "asin": {"type": "string"}, "averageRating": {"type": "number"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "string"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"accountLinkingWhitelistedDomains" : ["google.com", "googleapis.com"], "asin" : "B01NAK87B2", "averageRating" : 3.2, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "Elderly people and others with difficulty using computers and tablets may prefer a voice interface to review email messages. This skill is designed to be similar to voice mail, but it can print. Full instructions are available online at http://email-skill.blogspot.com", "enablement" : null, "exampleInteractions" : ["Alexa open my email", "Alexa Ask my email to find messages from the last two weeks", "Alexa Ask my email to find all my starred messages"], "firstReleaseDate" : 1483165193.806, "homepageLinkText" : null, "homepageLinkUrl" : null, "id" : "amzn1.ask.skill.bed051c4-26ec-4a31-9656-20d282ab4d95", "imageAltText" : "my email icon", "imageUrl" : "https://github.com/dale3h/alexa-skills-list/raw/master/skills/B01NAK87B2/skill_icon", "inAppPurchasingSupported" : false, "launchPhrase" : "my email", "name" : "my email", "numberOfReviews" : 6, "pamsPartnerId" : "Nzr9KDgV4hHhVBmueo4tblCwS", "permissions" : null, "privacyPolicyUrl" : "http://email-skill.blogspot.com/p/privacy-policy.html", "shortDescription" : "Read, manage and print your GMail using your voice", "skillTypes" : null, "stage" : "live", "termsOfUseUrl" : null, "vendorId" : "M2WMXUF14L8GG7", "vendorName" : "R Onuschak"} | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "array", "items": {"type": "string"}}, "asin": {"type": "string"}, "averageRating": {"type": "number"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "enablement": {"type": "null"}, "exampleInteractions": {"type": "array", "items": {"type": "string"}}, "firstReleaseDate": {"type": "number"}, "homepageLinkText": {"type": "null"}, "homepageLinkUrl": {"type": "null"}, "id": {"type": "string"}, "imageAltText": {"type": "string"}, "imageUrl": {"type": "string"}, "inAppPurchasingSupported": {"type": "boolean"}, "launchPhrase": {"type": "string"}, "name": {"type": "string"}, "numberOfReviews": {"type": "integer"}, "pamsPartnerId": {"type": "string"}, "permissions": {"type": "null"}, "privacyPolicyUrl": {"type": "string"}, "shortDescription": {"type": "string"}, "skillTypes": {"type": "null"}, "stage": {"type": "string"}, "termsOfUseUrl": {"type": "null"}, "vendorId": {"type": "string"}, "vendorName": {"type": "string"}}, "required": ["accountLinkingWhitelistedDomains", "asin", "averageRating", "canDisable", "capabilities", "category", "description", "enablement", "exampleInteractions", "firstReleaseDate", "homepageLinkText", "homepageLinkUrl", "id", "imageAltText", "imageUrl", "inAppPurchasingSupported", "launchPhrase", "name", "numberOfReviews", "pamsPartnerId", "permissions", "privacyPolicyUrl", "shortDescription", "skillTypes", "stage", "termsOfUseUrl", "vendorId", "vendorName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900767431": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767432": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767433": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767434": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767435": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767436": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767437": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900767431", "900767432", "900767433", "900767434", "900767435", "900767436", "900767437"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900767431" : {"nama" : "TPS 1", "dapil" : [9101, 19106, 2910203]}, "900767432" : {"nama" : "TPS 2", "dapil" : [9101, 19106, 2910203]}, "900767433" : {"nama" : "TPS 3", "dapil" : [9101, 19106, 2910203]}, "900767434" : {"nama" : "TPS 4", "dapil" : [9101, 19106, 2910203]}, "900767435" : {"nama" : "TPS 5", "dapil" : [9101, 19106, 2910203]}, "900767436" : {"nama" : "TPS 6", "dapil" : [9101, 19106, 2910203]}, "900767437" : {"nama" : "TPS 7", "dapil" : [9101, 19106, 2910203]}} | json_instruct | {"type": "object", "properties": {"900767431": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767432": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767433": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767434": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767435": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767436": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767437": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900767431", "900767432", "900767433", "900767434", "900767435", "900767436", "900767437"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"results" : [{"tech" : 7, "pts" : 2, "connections" : 170, "capacity" : 14884, "investments" : 121272}, {"tech" : 1, "pts" : 452, "connections" : 176151, "capacity" : 19664124, "investments" : 142782652}, {"tech" : 4, "pts" : 1090, "connections" : 48158, "capacity" : 6014115, "investments" : 16736479}, {"tech" : 3, "pts" : 8, "connections" : 54, "capacity" : 10622, "investments" : 58424}, {"tech" : 2, "pts" : 366, "connections" : 2642, "capacity" : 330491, "investments" : 453588}]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pts", "connections", "capacity", "investments"]}}}, "required": ["results"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "Umbo", "definitions" : ["The central boss of a shield.", "A rounded knob or protuberance.", "The highest point of each valve of a bivalve shell.", "A central swelling on the cap of a mushroom or toadstool."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"actors" : ["European Union", "Group of 77"], "countries" : ["Saudi Arabia", "Australia", "Samoa", "United States", "Switzerland", "China", "Russian Federation", "Japan", "New Zealand"], "enb_end_date" : "14-Jun-00", "enb_long_title" : "TWELFTH SESSION OF THE SUBSIDIARY BODIES OF THE UNFCCC", "enb_short_title" : "SB-12", "enb_start_date" : "14-Jun-00", "enb_url" : "http://www.iisd.ca/vol12/enb12134e.html", "id" : "enb12134e_7", "section_title" : "JOINT WORKING GROUP ON COMPLIANCE", "sentences" : ["Many delegates supported the Co-Chairs' text as the basis for the JWG's work.", "The EU, US, SWITZERLAND and SAMOA said some elements in the Annexes might need to be included in the text.", "On the title, the US favored a reference to 'procedures and mechanisms related to compliance under the Kyoto Protocol,' since there are other provisions in the Protocol dealing with compliance.", "The EU preferred 'a compliance system for the Kyoto Protocol' in order to reflect a comprehensive approach to addressing compliance. On Objective, a number of delegates supported inclusion of 'enforcing' compliance.", "The G-77/CHINA favored simpler text referring to 'compliance with the Kyoto Protocol.", "' The RUSSIAN FEDERATION, opposed by the US, suggested referring to promoting achievement of the FCCC's ultimate objective.", "SAUDI ARABIA sought a reference to compliance with obligations contained in Protocol Articles 2 (P&Ms) and 3 (targets).", "AUSTRALIA suggested the compliance system focus on both Articles 3.1 and 4.1 (joint fulfillment).", "The EU favored a general reference to the Party's 'obligations under the Kyoto Protocol.", "' On Principles, AUSTRALIA, the RUSSIAN FEDERATION, the US, JAPAN and NEW ZEALAND preferred that these not be expressly provided for in the text."], "subtype" : "GROUPS", "topics" : [], "type" : "SBI/SBSTA"} | json_instruct | {"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"type": "string"}, "id": {"type": "string"}, "section_title": {"type": "string"}, "sentences": {"type": "array", "items": {"type": "string"}}, "subtype": {"type": "string"}, "topics": {"type": "array", "items": {}}, "type": {"type": "string"}}, "required": ["actors", "countries", "enb_end_date", "enb_long_title", "enb_short_title", "enb_start_date", "enb_url", "id", "section_title", "sentences", "subtype", "topics", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayName", "Username", "Level", "XP", "Developer"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Id" : 3314642243, "DisplayName" : "Dount", "Username" : "donut", "Level" : 1, "XP" : 0, "Developer" : false} | json_instruct | {"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayName", "Username", "Level", "XP", "Developer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Maul\u00e9vrier-Sainte-Gertrude", "circ" : "5\u00e8me circonscription", "dpt" : "Seine-Maritime", "inscrits" : 791, "abs" : 436, "votants" : 355, "blancs" : 12, "nuls" : 4, "exp" : 339, "res" : [{"nuance" : "SOC", "nom" : "M. Christophe BOUILLON", "voix" : 259}, {"nuance" : "LR", "nom" : "M. Jean DELALANDRE", "voix" : 80}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"package" : "sonicparanoid", "downloads" : 9400, "count" : 5973}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description", "keywords", "website", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Totsuka PS Bot", "description" : "Bot for Totsuka Poker School", "keywords" : ["totsuka", "go", "poker", "totsukaps"], "website" : "https://github.com/totsukapoker/totsuka-ps-bot", "repository" : "https://github.com/totsukapoker/totsuka-ps-bot"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description", "keywords", "website", "repository"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "jshintConfig": {"type": "object", "properties": {"esversion": {"type": "integer"}, "strict": {"type": "boolean"}}, "required": ["esversion", "strict"]}, "dependencies": {"type": "object", "properties": {"node-gtk": {"type": "string"}, "chalk": {"type": "string"}, "onoff": {"type": "string"}}, "required": ["node-gtk", "chalk", "onoff"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "jshintConfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "rgb", "version" : "0.0.1", "description" : "simple example for controlling the balenaFin RGB LED", "main" : "index.js", "scripts" : {"start" : "node index.js"}, "author" : "Carlo Maria Curinga <carlo@balena.io>", "license" : "Apache-2.0", "jshintConfig" : {"esversion" : 6, "strict" : true}, "dependencies" : {"node-gtk" : "^0.3.0", "chalk" : "~2.4.2", "onoff" : "~4.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "jshintConfig": {"type": "object", "properties": {"esversion": {"type": "integer"}, "strict": {"type": "boolean"}}, "required": ["esversion", "strict"]}, "dependencies": {"type": "object", "properties": {"node-gtk": {"type": "string"}, "chalk": {"type": "string"}, "onoff": {"type": "string"}}, "required": ["node-gtk", "chalk", "onoff"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "jshintConfig", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : "zulu", "filename" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi", "release_type" : "ga", "version" : "8.48.0.51", "java_version" : "8.0.262", "jvm_impl" : "hotspot", "os" : "windows", "architecture" : "i686", "file_type" : "msi", "image_type" : "jre", "features" : [], "url" : "https://static.azul.com/zulu/bin/zulu8.48.0.51-ca-jre8.0.262-win_i686.msi", "md5" : "23f12a7c9ffc3d0d8c24ac8ef2e85f5f", "md5_file" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi.md5", "sha1" : "eb12469c934075fff7f196db7163dac32030b764", "sha1_file" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi.sha1", "sha256" : "d6a0b79df8867dfdc414a9bd7b3da25bacae22ce72da0b40cc81894401351fe0", "sha256_file" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi.sha256", "sha512" : "c763beadb220c0d92d7513844c055be69fee1efae0e3846f72a5657a48a584e00bf91cea3835b8adf36c9d74dc178f4f68f8b2f3a8f321458464dda964a8e1b5", "sha512_file" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi.sha512", "size" : 31920128} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "string"}, "image_type": {"type": "string"}, "features": {"type": "array", "items": {}}, "url": {"type": "string"}, "md5": {"type": "string"}, "md5_file": {"type": "string"}, "sha1": {"type": "string"}, "sha1_file": {"type": "string"}, "sha256": {"type": "string"}, "sha256_file": {"type": "string"}, "sha512": {"type": "string"}, "sha512_file": {"type": "string"}, "size": {"type": "integer"}}, "required": ["vendor", "filename", "release_type", "version", "java_version", "jvm_impl", "os", "architecture", "file_type", "image_type", "features", "url", "md5", "md5_file", "sha1", "sha1_file", "sha256", "sha256_file", "sha512", "sha512_file", "size"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"deny": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["categories", "blocks"]}}, "required": ["deny"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"deny" : {"categories" : ["Sound", "Pen (Experimental)", "Radio (Experimental)", "Control", "Math", "Text", "Lists", "Variables"], "blocks" : ["move_tank", "move_steering", "stop", "run_motor", "stop_motor", "speed", "position", "reset_motor", "color_sensor", "ultrasonic_sensor", "gyro_sensor", "reset_gyro", "gps_sensor", "touch_state", "wait_for_state"]}} | json_instruct | {"type": "object", "properties": {"deny": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["categories", "blocks"]}}, "required": ["deny"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ReactNativeTesting", "displayName" : "ReactNativeTesting"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "0xb97ee532eec65c689f951a8424b90cec62c7cb0f4bad7e6fc5696c8797da2a50", "parentHash" : "0x73c059670877d809665454e94afc185973b162a4a9ca00711a4d902eb69f2dd0", "number" : 17501, "timestamp" : 1438448868, "nonce" : "0x435140aa68f79789", "difficulty" : 898857878273, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x5B3e850E39e6f2C7dD38707b649e2B3536F14C0b", "extraData" : "0x476574682f76312e302e302f64617277696e2f676f312e342e32", "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"next_comment_id": {"type": "integer"}, "comment": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "post_id": {"type": "integer"}, "date_added": {"type": "integer"}}, "required": ["comment_id", "body", "post_id", "date_added"]}}, "comment_vote": {"type": "object", "properties": {}, "required": []}, "post_vote": {"type": "object", "properties": {"102": {"type": "integer"}}, "required": ["102"]}}, "required": ["next_comment_id", "comment", "comment_vote", "post_vote"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"next_comment_id" : 2, "comment" : [{"comment_id" : 1, "body" : "Top middle is great.", "post_id" : 56, "date_added" : 1443765698}], "comment_vote" : {}, "post_vote" : {"102" : 1}} | json_instruct | {"type": "object", "properties": {"next_comment_id": {"type": "integer"}, "comment": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "post_id": {"type": "integer"}, "date_added": {"type": "integer"}}, "required": ["comment_id", "body", "post_id", "date_added"]}}, "comment_vote": {"type": "object", "properties": {}, "required": []}, "post_vote": {"type": "object", "properties": {"102": {"type": "integer"}}, "required": ["102"]}}, "required": ["next_comment_id", "comment", "comment_vote", "post_vote"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1116051004", "district_id" : "1116051", "name" : "PAJAR"} | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Violette Schl\u00fcsselkarte des Labors", "ShortName" : "Violette Schl.Karte", "Description" : "Schl\u00fcsselkarte"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "compile": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["lint", "test", "compile", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-istanbul": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-airbnb": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "get-stream": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-istanbul", "babel-plugin-add-module-exports", "babel-preset-airbnb", "babel-preset-es2015", "codecov", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "get-stream", "mocha", "should"]}, "dependencies": {"type": "object", "properties": {"got": {"type": "string"}}, "required": ["got"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "toggl-got", "version" : "0.1.0", "description" : "Convenience wrapper for `got` to interact with the Toggl API", "main" : "index.js", "scripts" : {"lint" : "eslint source.js", "test" : "babel-node node_modules/.bin/babel-istanbul cover _mocha && codecov", "compile" : "babel --presets es2015 --plugins add-module-exports source.js -o index.js", "prepublish" : "npm run lint && npm run compile"}, "repository" : {"type" : "git", "url" : "git+https://github.com/angusfretwell/toggl-got.git"}, "author" : "Angus Fretwell <angus@inoutput.io> (http://angusfretwell.com)", "license" : "MIT", "bugs" : {"url" : "https://github.com/angusfretwell/toggl-got/issues"}, "homepage" : "https://github.com/angusfretwell/toggl-got#readme", "devDependencies" : {"babel-cli" : "^6.7.5", "babel-eslint" : "^6.0.2", "babel-istanbul" : "^0.8.0", "babel-plugin-add-module-exports" : "^0.1.2", "babel-preset-airbnb" : "^1.1.1", "babel-preset-es2015" : "^6.6.0", "codecov" : "^1.0.1", "eslint" : "^2.8.0", "eslint-config-airbnb" : "^7.0.0", "eslint-plugin-import" : "^1.4.0", "get-stream" : "^2.0.0", "mocha" : "^2.4.5", "should" : "^8.3.1"}, "dependencies" : {"got" : "^6.3.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "compile": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["lint", "test", "compile", "prepublish"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-istanbul": {"type": "string"}, "babel-plugin-add-module-exports": {"type": "string"}, "babel-preset-airbnb": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "codecov": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-airbnb": {"type": "string"}, "eslint-plugin-import": {"type": "string"}, "get-stream": {"type": "string"}, "mocha": {"type": "string"}, "should": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-istanbul", "babel-plugin-add-module-exports", "babel-preset-airbnb", "babel-preset-es2015", "codecov", "eslint", "eslint-config-airbnb", "eslint-plugin-import", "get-stream", "mocha", "should"]}, "dependencies": {"type": "object", "properties": {"got": {"type": "string"}}, "required": ["got"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"webtorrent.min.js": {"type": "string"}}, "required": ["webtorrent.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webtorrent.min.js" : "sha256-OchFXVL9lIt1BFZLi6mO4Suq3fslXxzwsMFGIG3eVao="} | json_instruct | {"type": "object", "properties": {"webtorrent.min.js": {"type": "string"}}, "required": ["webtorrent.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "null"}, "multiValueHeaders": {"type": "null"}, "queryStringParameters": {"type": "null"}, "multiValueQueryStringParameters": {"type": "null"}, "pathParameters": {"type": "null"}, "stageVariables": {"type": "null"}, "requestContext": {"type": "object", "properties": {"resourceId": {"type": "string"}}, "required": ["resourceId"]}, "body": {"type": "string"}, "isBase64Encoded": {"type": "boolean"}}, "required": ["resource", "path", "httpMethod", "headers", "multiValueHeaders", "queryStringParameters", "multiValueQueryStringParameters", "pathParameters", "stageVariables", "requestContext", "body", "isBase64Encoded"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resource" : "/nja-yourame-lambda", "path" : "/nja-yourame-lambda", "httpMethod" : "POST", "headers" : null, "multiValueHeaders" : null, "queryStringParameters" : null, "multiValueQueryStringParameters" : null, "pathParameters" : null, "stageVariables" : null, "requestContext" : {"resourceId" : "fproz2"}, "body" : "{\n \"pokemonName\": \"Charmander\",\n \"pokemonId\": \"004\"\n}\n", "isBase64Encoded" : false} | json_instruct | {"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "null"}, "multiValueHeaders": {"type": "null"}, "queryStringParameters": {"type": "null"}, "multiValueQueryStringParameters": {"type": "null"}, "pathParameters": {"type": "null"}, "stageVariables": {"type": "null"}, "requestContext": {"type": "object", "properties": {"resourceId": {"type": "string"}}, "required": ["resourceId"]}, "body": {"type": "string"}, "isBase64Encoded": {"type": "boolean"}}, "required": ["resource", "path", "httpMethod", "headers", "multiValueHeaders", "queryStringParameters", "multiValueQueryStringParameters", "pathParameters", "stageVariables", "requestContext", "body", "isBase64Encoded"], "$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"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["watch", "build", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@types/chrome": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "web-ext": {"type": "string"}, "webextension-polyfill-ts": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-react", "@types/chrome", "@types/react", "@types/react-dom", "babel-loader", "css-loader", "file-loader", "style-loader", "ts-loader", "typescript", "web-ext", "webextension-polyfill-ts", "webpack", "webpack-cli", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"grommet": {"type": "string"}, "grommet-icons": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["grommet", "grommet-icons", "react", "react-dom", "styled-components"]}}, "required": ["name", "version", "description", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "skipper", "version" : "1.0.0", "description" : "", "scripts" : {"watch" : "webpack --watch --config webpack.dev.js", "build" : "webpack --config webpack.prod.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"@babel/core" : "^7.9.0", "@babel/plugin-transform-runtime" : "^7.9.0", "@babel/preset-env" : "^7.9.0", "@babel/preset-react" : "^7.9.4", "@types/chrome" : "0.0.75", "@types/react" : "^16.7.8", "@types/react-dom" : "^16.0.11", "babel-loader" : "^8.1.0", "css-loader" : "^1.0.1", "file-loader" : "^6.0.0", "style-loader" : "^0.23.1", "ts-loader" : "^5.3.1", "typescript" : "^3.1.6", "web-ext" : "^4.1.0", "webextension-polyfill-ts" : "^0.14.0", "webpack" : "^4.26.1", "webpack-cli" : "^3.1.2", "webpack-merge" : "^4.2.2"}, "dependencies" : {"grommet" : "^2.11.3", "grommet-icons" : "^4.4.0", "react" : "^16.6.3", "react-dom" : "^16.6.3", "styled-components" : "^5.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["watch", "build", "test"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "@babel/preset-env": {"type": "string"}, "@babel/preset-react": {"type": "string"}, "@types/chrome": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "babel-loader": {"type": "string"}, "css-loader": {"type": "string"}, "file-loader": {"type": "string"}, "style-loader": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "web-ext": {"type": "string"}, "webextension-polyfill-ts": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-merge": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "@babel/preset-env", "@babel/preset-react", "@types/chrome", "@types/react", "@types/react-dom", "babel-loader", "css-loader", "file-loader", "style-loader", "ts-loader", "typescript", "web-ext", "webextension-polyfill-ts", "webpack", "webpack-cli", "webpack-merge"]}, "dependencies": {"type": "object", "properties": {"grommet": {"type": "string"}, "grommet-icons": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["grommet", "grommet-icons", "react", "react-dom", "styled-components"]}}, "required": ["name", "version", "description", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"province" : "\u5185\u8499\u53e4\u81ea\u6cbb\u533a", "city" : "\u547c\u4f26\u8d1d\u5c14\u5e02", "area" : "\u65b0\u5df4\u5c14\u864e\u5de6\u65d7", "name" : "\u65b0\u5df4\u5c14\u864e\u5de6\u65d7\u8bfa\u4eec\u7f55\u5e03\u65e5\u5fb7\u90ae\u653f\u4ee3\u529e\u6240", "code" : "021216", "address" : "\u65b0\u5de6\u65d7\u8bfa\u95e8\u7f55\u5e03\u65e5\u5fb7", "phone" : "18404706456"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code", "address", "phone"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "beer_Black_Orchard", "brewery" : "The Bruery", "name" : "Black Orchard", "abv" : "5.7", "description" : "Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or \u00e2\u0080\u009cblack wit\u00e2\u0080\u009d, if you will. This dark but surprisingly light bodied beer is very drinkable while still having character and complexity. Chamomile is added for its floral aroma, while the coriander and citrus peel give the characteristics of a traditional witbier.", "updated" : "2010-07-22 20:00:20"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["370829108200", "\u9a6c\u96c6\u6751\u59d4\u4f1a", "121", "0"], ["370829108201", "\u4e91\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["370829108202", "\u9619\u91cc\u6751\u59d4\u4f1a", "122", "0"], ["370829108203", "\u78e8\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["370829108204", "\u4efb\u5c71\u6751\u59d4\u4f1a", "220", "0"], ["370829108205", "\u4e8e\u6865\u6751\u59d4\u4f1a", "122", "0"], ["370829108206", "\u9e2d\u5b50\u674e\u6751\u59d4\u4f1a", "122", "0"], ["370829108207", "\u4e09\u7687\u5e99\u6751\u59d4\u4f1a", "122", "0"], ["370829108212", "\u674f\u82b1\u6751\u6751\u59d4\u4f1a", "122", "0"], ["370829108213", "\u6b66\u8857\u6751\u59d4\u4f1a", "220", "0"], ["370829108214", "\u5218\u8857\u6751\u59d4\u4f1a", "220", "0"], ["370829108215", "\u8d75\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108216", "\u859b\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108217", "\u5f20\u8521\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108218", "\u5b5f\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108219", "\u4e0b\u82b1\u6797\u6751\u59d4\u4f1a", "220", "0"], ["370829108220", "\u6768\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108221", "\u674e\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108222", "\u90b5\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108223", "\u6c88\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108224", "\u957f\u5766\u7eb8\u574a\u6751\u59d4\u4f1a", "220", "0"], ["370829108225", "\u897f\u5927\u674e\u6751\u59d4\u4f1a", "220", "0"], ["370829108226", "\u9a6c\u6d77\u6751\u59d4\u4f1a", "220", "0"], ["370829108227", "\u8584\u5e97\u6751\u59d4\u4f1a", "220", "0"], ["370829108228", "\u4e54\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108229", "\u6731\u5e84\u6751\u59d4\u4f1a", "122", "0"], ["370829108230", "\u5bfa\u540e\u674e\u6751\u59d4\u4f1a", "220", "0"], ["370829108231", "\u5218\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108232", "\u51af\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108233", "\u51af\u674e\u6751\u59d4\u4f1a", "220", "0"], ["370829108234", "\u5434\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108235", "\u7fdf\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108236", "\u90dd\u5e84\u6751\u59d4\u4f1a", "220", "0"], ["370829108237", "\u4e1c\u79e6\u6751\u59d4\u4f1a", "220", "0"], ["370829108238", "\u620f\u697c\u8857\u6751\u59d4\u4f1a", "220", "0"], ["370829108239", "\u51af\u7fdf\u6751\u59d4\u4f1a", "220", "0"], ["370829108240", "\u9c81\u5be8\u6751\u59d4\u4f1a", "122", "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": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"versionEnd" : {"versionNum" : 763, "commit" : "889fe1de67eaa7513d3d2272b1a7eef53fd81c88", "date" : "2021-04-24T10:45:13.679Z"}, "versionStart" : {"versionNum" : 762, "commit" : "bf73f73d7042e081843639ec1c1625d28eb13d03", "date" : "2021-04-24T10:43:59.921Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "blockchains/smartchain/assets/0x2773f3FB0f7babA01cdcaAB002FD3373dE2860b3/info.json"]} | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "changes": {"type": "array", "items": {"type": "string"}}}, "required": ["versionEnd", "versionStart", "changes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"divisionCode" : 411425100, "post" : "476300", "divisionName" : "\u57ce\u5173\u9547", "isLeaf" : 1}, {"divisionCode" : 411425101, "post" : "476300", "divisionName" : "\u754c\u6c9f\u9547", "isLeaf" : 1}, {"divisionCode" : 411425102, "post" : "476300", "divisionName" : "\u8425\u90ed\u9547", "isLeaf" : 1}, {"divisionCode" : 411425103, "post" : "476300", "divisionName" : "\u675c\u96c6\u9547", "isLeaf" : 1}, {"divisionCode" : 411425104, "post" : "476300", "divisionName" : "\u8c37\u719f\u9547", "isLeaf" : 1}, {"divisionCode" : 411425105, "post" : "476300", "divisionName" : "\u5927\u6768\u96c6\u9547", "isLeaf" : 1}, {"divisionCode" : 411425106, "post" : "476300", "divisionName" : "\u8d3e\u5be8\u9547", "isLeaf" : 1}, {"divisionCode" : 411425107, "post" : "476300", "divisionName" : "\u5229\u6c11\u9547", "isLeaf" : 1}, {"divisionCode" : 411425108, "post" : "476300", "divisionName" : "\u5f20\u96c6\u9547", "isLeaf" : 1}, {"divisionCode" : 411425109, "post" : "476300", "divisionName" : "\u7ad9\u96c6\u9547", "isLeaf" : 1}, {"divisionCode" : 411425200, "post" : "476300", "divisionName" : "\u9ec4\u51a2\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425201, "post" : "476300", "divisionName" : "\u6c99\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425202, "post" : "476300", "divisionName" : "\u5e97\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425204, "post" : "476300", "divisionName" : "\u95fb\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425205, "post" : "476300", "divisionName" : "\u8292\u79cd\u6865\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425207, "post" : "476300", "divisionName" : "\u5218\u5e97\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425208, "post" : "476300", "divisionName" : "\u5927\u5019\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425210, "post" : "476300", "divisionName" : "\u57ce\u90ca\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425211, "post" : "476300", "divisionName" : "\u90d1\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425212, "post" : "476300", "divisionName" : "\u674e\u8001\u5bb6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425213, "post" : "476300", "divisionName" : "\u7a0d\u5c97\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425214, "post" : "476300", "divisionName" : "\u9547\u91cc\u56fa\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425215, "post" : "476300", "divisionName" : "\u53e4\u738b\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425219, "post" : "476300", "divisionName" : "\u5218\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425220, "post" : "476300", "divisionName" : "\u4e54\u96c6\u4e61", "isLeaf" : 1}, {"divisionCode" : 411425221, "post" : "476300", "divisionName" : "\u7530\u5e99\u4e61", "isLeaf" : 1}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"artist_id" : "ARG5GH71187FB4C030", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Matt Mays", "duration" : 247.66649, "num_songs" : 1, "song_id" : "SOMAQHE12AB0180A64", "title" : "Under My Senses", "year" : 2006} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}}, "required": ["artist_id", "artist_latitude", "artist_location", "artist_longitude", "artist_name", "duration", "num_songs", "song_id", "title", "year"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"database": {"type": "string"}, "resource": {"type": "string"}, "old-revision": {"type": "integer"}, "new-revision": {"type": "integer"}, "diffs": {"type": "array", "items": {"type": "object", "properties": {"insert": {"type": "object", "properties": {"nodeKey": {"type": "integer"}, "insertPositionNodeKey": {"type": "integer"}, "insertPosition": {"type": "string"}, "deweyID": {"type": "string"}, "depth": {"type": "integer"}, "type": {"type": "string"}, "data": {"type": "string"}}, "required": ["nodeKey", "insertPositionNodeKey", "insertPosition", "deweyID", "depth", "type", "data"]}}, "required": ["insert"]}}}, "required": ["database", "resource", "old-revision", "new-revision", "diffs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"database" : "json-path1", "resource" : "shredded", "old-revision" : 1, "new-revision" : 3, "diffs" : [{"insert" : {"nodeKey" : 26, "insertPositionNodeKey" : 15, "insertPosition" : "asRightSibling", "deweyID" : "1.3.11", "depth" : 2, "type" : "jsonFragment", "data" : "{\"hereIAm\":\"yeah\"}"}}, {"insert" : {"nodeKey" : 28, "insertPositionNodeKey" : 26, "insertPosition" : "asRightSibling", "deweyID" : "1.3.13", "depth" : 2, "type" : "jsonFragment", "data" : "{\"111hereIAm\":\"111yeah\"}"}}]} | json_instruct | {"type": "object", "properties": {"database": {"type": "string"}, "resource": {"type": "string"}, "old-revision": {"type": "integer"}, "new-revision": {"type": "integer"}, "diffs": {"type": "array", "items": {"type": "object", "properties": {"insert": {"type": "object", "properties": {"nodeKey": {"type": "integer"}, "insertPositionNodeKey": {"type": "integer"}, "insertPosition": {"type": "string"}, "deweyID": {"type": "string"}, "depth": {"type": "integer"}, "type": {"type": "string"}, "data": {"type": "string"}}, "required": ["nodeKey", "insertPositionNodeKey", "insertPosition", "deweyID", "depth", "type", "data"]}}, "required": ["insert"]}}}, "required": ["database", "resource", "old-revision", "new-revision", "diffs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Graph the system of four linear inequalities in two different ways and shade\n\n\\begin{array}{l}\\nx+y<5 \\\\\\nx+y>-5 \\\\\\nx-y<4 \\\\\\nx-y>-2\\n\\end{array}[imath]x+y<5 [/imath] [imath]x+y>-5 [/imath] [imath]x-y<4 [/imath] [imath]x-y>-2[/imath] \n\n\n", "url" : "https://www.youtube.com/watch?v=Bix-l6Y9jto"} | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "sinnoh_bdsp": {"type": "integer"}, "hisui_legarc": {"type": "integer"}}, "required": ["national", "sinnoh_bdsp", "hisui_legarc"]}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "jp": {"type": "string"}, "chs": {"type": "string"}, "cht": {"type": "string"}}, "required": ["en", "jp", "chs", "cht"]}, "baby": {"type": "boolean"}, "default": {"type": "object", "properties": {"desc": {"type": "string"}, "type_id": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"ability_1": {"type": "string"}, "ability_2": {"type": "boolean"}, "hidden_ability": {"type": "string"}}, "required": ["ability_1", "ability_2", "hidden_ability"]}}, "required": ["desc", "type_id", "type", "abilities"]}, "lord_forme": {"type": "object", "properties": {"desc": {"type": "string"}, "type_id": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"ability_1": {"type": "string"}, "ability_2": {"type": "boolean"}, "hidden_ability": {"type": "string"}}, "required": ["ability_1", "ability_2", "hidden_ability"]}}, "required": ["desc", "type_id", "type", "abilities"]}}, "required": ["id", "name", "baby", "default", "lord_forme"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : {"national" : 483, "sinnoh_bdsp" : 149, "hisui_legarc" : 235}, "name" : {"en" : "Dialga", "jp" : "\u30c7\u30a3\u30a2\u30eb\u30ac", "chs" : "", "cht" : ""}, "baby" : false, "default" : {"desc" : "Temporal Pok\u00e9mon", "type_id" : [15, 0], "type" : ["steel", "dragon"], "abilities" : {"ability_1" : "Pressure", "ability_2" : false, "hidden_ability" : "Telepathy"}}, "lord_forme" : {"desc" : "Temporal Pok\u00e9mon", "type_id" : [15, 0], "type" : ["steel", "dragon"], "abilities" : {"ability_1" : "Pressure", "ability_2" : false, "hidden_ability" : "Telepathy"}}} | json_instruct | {"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "sinnoh_bdsp": {"type": "integer"}, "hisui_legarc": {"type": "integer"}}, "required": ["national", "sinnoh_bdsp", "hisui_legarc"]}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "jp": {"type": "string"}, "chs": {"type": "string"}, "cht": {"type": "string"}}, "required": ["en", "jp", "chs", "cht"]}, "baby": {"type": "boolean"}, "default": {"type": "object", "properties": {"desc": {"type": "string"}, "type_id": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"ability_1": {"type": "string"}, "ability_2": {"type": "boolean"}, "hidden_ability": {"type": "string"}}, "required": ["ability_1", "ability_2", "hidden_ability"]}}, "required": ["desc", "type_id", "type", "abilities"]}, "lord_forme": {"type": "object", "properties": {"desc": {"type": "string"}, "type_id": {"type": "array", "items": {"type": "integer"}}, "type": {"type": "array", "items": {"type": "string"}}, "abilities": {"type": "object", "properties": {"ability_1": {"type": "string"}, "ability_2": {"type": "boolean"}, "hidden_ability": {"type": "string"}}, "required": ["ability_1", "ability_2", "hidden_ability"]}}, "required": ["desc", "type_id", "type", "abilities"]}}, "required": ["id", "name", "baby", "default", "lord_forme"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"summary_path": {"type": "string"}, "csv_folder": {"type": "string"}, "cp_folder": {"type": "string"}, "props": {"type": "array", "items": {"type": "string"}}, "split_sizes": {"type": "array", "items": {"type": "number"}}, "split_type": {"type": "string"}, "max_specs": {"type": "integer"}, "max_atoms": {"type": "integer"}, "dataset_type": {"type": "string"}, "seed": {"type": "integer"}}, "required": ["summary_path", "csv_folder", "cp_folder", "props", "split_sizes", "split_type", "max_specs", "max_atoms", "dataset_type", "seed"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"summary_path" : "/home/gridsan/saxelrod/models/full_dset/rdkit_folder/summary_drugs.json", "csv_folder" : "/home/gridsan/saxelrod/synthetic", "cp_folder" : "/home/gridsan/saxelrod/repo/chemprop/chemprop", "props" : ["ensemblefreeenergy", "ensembleenergy", "log_uniqueconfs"], "split_sizes" : [0.6, 0.2, 0.2], "split_type" : "scaffold_balanced", "max_specs" : 100000, "max_atoms" : 100, "dataset_type" : "regression", "seed" : 0} | json_instruct | {"type": "object", "properties": {"summary_path": {"type": "string"}, "csv_folder": {"type": "string"}, "cp_folder": {"type": "string"}, "props": {"type": "array", "items": {"type": "string"}}, "split_sizes": {"type": "array", "items": {"type": "number"}}, "split_type": {"type": "string"}, "max_specs": {"type": "integer"}, "max_atoms": {"type": "integer"}, "dataset_type": {"type": "string"}, "seed": {"type": "integer"}}, "required": ["summary_path", "csv_folder", "cp_folder", "props", "split_sizes", "split_type", "max_specs", "max_atoms", "dataset_type", "seed"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : "Rizal, Oton, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.oton.rizal", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : "6", "region_name" : "Western Visayas (Region VI)", "province_id" : "36", "province_reference" : "36", "province_name" : "Iloilo", "city_id" : "946", "city_reference" : "677", "city_name" : "Oton", "barangay_id" : "27081", "barangay_reference" : "16781", "barangay_name" : "Rizal"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[122.456802, 10.77039], [122.459023, 10.77121], [122.459808, 10.76673], [122.461746, 10.76251], [122.450577, 10.75053], [122.446533, 10.75089], [122.446716, 10.75176], [122.446457, 10.75183], [122.445877, 10.75123], [122.437599, 10.75254], [122.438789, 10.75389], [122.439682, 10.75527], [122.440308, 10.75612], [122.441299, 10.75675], [122.442261, 10.7568], [122.442596, 10.7576], [122.442146, 10.75845], [122.442558, 10.75923], [122.442757, 10.75967], [122.442657, 10.76025], [122.443703, 10.76116], [122.444168, 10.76116], [122.444672, 10.76182], [122.444908, 10.76221], [122.44503, 10.76263], [122.444923, 10.76346], [122.444611, 10.76369], [122.444687, 10.7641], [122.445213, 10.76463], [122.446617, 10.76503], [122.446281, 10.76559], [122.446602, 10.76607], [122.447403, 10.76662], [122.448723, 10.76728], [122.44989, 10.76725], [122.450928, 10.76764], [122.451431, 10.7681], [122.452759, 10.76807], [122.45327, 10.7679], [122.453461, 10.76818], [122.454597, 10.76872], [122.455429, 10.76838], [122.456802, 10.77039]]]]}} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"rx-player.js": {"type": "string"}, "rx-player.min.js": {"type": "string"}}, "required": ["rx-player.js", "rx-player.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rx-player.js" : "sha512-Ym72Xts4Tp+X9FSQ1XCeExzxpBw1AGoDPnYeUFTDSzZg5l4WiAq4Z6r9TMq5RCLTIqYOy8yI3B1VsPVfXS14Cw==", "rx-player.min.js" : "sha512-9gU0RZaQenxhU3i41aQJMlWlPbFHTpQdgSSHeCrv9/DFwsEls12f7WzrrDb9A9TZwg1eRHQI/WqlWWcKIA8FRg=="} | json_instruct | {"type": "object", "properties": {"rx-player.js": {"type": "string"}, "rx-player.min.js": {"type": "string"}}, "required": ["rx-player.js", "rx-player.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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/5a234087-2c1e-37c0-950a-1cf981891b13", "expression" : [{"id" : "http://data.doremus.org/expression/ed779db1-0f72-35a1-bb66-015c85c64fa8"}, {"id" : "http://data.doremus.org/expression/4c56d1da-9b72-3763-a112-f8d796f37dde"}, {"id" : "http://data.doremus.org/expression/e0b931e4-f66d-3f32-9393-34ba23876de2"}, {"id" : "http://data.doremus.org/expression/872c5680-8891-3dc7-833e-c78817856e2a"}, {"id" : "http://data.doremus.org/expression/fc12bc1a-3a11-3037-91b1-3463b67b0441"}, {"id" : "http://data.doremus.org/expression/58c418e3-deb0-332c-ade1-76813893c727"}, {"id" : "http://data.doremus.org/expression/056b34f2-dbe3-3876-aa82-dd946772cb32"}, {"id" : "http://data.doremus.org/expression/cd818040-1d95-3c17-8871-872e2ea6a64a"}, {"id" : "http://data.doremus.org/expression/5c835229-1acc-3d7b-bd2a-993815dc01ad"}, {"id" : "http://data.doremus.org/expression/3a29f466-c7c8-33d5-976c-583387d268a4"}, {"id" : "http://data.doremus.org/expression/20bd58ef-dd59-3a7b-8968-307d5d30df02"}, {"id" : "http://data.doremus.org/expression/3d5a9317-b469-3678-9217-cdac64615f6f"}, {"id" : "http://data.doremus.org/expression/6f30e83b-2539-348b-838c-fcf7592bc825"}, {"id" : "http://data.doremus.org/expression/6ce30579-0104-3000-97e0-de2503ca058d"}, {"id" : "http://data.doremus.org/expression/537be71c-f26d-3d32-ae21-31c1bdd91044"}, {"id" : "http://data.doremus.org/expression/4a66eabd-19e3-3716-9540-4247a258356a"}, {"id" : "http://data.doremus.org/expression/54fb1786-b73c-3bc5-98fc-08437fa18746"}, {"id" : "http://data.doremus.org/expression/48d21e4c-7a25-3927-8673-42b4d72519db"}]} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Name" : "urgent11_check.rb", "Title" : "URGENT/11 Scanner, Based on Detection Tool by Armis", "Description" : "This module detects VxWorks and the IPnet IP stack, along with devices vulnerable to CVE-2019-12258.", "CveIDs" : ["CVE-2019-12258"], "References" : ["https://armis.com/urgent11", "https://github.com/ArmisSecurity/urgent11-detector", "https://github.com/rapid7/metasploit-framework/blob/master/modules/auxiliary/scanner/vxworks/urgent11_check.rb"]}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "CveIDs", "References"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "re": {"type": "string"}}, "required": ["url", "re"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["homepage", "version", "license", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"homepage" : "https://github.com/Nuke928/NTop", "version" : "0.3.4", "license" : "GPL-3.0", "url" : "https://github.com/Nuke928/NTop/releases/download/v0.3.4/ntop.exe", "hash" : "67aadf4b033de1acaee2d84be4a296c14baa8288706e116435221733e93f9f50", "bin" : "ntop.exe", "checkver" : {"url" : "https://github.com/Nuke928/NTop/releases", "re" : "download/v(\\d\\.\\d\\.\\d)/ntop.exe"}, "autoupdate" : {"url" : "https://github.com/Nuke928/NTop/releases/download/v$version/ntop.exe"}} | json_instruct | {"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "re": {"type": "string"}}, "required": ["url", "re"]}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}}, "required": ["homepage", "version", "license", "url", "hash", "bin", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"code" : "333287", "long" : {"default" : "\u514b\u4f26"}}, {"code" : "343300", "long" : {"default" : "\u963f\u65af\u99ac\u62c9"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "example"]}, "source": {"type": "string"}}, "required": ["blurb", "authors", "files", "source"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"blurb" : "Make sure the brackets and braces all match.", "authors" : ["jitwit"], "files" : {"solution" : ["matching-brackets.scm"], "test" : ["test.scm"], "example" : [".meta/example.scm"]}, "source" : "Ginna Baker"} | json_instruct | {"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "example": {"type": "array", "items": {"type": "string"}}}, "required": ["solution", "test", "example"]}, "source": {"type": "string"}}, "required": ["blurb", "authors", "files", "source"], "$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.