input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1 value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"topic" : "visualize position index", "category" : "radiance-general", "attachments" : [], "created_by_name" : "Ji Zhang", "created_at" : "April 29, 2012 at 11:15AM", "body" : "Dear Radiance experts,\n\n\nLearning glare related analysis, I write a .cal file to define the position\nindex for every point on the sky in relation to a given view vector based\non the position index formula. I also prepared a batch file to visualize it.\n\n\nHowever, the image I got is not a circular fisheye one and the upper half\nof the pattern doesn't seem to resemble what appeared on page 753 in Dr\nWienold and Dr Christoffersen's paper:\nWienold, J., & Christoffersen, J. (2006). Evaluation methods and\ndevelopment of a new glare prediction model for daylight environments with\nthe use of CCD cameras. Energy and Buildings, 38(7), 743-757.\n\n\nImages are shown here:\nhttp://episode-hopezh.blogspot.com/2012/04/viz-position-index.html\n\n\nThe .cal and batch files can be downloaded from:\nhttps://sites.google.com/site/episodehopezh/files/viz_sg.rar?attredirects=0&d=1\n\n\nTwo folders are included, one for visualizing the position index and the\nother one for visualizing the inverted position index.\n\n\nThe view is a horizontal one towards due south. The image extracted from Dr\nWienold and Dr Christoffersen's paper is also included as a reference.\n\n\nCan you kindly take a look of the .cal and batch file and advise me on:\n1) why I can't get a circular fisheye image (I assume there's simple rookie\nerror in the script...)?\n2) whether the position index pattern as visualized is correct?\n3) how to convert the image into one using position index value as color\nlegend?\n\n\n\n\nWould greatly appreciate if Dr Wienold can kindly provide some suggestions!\n\n\nThank you very much in advance!\n\n\n- Ji\n___\n<sup>Automatically generated content from [radiance mailing-list](https://radiance-online.org/pipermail/radiance-general/2012-April/008530.html).</sup>", "id" : "radiance-general_008530", "created_by" : "Ji_Zhang"} | json_instruct | {"type": "object", "properties": {"topic": {"type": "string"}, "category": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "body": {"type": "string"}, "id": {"type": "string"}, "created_by": {"type": "string"}}, "required": ["topic", "category", "attachments", "created_by_name", "created_at", "body", "id", "created_by"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"marker-symbol": {"type": "string"}, "marker-color": {"type": "string"}, "marker-size": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "url": {"type": "string"}, "geoBeerId": {"type": "string"}}, "required": ["marker-symbol", "marker-color", "marker-size", "name", "address", "url", "geoBeerId"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-73.969248, 40.708893]}, "properties" : {"marker-symbol" : "star", "marker-color" : "#607D8B", "marker-size" : "small", "name" : "Evil Twin Brewing", "address" : "446 Kent Ave Apt 14A, Brooklyn, NY 11249", "url" : "http://www.eviltwin.dk/", "geoBeerId" : "92a78647-514c-45bd-a143-d66210b4832a"}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"marker-symbol": {"type": "string"}, "marker-color": {"type": "string"}, "marker-size": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "url": {"type": "string"}, "geoBeerId": {"type": "string"}}, "required": ["marker-symbol", "marker-color", "marker-size", "name", "address", "url", "geoBeerId"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleanalytics-desc": {"type": "string"}}, "required": ["@metadata", "googleanalytics-desc"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Garas"]}, "googleanalytics-desc" : "\u012eterpia \u201eGoogle Analytics\u201c steb\u0117jimo scenarij\u0173 (ga.js) \u012f MediaWiki puslapius"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "googleanalytics-desc": {"type": "string"}}, "required": ["@metadata", "googleanalytics-desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"total_supply": {"type": "integer"}, "common_pool": {"type": "integer"}, "debonding_interval": {"type": "integer"}, "min_delegation_amount": {"type": "integer"}}, "required": ["total_supply", "common_pool", "debonding_interval", "min_delegation_amount"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"total_supply" : 10000000000000000000, "common_pool" : 8488268129209746000, "debonding_interval" : 336, "min_delegation_amount" : 100000000000} | json_instruct | {"type": "object", "properties": {"total_supply": {"type": "integer"}, "common_pool": {"type": "integer"}, "debonding_interval": {"type": "integer"}, "min_delegation_amount": {"type": "integer"}}, "required": ["total_supply", "common_pool", "debonding_interval", "min_delegation_amount"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "server": {"type": "string"}}, "required": ["test", "start", "server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-sanitizer": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "express-sanitizer"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "tomato-food-ordering-pwa", "version" : "1.0.0", "description" : "PWA for food ordering system.", "main" : "server.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon server.js", "server" : "node server.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/DivyPatel9881/tomato-food-ordering-PWA.git"}, "author" : "DIVY PATEL <divy9881@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/DivyPatel9881/tomato-food-ordering-PWA/issues"}, "homepage" : "https://github.com/DivyPatel9881/tomato-food-ordering-PWA#readme", "dependencies" : {"body-parser" : "^1.19.0", "ejs" : "^3.0.1", "express" : "^4.17.1", "express-sanitizer" : "^1.0.5"}, "devDependencies" : {"nodemon" : "^2.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "server": {"type": "string"}}, "required": ["test", "start", "server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "express-sanitizer": {"type": "string"}}, "required": ["body-parser", "ejs", "express", "express-sanitizer"]}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@antfu/eslint-config": {"type": "string"}, "eslint": {"type": "string"}, "lerna": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@antfu/eslint-config", "eslint", "lerna", "typescript"]}}, "required": ["name", "version", "license", "repository", "author", "scripts", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@muxiu1997/eslint-config-monorepo", "version" : "0.1.0", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/MuXiu1997/eslint-config.git"}, "author" : "MuXiu1997 <muxiu1997@gmail.com> (https://github.com/MuXiu1997/)", "scripts" : {"lint" : "npx eslint --ext .js,.json --fix"}, "private" : true, "devDependencies" : {"@antfu/eslint-config" : "*", "eslint" : "^8.4.0", "lerna" : "^4.0.0", "typescript" : "^4.5.4"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}}, "required": ["lint"]}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@antfu/eslint-config": {"type": "string"}, "eslint": {"type": "string"}, "lerna": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@antfu/eslint-config", "eslint", "lerna", "typescript"]}}, "required": ["name", "version", "license", "repository", "author", "scripts", "private", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "required": ["lat", "lng", "cap"]}, "conduite": {"type": "object", "properties": {"idLigne": {"type": "integer"}, "vitesse": {"type": "integer"}, "destination": {"type": "string"}, "avanceRetard": {"type": "string"}, "arretSuiv": {"type": "object", "properties": {"nomCommercial": {"type": "string"}, "estimationTemps": {"type": "integer"}}, "required": ["nomCommercial", "estimationTemps"]}}, "required": ["idLigne", "vitesse", "destination", "avanceRetard", "arretSuiv"]}, "id": {"type": "integer"}, "vehiculeLoad": {"type": "string"}, "type": {"type": "string"}, "numeroEquipement": {"type": "string"}}, "required": ["localisation", "conduite", "id", "vehiculeLoad", "type", "numeroEquipement"]}}}, "required": ["vehicule"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vehicule" : [{"localisation" : {"lat" : 35.152352162269246, "lng" : -90.04999833914283, "cap" : 198}, "conduite" : {"idLigne" : 47324, "vitesse" : 6, "destination" : "CENTRAL STATION", "avanceRetard" : "9 min late", "arretSuiv" : {"nomCommercial" : "CONVENTION@MAIN", "estimationTemps" : 0}}, "id" : 15015, "vehiculeLoad" : "0%", "type" : "Trolley", "numeroEquipement" : "9234"}, {"localisation" : {"lat" : 35.133011401813164, "lng" : -90.05901765001924, "cap" : 2}, "conduite" : {"idLigne" : 47324, "vitesse" : 2, "destination" : "WILLIAM HUDSON ", "avanceRetard" : "on time", "arretSuiv" : {"nomCommercial" : "BUTLER @ MAIN", "estimationTemps" : 0}}, "id" : 15016, "vehiculeLoad" : "0%", "type" : "Trolley", "numeroEquipement" : "9540"}, {"localisation" : {"lat" : 35.14570644984548, "lng" : -90.05260624580961, "cap" : 19}, "conduite" : {"idLigne" : 47324, "vitesse" : 4, "destination" : "WILLIAM HUDSON ", "avanceRetard" : "on time", "arretSuiv" : {"nomCommercial" : "COURT @ MAIN", "estimationTemps" : 0}}, "id" : 15019, "vehiculeLoad" : "0%", "type" : "Trolley", "numeroEquipement" : "9453"}, {"localisation" : {"lat" : 35.17806477939707, "lng" : -90.01054062868413, "cap" : 319}, "conduite" : {"idLigne" : 47343, "vitesse" : 0, "destination" : "3RD ST @ EASTMAN RD", "avanceRetard" : "1h+ late", "arretSuiv" : {"nomCommercial" : "BROOKS @GEMINI", "estimationTemps" : 0}}, "id" : 10058, "vehiculeLoad" : "4%", "type" : "Bus", "numeroEquipement" : "4005"}]} | json_instruct | {"type": "object", "properties": {"vehicule": {"type": "array", "items": {"type": "object", "properties": {"localisation": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}, "cap": {"type": "integer"}}, "required": ["lat", "lng", "cap"]}, "conduite": {"type": "object", "properties": {"idLigne": {"type": "integer"}, "vitesse": {"type": "integer"}, "destination": {"type": "string"}, "avanceRetard": {"type": "string"}, "arretSuiv": {"type": "object", "properties": {"nomCommercial": {"type": "string"}, "estimationTemps": {"type": "integer"}}, "required": ["nomCommercial", "estimationTemps"]}}, "required": ["idLigne", "vitesse", "destination", "avanceRetard", "arretSuiv"]}, "id": {"type": "integer"}, "vehiculeLoad": {"type": "string"}, "type": {"type": "string"}, "numeroEquipement": {"type": "string"}}, "required": ["localisation", "conduite", "id", "vehiculeLoad", "type", "numeroEquipement"]}}}, "required": ["vehicule"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"900713405": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900713406": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900713405", "900713406"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900713405" : {"nama" : "TPS 1", "dapil" : [7201, 17205, 2720903]}, "900713406" : {"nama" : "TPS 2", "dapil" : [7201, 17205, 2720903]}} | json_instruct | {"type": "object", "properties": {"900713405": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900713406": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900713405", "900713406"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"tns-platform-declarations": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["tns-platform-declarations"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"requires" : true, "lockfileVersion" : 1, "dependencies" : {"tns-platform-declarations" : {"version" : "6.5.15", "resolved" : "https://registry.npmjs.org/tns-platform-declarations/-/tns-platform-declarations-6.5.15.tgz", "integrity" : "sha512-gCUt2rjPTndp0K6xrgo6tFJvmkAsVOnIvebUUXMdLsNrJScs+OX4pL4DeIGMHGm/ciLqBlG5ZPkTOi8ZJCZuAQ=="}}} | json_instruct | {"type": "object", "properties": {"requires": {"type": "boolean"}, "lockfileVersion": {"type": "integer"}, "dependencies": {"type": "object", "properties": {"tns-platform-declarations": {"type": "object", "properties": {"version": {"type": "string"}, "resolved": {"type": "string"}, "integrity": {"type": "string"}}, "required": ["version", "resolved", "integrity"]}}, "required": ["tns-platform-declarations"]}}, "required": ["requires", "lockfileVersion", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"dsl": {"type": "object", "properties": {"widgetName": {"type": "string"}, "backgroundColor": {"type": "string"}, "rightColumn": {"type": "integer"}, "snapColumns": {"type": "integer"}, "detachFromLayout": {"type": "boolean"}, "widgetId": {"type": "string"}, "topRow": {"type": "integer"}, "bottomRow": {"type": "integer"}, "containerStyle": {"type": "string"}, "snapRows": {"type": "integer"}, "parentRowSpace": {"type": "integer"}, "type": {"type": "string"}, "canExtend": {"type": "boolean"}, "dynamicBindings": {"type": "object", "properties": {}, "required": []}, "version": {"type": "integer"}, "minHeight": {"type": "integer"}, "parentColumnSpace": {"type": "integer"}, "leftColumn": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"isVisible": {"type": "boolean"}, "widgetName": {"type": "string"}, "url": {"type": "string"}, "autoPlay": {"type": "boolean"}, "type": {"type": "string"}, "isLoading": {"type": "boolean"}, "parentColumnSpace": {"type": "integer"}, "parentRowSpace": {"type": "integer"}, "leftColumn": {"type": "integer"}, "rightColumn": {"type": "integer"}, "topRow": {"type": "integer"}, "bottomRow": {"type": "integer"}, "parentId": {"type": "string"}, "widgetId": {"type": "string"}}, "required": ["isVisible", "widgetName", "url", "autoPlay", "type", "isLoading", "parentColumnSpace", "parentRowSpace", "leftColumn", "rightColumn", "topRow", "bottomRow", "parentId", "widgetId"]}}}, "required": ["widgetName", "backgroundColor", "rightColumn", "snapColumns", "detachFromLayout", "widgetId", "topRow", "bottomRow", "containerStyle", "snapRows", "parentRowSpace", "type", "canExtend", "dynamicBindings", "version", "minHeight", "parentColumnSpace", "leftColumn", "children"]}}, "required": ["dsl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dsl" : {"widgetName" : "MainContainer", "backgroundColor" : "none", "rightColumn" : 1224, "snapColumns" : 16, "detachFromLayout" : true, "widgetId" : "0", "topRow" : 0, "bottomRow" : 1280, "containerStyle" : "none", "snapRows" : 33, "parentRowSpace" : 1, "type" : "CANVAS_WIDGET", "canExtend" : true, "dynamicBindings" : {}, "version" : 6, "minHeight" : 1292, "parentColumnSpace" : 1, "leftColumn" : 0, "children" : [{"isVisible" : true, "widgetName" : "Video1", "url" : "https://www.youtube.com/watch?v=mzqK0QIZRLs", "autoPlay" : false, "type" : "VIDEO_WIDGET", "isLoading" : false, "parentColumnSpace" : 74, "parentRowSpace" : 40, "leftColumn" : 1, "rightColumn" : 8, "topRow" : 17, "bottomRow" : 24, "parentId" : "0", "widgetId" : "fvilzim02v"}]}} | json_instruct | {"type": "object", "properties": {"dsl": {"type": "object", "properties": {"widgetName": {"type": "string"}, "backgroundColor": {"type": "string"}, "rightColumn": {"type": "integer"}, "snapColumns": {"type": "integer"}, "detachFromLayout": {"type": "boolean"}, "widgetId": {"type": "string"}, "topRow": {"type": "integer"}, "bottomRow": {"type": "integer"}, "containerStyle": {"type": "string"}, "snapRows": {"type": "integer"}, "parentRowSpace": {"type": "integer"}, "type": {"type": "string"}, "canExtend": {"type": "boolean"}, "dynamicBindings": {"type": "object", "properties": {}, "required": []}, "version": {"type": "integer"}, "minHeight": {"type": "integer"}, "parentColumnSpace": {"type": "integer"}, "leftColumn": {"type": "integer"}, "children": {"type": "array", "items": {"type": "object", "properties": {"isVisible": {"type": "boolean"}, "widgetName": {"type": "string"}, "url": {"type": "string"}, "autoPlay": {"type": "boolean"}, "type": {"type": "string"}, "isLoading": {"type": "boolean"}, "parentColumnSpace": {"type": "integer"}, "parentRowSpace": {"type": "integer"}, "leftColumn": {"type": "integer"}, "rightColumn": {"type": "integer"}, "topRow": {"type": "integer"}, "bottomRow": {"type": "integer"}, "parentId": {"type": "string"}, "widgetId": {"type": "string"}}, "required": ["isVisible", "widgetName", "url", "autoPlay", "type", "isLoading", "parentColumnSpace", "parentRowSpace", "leftColumn", "rightColumn", "topRow", "bottomRow", "parentId", "widgetId"]}}}, "required": ["widgetName", "backgroundColor", "rightColumn", "snapColumns", "detachFromLayout", "widgetId", "topRow", "bottomRow", "containerStyle", "snapRows", "parentRowSpace", "type", "canExtend", "dynamicBindings", "version", "minHeight", "parentColumnSpace", "leftColumn", "children"]}}, "required": ["dsl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "subject_identifier": {"type": "string"}, "configuration": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "requested_attributes": {"type": "array", "items": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {"type": "object", "properties": {"schema_issuer_did": {"type": "string"}, "schema_name": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_issuer_did", "schema_name", "schema_version"]}}}, "required": ["names", "restrictions"]}}, "requested_predicates": {"type": "array", "items": {}}}, "required": ["name", "version", "requested_attributes", "requested_predicates"]}}, "required": ["id", "subject_identifier", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "citz-verified-person_test", "subject_identifier" : "given_names", "configuration" : {"name" : "citz-verified-person", "version" : "0.1.0", "requested_attributes" : [{"names" : ["verified_person_key", "given_names", "additional_names", "family_name", "birthdate", "street_address", "postal_code", "locality", "region", "country", "phone_number", "alternate_phone_number", "email", "gender", "issuer", "issue_date", "expiration_date", "credential_status", "identity_assurance_level"], "restrictions" : [{"schema_issuer_did" : "66AgL9NJk8p9bBpzXmXKd9", "schema_name" : "verified_person", "schema_version" : "0.1.0"}]}], "requested_predicates" : []}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "subject_identifier": {"type": "string"}, "configuration": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "requested_attributes": {"type": "array", "items": {"type": "object", "properties": {"names": {"type": "array", "items": {"type": "string"}}, "restrictions": {"type": "array", "items": {"type": "object", "properties": {"schema_issuer_did": {"type": "string"}, "schema_name": {"type": "string"}, "schema_version": {"type": "string"}}, "required": ["schema_issuer_did", "schema_name", "schema_version"]}}}, "required": ["names", "restrictions"]}}, "requested_predicates": {"type": "array", "items": {}}}, "required": ["name", "version", "requested_attributes", "requested_predicates"]}}, "required": ["id", "subject_identifier", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"state": {"type": "object", "properties": {"zodiac__sign": {"type": "object", "properties": {"aquarius": {"type": "string"}, "aries": {"type": "string"}, "cancer": {"type": "string"}, "capricorn": {"type": "string"}, "gemini": {"type": "string"}, "leo": {"type": "string"}, "libra": {"type": "string"}, "pisces": {"type": "string"}, "sagittarius": {"type": "string"}, "scorpio": {"type": "string"}, "taurus": {"type": "string"}, "virgo": {"type": "string"}}, "required": ["aquarius", "aries", "cancer", "capricorn", "gemini", "leo", "libra", "pisces", "sagittarius", "scorpio", "taurus", "virgo"]}}, "required": ["zodiac__sign"]}}, "required": ["state"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"state" : {"zodiac__sign" : {"aquarius" : "Kova", "aries" : "Ko\u00e7", "cancer" : "Yenge\u00e7", "capricorn" : "O\u011flak", "gemini" : "Ikizler", "leo" : "Aslan", "libra" : "Terazi", "pisces" : "Bal\u0131k", "sagittarius" : "Yay", "scorpio" : "Akrep", "taurus" : "Bo\u011fa", "virgo" : "Ba\u015fak"}}} | json_instruct | {"type": "object", "properties": {"state": {"type": "object", "properties": {"zodiac__sign": {"type": "object", "properties": {"aquarius": {"type": "string"}, "aries": {"type": "string"}, "cancer": {"type": "string"}, "capricorn": {"type": "string"}, "gemini": {"type": "string"}, "leo": {"type": "string"}, "libra": {"type": "string"}, "pisces": {"type": "string"}, "sagittarius": {"type": "string"}, "scorpio": {"type": "string"}, "taurus": {"type": "string"}, "virgo": {"type": "string"}}, "required": ["aquarius", "aries", "cancer", "capricorn", "gemini", "leo", "libra", "pisces", "sagittarius", "scorpio", "taurus", "virgo"]}}, "required": ["zodiac__sign"]}}, "required": ["state"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"angular-base64.js": {"type": "string"}, "angular-base64.min.js": {"type": "string"}}, "required": ["angular-base64.js", "angular-base64.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-base64.js" : "sha512-dbIPUEQYBYmzUEEhXJofPApMpZBJJsuenELRpiBP99ZnxmDOXD+GJFC2kTdlXQNH6shnSJSYn3rivav8z2a3hA==", "angular-base64.min.js" : "sha512-QdmaIF2NrV+ZkxiHSmTHJoai2E7GBcGAxSI5ayHuUWO+L7p1K3dW3i57AHV+b8VwFcRd/zqCGQqG+/tB5jJRVA=="} | json_instruct | {"type": "object", "properties": {"angular-base64.js": {"type": "string"}, "angular-base64.min.js": {"type": "string"}}, "required": ["angular-base64.js", "angular-base64.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"blue-tape": {"type": "string"}}, "required": ["blue-tape"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "main", "homepage", "version", "globalDependencies", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "twilio-common", "main" : "index.d.ts", "homepage" : "https://www.twilio.com", "version" : "0.1.5", "globalDependencies" : {"node" : "registry:env/node#6.0.0+20160918225031"}, "devDependencies" : {"blue-tape" : "registry:npm/blue-tape#0.2.0+20160723033700"}, "dependencies" : {}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "homepage": {"type": "string"}, "version": {"type": "string"}, "globalDependencies": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "devDependencies": {"type": "object", "properties": {"blue-tape": {"type": "string"}}, "required": ["blue-tape"]}, "dependencies": {"type": "object", "properties": {}, "required": []}}, "required": ["name", "main", "homepage", "version", "globalDependencies", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"class" : {}, "instance" : {"baseline:" : "mt 10/21/2014 11:39:19.105"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"baseline:": {"type": "string"}}, "required": ["baseline:"]}}, "required": ["class", "instance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "jsonClass": {"type": "string"}, "priority": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"angam_number": {"type": "integer"}, "angam_type": {"type": "string"}, "jsonClass": {"type": "string"}, "kaala": {"type": "string"}, "month_number": {"type": "integer"}, "month_type": {"type": "string"}, "year_start": {"type": "integer"}}, "required": ["angam_number", "angam_type", "jsonClass", "kaala", "month_number", "month_type", "year_start"]}}, "required": ["id", "jsonClass", "priority", "tags", "timing"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "kAJcI jagadguru zrI~candrazEkharEndra sarasvatI jayantI", "jsonClass" : "HinduCalendarEvent", "priority" : "paraviddha", "tags" : ["mahapurusha-events", "common-festivals"], "timing" : {"angam_number" : 17, "angam_type" : "nakshatram", "jsonClass" : "HinduCalendarEventTiming", "kaala" : "praatah", "month_number" : 2, "month_type" : "solar_month", "year_start" : 4995}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "jsonClass": {"type": "string"}, "priority": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "timing": {"type": "object", "properties": {"angam_number": {"type": "integer"}, "angam_type": {"type": "string"}, "jsonClass": {"type": "string"}, "kaala": {"type": "string"}, "month_number": {"type": "integer"}, "month_type": {"type": "string"}, "year_start": {"type": "integer"}}, "required": ["angam_number", "angam_type", "jsonClass", "kaala", "month_number", "month_type", "year_start"]}}, "required": ["id", "jsonClass", "priority", "tags", "timing"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ember-cli-uncharted-simple-auth"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"group": {"type": "string"}, "hidden": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["group", "hidden", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"group" : "arthropod", "hidden" : true, "type" : "apoli:entity_group"} | json_instruct | {"type": "object", "properties": {"group": {"type": "string"}, "hidden": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["group", "hidden", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "Zoopraxiscope", "definitions" : ["A modified form of zoetrope used to project a series of photographic images of animals or other subjects in order to display their movement."], "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "CHIRA", "frequency" : 5, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"edges" : [[13, 10], [13, 20], [13, 35], [36, 27], [13, 20], [13, 25], [22, 13], [4, 26], [13, 11], [13, 10], [13, 25], [13, 2], [18, 13], [31, 3], [13, 12], [13, 16], [33, 13], [14, 6], [13, 34], [13, 27], [17, 4], [11, 13], [25, 13], [13, 15], [13, 36], [37, 13], [13, 5], [19, 8], [21, 13], [25, 13], [13, 28], [30, 7], [23, 13], [15, 26], [13, 9], [29, 13], [5, 13], [13, 20], [13, 24], [0, 13], [13, 34], [38, 1], [32, 13], [11, 13]], "features" : {"0" : "1", "1" : "1", "2" : "1", "3" : "1", "4" : "2", "5" : "2", "6" : "1", "7" : "1", "8" : "1", "9" : "1", "10" : "2", "11" : "3", "12" : "1", "13" : "35", "14" : "1", "15" : "2", "16" : "1", "17" : "1", "18" : "1", "19" : "1", "20" : "3", "21" : "1", "22" : "1", "23" : "1", "24" : "1", "25" : "4", "26" : "2", "27" : "2", "28" : "1", "29" : "1", "30" : "1", "31" : "1", "32" : "1", "33" : "1", "34" : "2", "35" : "1", "36" : "2", "37" : "1", "38" : "1"}} | json_instruct | {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "features": {"type": "object", "properties": {"0": {"type": "string"}, "1": {"type": "string"}, "2": {"type": "string"}, "3": {"type": "string"}, "4": {"type": "string"}, "5": {"type": "string"}, "6": {"type": "string"}, "7": {"type": "string"}, "8": {"type": "string"}, "9": {"type": "string"}, "10": {"type": "string"}, "11": {"type": "string"}, "12": {"type": "string"}, "13": {"type": "string"}, "14": {"type": "string"}, "15": {"type": "string"}, "16": {"type": "string"}, "17": {"type": "string"}, "18": {"type": "string"}, "19": {"type": "string"}, "20": {"type": "string"}, "21": {"type": "string"}, "22": {"type": "string"}, "23": {"type": "string"}, "24": {"type": "string"}, "25": {"type": "string"}, "26": {"type": "string"}, "27": {"type": "string"}, "28": {"type": "string"}, "29": {"type": "string"}, "30": {"type": "string"}, "31": {"type": "string"}, "32": {"type": "string"}, "33": {"type": "string"}, "34": {"type": "string"}, "35": {"type": "string"}, "36": {"type": "string"}, "37": {"type": "string"}, "38": {"type": "string"}}, "required": ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38"]}}, "required": ["edges", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "data"]}}}, "required": ["title", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "CDN \u56de\u6e90", "cells" : [{"type" : "text", "data" : "<div>\u5f53 cdn \u7f13\u5b58\u670d\u52a1\u5668\u4e2d\u6ca1\u6709\u7b26\u5408\u5ba2\u6237\u7aef\u8981\u6c42\u7684\u8d44\u6e90\u7684\u65f6\u5019\uff0c\u7f13\u5b58\u670d\u52a1\u5668\u4f1a\u8bf7\u6c42\u4e0a\u4e00\u7ea7\u7f13\u5b58\u670d\u52a1\u5668\uff0c\u4ee5\u6b64\u7c7b\u63a8\uff0c\u76f4\u5230\u83b7\u53d6\u5230\u3002\u6700\u540e\u5982\u679c\u8fd8\u662f\u6ca1\u6709\uff0c\u5c31\u4f1a\u56de\u5230\u6211\u4eec\u81ea\u5df1\u7684\u670d\u52a1\u5668\u53bb\u83b7\u53d6\u8d44\u6e90\u3002\n\u90a3\u90fd\u6709\u54ea\u4e9b\u65f6\u5019\u4f1a\u56de\u6e90\u5462\uff1f\u6ca1\u6709\u8d44\u6e90\uff0c\u8d44\u6e90\u8fc7\u671f\uff0c\u8bbf\u95ee\u7684\u8d44\u6e90\u662f\u4e0d\u7f13\u5b58\u8d44\u6e90\u7b49\u90fd\u4f1a\u5bfc\u81f4\u56de\u6e90\u3002</div>"}, {"type" : "text", "data" : "<div><img src=\"quiver-image-url/E7DD547978B3898B74C8A214DC549800.jpg\" alt=\"1634aa918e995ee1.jpg\" width=\"716\" height=\"411\"></div><div><br></div><div>\u5168\u94fe\u8def Https<br></div><div><br></div>"}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "cells": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "data": {"type": "string"}}, "required": ["type", "data"]}}}, "required": ["title", "cells"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "comrade/shared": {"type": "string"}, "enqueue/enqueue": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "comrade/shared", "enqueue/enqueue", "guzzlehttp/guzzle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Comrade\\Client\\": {"type": "string"}}, "required": ["Comrade\\Client\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "license", "require", "autoload", "minimum-stability", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "comrade/client", "type" : "library", "description" : "Comrade PHP client", "keywords" : ["job manager", "client"], "license" : "MIT", "require" : {"php" : ">=7.1", "comrade/shared" : "*@dev", "enqueue/enqueue" : "^0.8", "guzzlehttp/guzzle" : "^6.3"}, "autoload" : {"psr-4" : {"Comrade\\Client\\" : ""}}, "minimum-stability" : "dev", "extra" : {"branch-alias" : {"dev-master" : "0.1.x-dev"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "comrade/shared": {"type": "string"}, "enqueue/enqueue": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php", "comrade/shared", "enqueue/enqueue", "guzzlehttp/guzzle"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Comrade\\Client\\": {"type": "string"}}, "required": ["Comrade\\Client\\"]}}, "required": ["psr-4"]}, "minimum-stability": {"type": "string"}, "extra": {"type": "object", "properties": {"branch-alias": {"type": "object", "properties": {"dev-master": {"type": "string"}}, "required": ["dev-master"]}}, "required": ["branch-alias"]}}, "required": ["name", "type", "description", "keywords", "license", "require", "autoload", "minimum-stability", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}, "countComments": {"type": "boolean"}, "collectStats": {"type": "boolean"}}, "required": ["preset", "statusBarQuery", "statusBarAltQuery", "countComments", "collectStats"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"preset" : {"name" : "default", "statusBarQuery" : "{word_count} words {character_count} characters", "statusBarAltQuery" : "{file_count} files {total_word_count} words {total_character_count} characters"}, "statusBarQuery" : "{word_count} words {character_count} characters", "statusBarAltQuery" : "{file_count} files {total_word_count} words {total_character_count} characters", "countComments" : false, "collectStats" : true} | json_instruct | {"type": "object", "properties": {"preset": {"type": "object", "properties": {"name": {"type": "string"}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}}, "required": ["name", "statusBarQuery", "statusBarAltQuery"]}, "statusBarQuery": {"type": "string"}, "statusBarAltQuery": {"type": "string"}, "countComments": {"type": "boolean"}, "collectStats": {"type": "boolean"}}, "required": ["preset", "statusBarQuery", "statusBarAltQuery", "countComments", "collectStats"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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" : "1104051026", "district_id" : "1104051", "name" : "LAWE PINIS"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@rollup/plugin-commonjs": {"type": "string"}, "@rollup/plugin-node-resolve": {"type": "string"}, "rollup": {"type": "string"}, "zrender": {"type": "string"}}, "required": ["@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "rollup", "zrender"]}, "devDependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}}, "required": ["glob", "rollup-plugin-node-resolve"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "glsl2js": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "glsl2js", "build"]}, "author": {"type": "string"}}, "required": ["name", "version", "description", "main", "jsnext:main", "module", "dependencies", "devDependencies", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "claygl-advanced-renderer", "version" : "0.1.0", "description" : "Advanced renderer for ClayGL", "main" : "dist/clay-advanced-renderer.js", "jsnext:main" : "index.js", "module" : "index.js", "dependencies" : {"@rollup/plugin-commonjs" : "^21.0.0", "@rollup/plugin-node-resolve" : "^13.0.5", "rollup" : "^2.58.0", "zrender" : "^4.0.3"}, "devDependencies" : {"glob" : "^7.1.2", "rollup-plugin-node-resolve" : "^3.0.0"}, "scripts" : {"dev" : "rollup -c -w", "glsl2js" : "node build/glsl2js.js", "build" : "npm run glsl2js && rollup -c && uglifyjs -c -m -- dist/claygl-advanced-renderer.js > dist/claygl-advanced-renderer.min.js"}, "author" : "Yi Shen"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "jsnext:main": {"type": "string"}, "module": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@rollup/plugin-commonjs": {"type": "string"}, "@rollup/plugin-node-resolve": {"type": "string"}, "rollup": {"type": "string"}, "zrender": {"type": "string"}}, "required": ["@rollup/plugin-commonjs", "@rollup/plugin-node-resolve", "rollup", "zrender"]}, "devDependencies": {"type": "object", "properties": {"glob": {"type": "string"}, "rollup-plugin-node-resolve": {"type": "string"}}, "required": ["glob", "rollup-plugin-node-resolve"]}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "glsl2js": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "glsl2js", "build"]}, "author": {"type": "string"}}, "required": ["name", "version", "description", "main", "jsnext:main", "module", "dependencies", "devDependencies", "scripts", "author"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 73392, "idParent" : 73385, "namaWilayah" : "KAMPANI", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73392, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "KAMPANI", "kodeWilayah" : "74.13.04.2007"}, {"id" : 73390, "idParent" : 73385, "namaWilayah" : "KATOBU", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73390, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "KATOBU", "kodeWilayah" : "74.13.04.2005"}, {"id" : 73386, "idParent" : 73385, "namaWilayah" : "LAILANGGA", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73386, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "LAILANGGA", "kodeWilayah" : "74.13.04.2001"}, {"id" : 73389, "idParent" : 73385, "namaWilayah" : "LAKANAHA", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73389, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "LAKANAHA", "kodeWilayah" : "74.13.04.2004"}, {"id" : 73387, "idParent" : 73385, "namaWilayah" : "LASOSODO", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73387, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "LASOSODO", "kodeWilayah" : "74.13.04.2002"}, {"id" : 73391, "idParent" : 73385, "namaWilayah" : "LINDO", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73391, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "LINDO", "kodeWilayah" : "74.13.04.2006"}, {"id" : 73388, "idParent" : 73385, "namaWilayah" : "WAKONTU", "tingkatWilayah" : 4, "idPro" : 72551, "idKab" : 928082, "idKec" : 73385, "idKel" : 73388, "namaPro" : "SULAWESI TENGGARA", "namaKab" : "MUNA BARAT", "namaKec" : "WA DAGA", "namaKel" : "WAKONTU", "kodeWilayah" : "74.13.04.2003"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "namaPro": {"type": "string"}, "namaKab": {"type": "string"}, "namaKec": {"type": "string"}, "namaKel": {"type": "string"}, "kodeWilayah": {"type": "string"}}, "required": ["id", "idParent", "namaWilayah", "tingkatWilayah", "idPro", "idKab", "idKec", "idKel", "namaPro", "namaKab", "namaKec", "namaKel", "kodeWilayah"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "YGGDRASH", "symbol" : "YEED", "type" : "ERC20", "decimals" : 18, "description" : "-", "website" : "https://yggdrash.io/", "explorer" : "https://etherscan.io/token/0xcA2796F9F61dc7b238Aab043971e49c6164DF375", "status" : "active", "id" : "0xcA2796F9F61dc7b238Aab043971e49c6164DF375"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "type": {"type": "string"}, "decimals": {"type": "integer"}, "description": {"type": "string"}, "website": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "symbol", "type", "decimals", "description", "website", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "icons", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"manifest_version" : 2, "name" : "MicroWeather", "description" : "Simple weather application", "version" : "1.3", "browser_action" : {"default_icon" : "icon.png", "default_popup" : "popup.html"}, "icons" : {"16" : "icon.png", "48" : "icon.png", "128" : "icon.png"}, "content_scripts" : [{"matches" : ["http://*/*", "https://*/*"], "js" : ["js/jquery.js", "js/helper.js", "js/myscript.js"], "css" : ["css/main.css"]}]} | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_icon", "default_popup"]}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}}, "required": ["manifest_version", "name", "description", "version", "browser_action", "icons", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 27075, "cartId" : "ea4835a7-885b-4992-b812-5a00551f8675", "preferredProducts" : [1809, 175, 2565, 1339], "productReviews" : [{"productId" : 2486, "reviewText" : "i use it never when i'm in my nightclub.", "reviewDate" : "2018-04-13T17:31:58.4829863+03:00"}, {"productId" : 4189, "reviewText" : "heard about this on smooth jazz radio, decided to give it a try.", "reviewDate" : "2016-07-30T19:17:34.1427001+03:00"}, {"productId" : 109, "reviewText" : "heard about this on new jersey hip hop radio, decided to give it a try.", "reviewDate" : "2016-10-18T19:00:52.646547+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "manifest_version": {"type": "integer"}, "content_security_policy": {"type": "string"}}, "required": ["name", "version", "description", "icons", "permissions", "content_scripts", "browser_action", "manifest_version", "content_security_policy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Moodle Test Hack", "version" : "1.0", "description" : "Chrome extension that solves Moodle Test or makes it easyer. (Moodle Hack)", "icons" : {"128" : "storepicture.png"}, "permissions" : ["activeTab", "<all_urls>", "https://ajax.googleapis.com/"], "content_scripts" : [{"matches" : ["https://school.demo.moodle.net/*", "https://bbz.ngft.com/*", "http://*/*", "https://*/*", "<all_urls>"], "js" : ["Upload/functions.js", "Upload/Upload.js"], "css" : ["Upload/Content.css"]}], "browser_action" : {"default_title" : "Moodle Test Sync", "default_icon" : "icon.png", "default_popup" : "popup.html"}, "manifest_version" : 2, "content_security_policy" : "script-src 'self' https://ajax.googleapis.com; object-src 'self'"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "icons": {"type": "object", "properties": {"128": {"type": "string"}}, "required": ["128"]}, "permissions": {"type": "array", "items": {"type": "string"}}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}, "css": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js", "css"]}}, "browser_action": {"type": "object", "properties": {"default_title": {"type": "string"}, "default_icon": {"type": "string"}, "default_popup": {"type": "string"}}, "required": ["default_title", "default_icon", "default_popup"]}, "manifest_version": {"type": "integer"}, "content_security_policy": {"type": "string"}}, "required": ["name", "version", "description", "icons", "permissions", "content_scripts", "browser_action", "manifest_version", "content_security_policy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"header": {"type": "array", "items": {}}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "container": {"type": "string"}, "grab": {"type": "array", "items": {"type": "object", "properties": {"css": {"type": "string"}, "contents": {"type": "array", "items": {"type": "string"}}}, "required": ["css", "contents"]}}}, "required": ["url", "container", "grab"]}}}, "required": ["header", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"header" : [], "links" : [{"url" : "http://0.0.0.0:1234/index.html", "container" : "html", "grab" : [{"css" : "a", "contents" : ["href", ""]}, {"css" : "p", "contents" : [""]}]}]} | json_instruct | {"type": "object", "properties": {"header": {"type": "array", "items": {}}, "links": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "container": {"type": "string"}, "grab": {"type": "array", "items": {"type": "object", "properties": {"css": {"type": "string"}, "contents": {"type": "array", "items": {"type": "string"}}}, "required": ["css", "contents"]}}}, "required": ["url", "container", "grab"]}}}, "required": ["header", "links"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, "scores_total": {"type": "number"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "0x07390815524cc4cc6277cf4d2f3ba0afd11ada64669ac8d29bbbad0d2c66289c", "title" : "will btc and eth go up or down by end of 2021?", "body" : "", "choices" : ["up", "down", "hard to say"], "start" : 1638717447, "end" : 1638735447, "type" : "single-choice", "scores" : [5e-11, 0, 0], "scores_total" : 5e-11, "scores_state" : "final", "scores_updated" : 1638735463, "snapshot" : "13746532", "state" : "closed", "author" : "0xcbb62a58f8AEdd30F167A234038F334F3214E84c", "space" : {"id" : "metayun.eth", "name" : "metayun"}, "votes" : 1, "votes_data" : [{"id" : "0x236684e1909637a71cb8eaa345b70ccb827dd2a2bf0a7d6e2f665a67da6e1bcb", "voter" : "0xcbb62a58f8AEdd30F167A234038F334F3214E84c", "created" : 1638725461, "choice" : 1, "space" : {"id" : "metayun.eth"}}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "type": {"type": "string"}, "scores": {"type": "array", "items": {"type": "number"}}, "scores_total": {"type": "number"}, "scores_state": {"type": "string"}, "scores_updated": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "string"}, "space": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "votes": {"type": "integer"}, "votes_data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "voter": {"type": "string"}, "created": {"type": "integer"}, "choice": {"type": "integer"}, "space": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}, "required": ["id", "voter", "created", "choice", "space"]}}}, "required": ["id", "title", "body", "choices", "start", "end", "type", "scores", "scores_total", "scores_state", "scores_updated", "snapshot", "state", "author", "space", "votes", "votes_data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "Finding access control bugs in web applications with CanCheck.", "fields" : ["web application", "enforcement", "computer access control", "software bug", "first order logic"], "abstract" : "Access control bugs in web applications can have dire consequences since many web applications store private and sensitive data. In this paper we present an automated verification technique for access control in Ruby on Rails (Rails) applications. Our technique starts by automatically extracting a model that captures 1) the ways the data is accessed and modified by the application, 2) the access control policy of the application, and 3) the authorization checks used for access control policy enforcement. Then, it automatically translates this model to first order logic and uses automated theorem provers to check whether the declared access control policy is correctly enforced by the implementation. We implemented our technique in a tool called CanCheck. Using CanCheck on open source Rails applications, we found numerous previously unknown exploitable access control bugs as well as several deficiencies in access control policies.", "citation" : "Citations (2)", "departments" : ["University of California, Santa Barbara", "University of California, Santa Barbara"], "authors" : ["Ivan Bocic.....http://dblp.org/pers/hd/b/Bocic:Ivan", "Tevfik Bultan.....http://dblp.org/pers/hd/b/Bultan:Tevfik"], "conf" : "kbse", "year" : "2016", "pages" : 12} | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "SHERMAN", "frequency" : 38983, "males" : "99.47926019033937 %", "females" : "0.5207398096606213 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$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"}, "displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "publisher": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "activationEvents": {"type": "array", "items": {}}, "contributes": {"type": "object", "properties": {"markdown.markdownItPlugins": {"type": "boolean"}}, "required": ["markdown.markdownItPlugins"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/vscode": {"type": "string"}}, "required": ["@types/vscode"]}, "dependencies": {"type": "object", "properties": {"markdown-it-imsize": {"type": "string"}}, "required": ["markdown-it-imsize"]}}, "required": ["name", "version", "displayName", "icon", "description", "keywords", "publisher", "license", "repository", "bugs", "engines", "categories", "activationEvents", "contributes", "main", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "markdown-image-size", "version" : "0.0.4", "displayName" : "Markdown Image Size", "icon" : "logo/logo.png", "description" : "Adds  image support to VS Code's built-in markdown preview", "keywords" : ["image", "image size", "markdown", "md", "preview"], "publisher" : "bierner", "license" : "MIT", "repository" : {"url" : "https://github.com/mjbvz/vscode-markdown-image-size.git"}, "bugs" : {"url" : "https://github.com/mjbvz/vscode-markdown-image-size/issues"}, "engines" : {"vscode" : "^1.33.0"}, "categories" : ["Other"], "activationEvents" : [], "contributes" : {"markdown.markdownItPlugins" : true}, "main" : "./extension.js", "scripts" : {}, "devDependencies" : {"@types/vscode" : "^1.33"}, "dependencies" : {"markdown-it-imsize" : "^2.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "displayName": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "publisher": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"vscode": {"type": "string"}}, "required": ["vscode"]}, "categories": {"type": "array", "items": {"type": "string"}}, "activationEvents": {"type": "array", "items": {}}, "contributes": {"type": "object", "properties": {"markdown.markdownItPlugins": {"type": "boolean"}}, "required": ["markdown.markdownItPlugins"]}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/vscode": {"type": "string"}}, "required": ["@types/vscode"]}, "dependencies": {"type": "object", "properties": {"markdown-it-imsize": {"type": "string"}}, "required": ["markdown-it-imsize"]}}, "required": ["name", "version", "displayName", "icon", "description", "keywords", "publisher", "license", "repository", "bugs", "engines", "categories", "activationEvents", "contributes", "main", "scripts", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_5m0sdkl9", "name" : "Kuqry"}, "date" : {"day" : 1621814400, "full" : 1621884857, "month" : 1619827200, "week" : 1621728000}, "id" : "t3_nk68kd", "picture" : {"filesize" : 48101, "fullUrl" : "https://preview.redd.it/c7uaj5dte4171.jpg?width=3541&format=pjpg&auto=webp&s=ad0cf7feea97caabd829f7ccbff715ba1df49d5f", "hash" : "c7ba734d99", "height" : 443, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAALABADASIAAhEBAxEB/8QAFgABAQEAAAAAAAAAAAAAAAAAAwIH/8QAHhAAAgEFAQEBAAAAAAAAAAAAAQIDAAQREiExUWH/xAAUAQEAAAAAAAAAAAAAAAAAAAAB/8QAGBEAAgMAAAAAAAAAAAAAAAAAAAIREjH/2gAMAwEAAhEDEQA/AMRhtJJEZ23VQNuL6KuSykECsgkJPSCPB9oheXEh0eViuMY8pUv7oq+0zHHATgkZ/aKPoSf/2Q==", "url" : "https://preview.redd.it/c7uaj5dte4171.jpg?width=640&crop=smart&auto=webp&s=22d4484e7d71f34ade775d923f8fa6090f923aae", "width" : 640}, "score" : {"comments" : 9, "downs" : 0, "ratio" : 1, "ups" : 283, "value" : 283}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "Swamp scatter terrain I made. Really proud of these!", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/nk68kd/swamp_scatter_terrain_i_made_really_proud_of_these/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "integer"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {}}}, "required": ["$schema", "name", "description", "addresses", "protocols", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "strategy", "name" : "Alpha Homora Lender Optimizer", "description" : "Supplies {{token}} to [Alpha Homora](https://homora.alphafinance.io/) to generate interest.", "addresses" : ["0xeE697232DF2226c9fB3F02a57062c4208f287851", "0xec2DB4A1Ad431CC3b102059FA91Ba643620F0826"], "protocols" : ["Alpha Homora"], "authors" : []} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "protocols": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {}}}, "required": ["$schema", "name", "description", "addresses", "protocols", "authors"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "null"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Imastaser Anania Shirakatsi University of Gyumri", "alt_name" : "Gyumrii Imastaser Anania Shirakatsi Hamalsaran (IASU)", "country" : "Armenia", "state" : null, "address" : {"street" : "Sayat-Nova Street 1", "city" : "Gyumri", "province" : "Shirak Region", "postal_code" : "377500"}, "contact" : {"telephone" : "+374(312) 39-394", "website" : null, "email" : "roman@gyumri.am", "fax" : "+374(312) 33-015"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : "Ministry of Education and Science of Armenia"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "null"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"message_container_multiple_error": {"type": "string"}, "message_container_multiple_warning": {"type": "string"}, "message_container_multiple_info": {"type": "string"}}, "required": ["message_container_multiple_error", "message_container_multiple_warning", "message_container_multiple_info"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"message_container_multiple_error" : "Si sono verificati questi errori ", "message_container_multiple_warning" : "Informazioni importanti", "message_container_multiple_info" : "Informazioni"} | json_instruct | {"type": "object", "properties": {"message_container_multiple_error": {"type": "string"}, "message_container_multiple_warning": {"type": "string"}, "message_container_multiple_info": {"type": "string"}}, "required": ["message_container_multiple_error", "message_container_multiple_warning", "message_container_multiple_info"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.401829, 34.265091], [-118.400407, 34.271354], [-118.397704, 34.273323], [-118.395594, 34.272222], [-118.393794, 34.273536], [-118.389134, 34.273034], [-118.388491, 34.274761], [-118.386696, 34.27607], [-118.389114, 34.276993], [-118.377677, 34.274299], [-118.361447, 34.273177], [-118.361509, 34.272238], [-118.359346, 34.271148], [-118.356176, 34.272515], [-118.344113, 34.270885], [-118.339451, 34.269021], [-118.335804, 34.265779], [-118.345813, 34.26794], [-118.348031, 34.267687], [-118.350248, 34.265867], [-118.354051, 34.266725], [-118.354206, 34.265928], [-118.365151, 34.266066], [-118.368812, 34.263374], [-118.373442, 34.257912], [-118.378061, 34.255251], [-118.381686, 34.255806], [-118.382665, 34.254338], [-118.38471, 34.256269], [-118.396001, 34.258735], [-118.401829, 34.265091]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 9537}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"t" : "sapi'orong", "h" : [{"d" : [{"f" : "\u625b\u3001\u64e1\u6771\u897f\u4f7f\u7528\u7684\u5668\u5177\u3002", "e" : ["\ufff9`Sa~`pi'orong~ `a~ `'onoc~.\ufffa\ufffb\u62ac\u6771\u897f\u7684\u6241\u64d4\u3002"]}]}], "stem" : "'orong"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "stem": {"type": "string"}}, "required": ["t", "h", "stem"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "methods": {"type": "array", "items": {}}, "name": {"type": "string"}, "inherits": {"type": "string"}}, "required": ["members", "constants", "methods", "name", "inherits"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"members" : [{"name" : "segments", "type" : "PoolVector2Array"}], "constants" : [], "methods" : [], "name" : "ConcavePolygonShape2D", "inherits" : "Shape2D"} | json_instruct | {"type": "object", "properties": {"members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}, "constants": {"type": "array", "items": {}}, "methods": {"type": "array", "items": {}}, "name": {"type": "string"}, "inherits": {"type": "string"}}, "required": ["members", "constants", "methods", "name", "inherits"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"variants" : {"" : {"model" : "buildersaddition:block/stool/stool_jungle_red"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "http://data.doremus.org/performance/a3c7cbba-7705-3e6b-ba3b-6069e7a43bbe", "expression" : [{"id" : "http://data.doremus.org/expression/9300c53f-228e-3f95-9598-9fef447415e0"}, {"id" : "http://data.doremus.org/expression/0fcd61fb-1dfa-3bc0-9750-4d65d70afd01"}, {"id" : "http://data.doremus.org/expression/ec82c4f9-23a3-3dc4-b574-cfded978d84a"}, {"id" : "http://data.doremus.org/expression/0586566b-ece5-36db-bdfd-c333693fe8df"}, {"id" : "http://data.doremus.org/expression/9b3a2833-7334-3cde-a13a-24d7417ffe41"}, {"id" : "http://data.doremus.org/expression/74d4cbb6-d136-32ed-a8ed-5bc6e79a281f"}, {"id" : "http://data.doremus.org/expression/7f7a3f41-e207-3421-9a19-26e5dd293d5a"}, {"id" : "http://data.doremus.org/expression/01f6d872-9ccd-362f-8506-46a051a889f7"}, {"id" : "http://data.doremus.org/expression/28e1dabf-3934-301b-b43d-a7c6a7c2204d"}, {"id" : "http://data.doremus.org/expression/7baecf48-312f-32fc-b3e9-2242c2e5e3b3"}, {"id" : "http://data.doremus.org/expression/4aa439c3-1b28-38f4-8b37-258837c3d376"}, {"id" : "http://data.doremus.org/expression/6e21119e-b378-3eb0-871f-704e04e74700"}, {"id" : "http://data.doremus.org/expression/fc0d6ef6-1b40-3010-a90e-14e32fe7e686"}, {"id" : "http://data.doremus.org/expression/acc07a48-8323-365a-b157-91bce9cbdec8"}, {"id" : "http://data.doremus.org/expression/0cc8a286-84cc-34cc-a8f0-07cb52c325bf"}, {"id" : "http://data.doremus.org/expression/76f831b9-342f-310f-8dfc-981140eeb61a"}]} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "441324118001", "text" : "\u9f99\u534e\u9547\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118002", "text" : "\u6c99\u8ff3\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118201", "text" : "\u9f99\u77f3\u5934\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118202", "text" : "\u6717\u80cc\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118203", "text" : "\u9f99\u534e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118204", "text" : "\u6c34\u5751\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118205", "text" : "\u6c34\u53e3\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118206", "text" : "\u56db\u56f4\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118207", "text" : "\u897f\u6eaa\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118208", "text" : "\u82b1\u7af9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118209", "text" : "\u5927\u576a\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118210", "text" : "\u77f3\u4e0b\u5858\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118211", "text" : "\u897f\u65cf\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118212", "text" : "\u5230\u6ee9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118213", "text" : "\u9999\u6eaa\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118214", "text" : "\u84dd\u6ed8\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118215", "text" : "\u529f\u6b66\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118216", "text" : "\u53cc\u4e1c\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118217", "text" : "\u957f\u6ee9\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118218", "text" : "\u9a6c\u5636\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118219", "text" : "\u6a2a\u69ce\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118220", "text" : "\u9ad8\u6c99\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "441324118501", "text" : "\u9f99\u95e8\u53bf\u9752\u5e74\u6797\u573a\u751f\u6d3b\u533a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "test", "prepare"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "copyfiles": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "@types/react", "@types/react-dom", "copyfiles", "react-dom", "react-scripts", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "react-datepicker-clean", "version" : "2.3.0", "description" : "A clean datepicker for react", "main" : "index.js", "scripts" : {"build" : "sh ./scripts/build.sh", "test" : "echo \"Error: no test specified\" && exit 1", "prepare" : "sh ./scripts/prepare.sh"}, "repository" : {"type" : "git", "url" : "git+https://github.com/blueprint1985/react-datepicker-clean.git"}, "keywords" : ["datepicker", "react", "date", "picker"], "author" : "Martin Bj\u00f6rling", "license" : "MIT", "bugs" : {"url" : "https://github.com/blueprint1985/react-datepicker-clean/issues"}, "homepage" : "https://github.com/blueprint1985/react-datepicker-clean#readme", "peerDependencies" : {"react" : "^16.12.0"}, "devDependencies" : {"@types/jest" : "24.0.23", "@types/node" : "12.12.7", "@types/react" : "^16.9.15", "@types/react-dom" : "16.9.4", "copyfiles" : "^2.1.1", "react-dom" : "^16.12.0", "react-scripts" : "3.2.0", "typescript" : "^3.7.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "test", "prepare"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "copyfiles": {"type": "string"}, "react-dom": {"type": "string"}, "react-scripts": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "@types/node", "@types/react", "@types/react-dom", "copyfiles", "react-dom", "react-scripts", "typescript"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "peerDependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"research.title": {"type": "string"}, "research.conductors": {"type": "string"}, "research.privacy": {"type": "string"}, "research.contactLinkText": {"type": "string"}, "research.intro": {"type": "string"}, "research.papers": {"type": "string"}, "research.grants": {"type": "string"}}, "required": ["research.title", "research.conductors", "research.privacy", "research.contactLinkText", "research.intro", "research.papers", "research.grants"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"research.title" : "Scratch \u098f \u0997\u09ac\u09c7\u09b7\u09a3\u09be ", "research.conductors" : "\u098f\u09ae\u0986\u0987\u099f\u09bf \u09b8\u09cd\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099a \u099f\u09bf\u09ae\u09c7\u09b0 \u09b8\u09a6\u09b8\u09cd\u09af \u098f\u09ac\u0982 \u09aa\u09c7\u09a8\u09b8\u09bf\u09b2\u09ad\u09be\u09a8\u09bf\u09af\u09bc\u09be \u0997\u09cd\u09b0\u09cd\u09af\u09be\u099c\u09c1\u09af\u09bc\u09c7\u099f \u09b8\u09cd\u0995\u09c1\u09b2 \u0985\u09ac \u098f\u09a1\u09c1\u0995\u09c7\u09b6\u09a8\u09c7\u09b0 \u0987\u09af\u09bc\u09be\u09b8\u09ae\u09bf\u09a8 \u0995\u09be\u09ab\u09be\u0987, \u09b9\u09be\u09b0\u09cd\u09ad\u09be\u09b0\u09cd\u09a1 \u0997\u09cd\u09b0\u09cd\u09af\u09be\u099c\u09c1\u09af\u09bc\u09c7\u099f \u09b8\u09cd\u0995\u09c1\u09b2 \u0985\u09ac \u098f\u09a1\u09c1\u0995\u09c7\u09b6\u09a8\u09c7\u09b0 \u0995\u09be\u09b0\u09c7\u09a8 \u09ac\u09cd\u09b0\u09c7\u09a8\u09be\u09a8, \u0993\u09af\u09bc\u09be\u09b6\u09bf\u0982\u099f\u09a8 \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc\u09c7\u09b0 \u09ac\u09c7\u099e\u09cd\u099c\u09be\u09ae\u09bf\u09a8 \u09ae\u09be\u0995\u09cb \u09b9\u09bf\u09b2 \u09b8\u09b9 \u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc\u09c7\u09b0 \u0997\u09ac\u09c7\u09b7\u0995\u09b0\u09be \u09b8\u09cd\u0995\u09cd\u09b0\u09cd\u09af\u09be\u099a \u09a8\u09bf\u09af\u09bc\u09c7 \u0997\u09ac\u09c7\u09b7\u09a3\u09be \u099a\u09be\u09b2\u09be\u099a\u09cd\u099b\u09c7\u09a8 , \u09ae\u09be\u0987\u0995\u09cd\u09b0\u09cb\u09b8\u09ab\u099f \u09b0\u09bf\u09b8\u09be\u09b0\u09cd\u099a\u09c7 \u0986\u09a8\u09cd\u09a6\u09cd\u09b0\u09c7\u09b8 \u09ae\u09a8\u09b0\u09cb \u09b9\u09be\u09b0\u09cd\u09a8\u09be\u09a8\u09cd\u09a6\u09c7\u099c, \u0995\u09cd\u09af\u09be\u09b2\u09bf\u09ab\u09cb\u09b0\u09cd\u09a8\u09bf\u09af\u09bc\u09be \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc\u09c7 \u09ae\u09bf\u09ae\u09bf \u0987\u099f\u09cb \u098f\u09ac\u0982 \u0995\u09cd\u09b0\u09bf\u09b8\u09cd\u099f\u09b2 \u09ae\u09be\u09b0\u09cd\u099f\u09bf\u09a8, \u0987\u09b0\u09ad\u09bf\u09a8, \u099a\u09be\u09b0\u09cd\u09b2\u09b8\u099f\u09a8 \u0995\u09b2\u09c7\u099c\u09c7 \u0995\u09c1\u0987\u09a8 \u09ac\u09be\u09b0\u09cd\u0995, \u0989\u099f\u09be\u09b9 \u09b8\u09cd\u099f\u09c7\u099f \u0987\u0989\u09a8\u09bf\u09ad\u09be\u09b0\u09cd\u09b8\u09bf\u099f\u09bf\u09b0 \u09a1\u09c7\u09ac\u09cb\u09b0\u09be \u09ab\u09bf\u09b2\u09cd\u09a1\u09b8 \u098f\u09ac\u0982 \u0987\u09a8\u09cd\u09a1\u09bf\u09af\u09bc\u09be\u09a8\u09be \u09ac\u09bf\u09b6\u09cd\u09ac\u09ac\u09bf\u09a6\u09cd\u09af\u09be\u09b2\u09af\u09bc\u09c7 \u0995\u09be\u0987\u09b2\u09bf \u09aa\u09c7\u09aa\u09b2\u09be\u09b0\u0964", "research.privacy" : "\u09aa\u09cd\u09b0\u099c\u09c7\u0995\u09cd\u099f\u0997\u09c1\u09b2\u09cb \u09b6\u09c7\u09df\u09be\u09b0 \u0995\u09b0\u09c7 \u098f\u09ac\u0982 Scratch \u0985\u09a8\u09b2\u09be\u0987\u09a8 \u0995\u09ae\u09bf\u0989\u09a8\u09bf\u099f\u09bf\u09a4\u09c7 \u0985\u0982\u09b6\u0997\u09cd\u09b0\u09b9\u09a3 \u0995\u09b0\u09c7, \u09a4\u09c1\u09ae\u09bf \u0986\u09ae\u09be\u09a6\u09c7\u09b0 \u0986\u09b0\u0993 \u09ad\u09be\u09b2\u09ad\u09be\u09ac\u09c7 \u09ac\u09c1\u099d\u09a4\u09c7 \u09b8\u09be\u09b9\u09be\u09af\u09cd\u09af \u0995\u09b0\u099b \u0995\u09bf\u09ad\u09be\u09ac\u09c7 \u09ae\u09be\u09a8\u09c1\u09b7 Scratch \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u09a4\u09c7 \u098f\u09ac\u0982 \u09b6\u09bf\u0996\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7\u0964 Scratch \u09b8\u09be\u0987\u099f\u09c7 \u09af\u09c7\u0995\u09cb\u09a8 \u09b8\u09b0\u09cd\u09ac\u099c\u09a8\u09c0\u09a8\u09ad\u09be\u09ac\u09c7 \u09b6\u09c7\u09df\u09be\u09b0 \u0995\u09b0\u09be \u09aa\u09cd\u09b0\u099c\u09c7\u0995\u09cd\u099f, \u09ae\u09a8\u09cd\u09a4\u09ac\u09cd\u09af \u09ac\u09be \u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u0989\u09aa\u09be\u09a6\u09be\u09a8 \u0986\u09ae\u09be\u09a6\u09c7\u09b0 \u0997\u09ac\u09c7\u09b7\u09a3\u09be \u09ac\u09bf\u09b6\u09cd\u09b2\u09c7\u09b7\u09a3, \u0989\u09aa\u09b8\u09cd\u09a5\u09be\u09aa\u09a8\u09be, \u0995\u09be\u0997\u099c\u09aa\u09a4\u09cd\u09b0 \u098f\u09ac\u0982 \u09aa\u09cd\u09b0\u09a4\u09bf\u09ac\u09c7\u09a6\u09a8\u09c7 \u0985\u09a8\u09cd\u09a4\u09b0\u09cd\u09ad\u09c1\u0995\u09cd\u09a4 \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7\u0964 \u09ac\u09cd\u09af\u0995\u09cd\u09a4\u09bf\u0997\u09a4\u09ad\u09be\u09ac\u09c7 \u09b6\u09a8\u09be\u0995\u09cd\u09a4\u09af\u09cb\u0997\u09cd\u09af \u0995\u09cb\u09a8\u09cb \u09a4\u09a5\u09cd\u09af \u09b6\u09c7\u09af\u09bc\u09be\u09b0 \u0995\u09b0\u09be \u09b9\u09af\u09bc \u09a8\u09be\u0964 (\u09af\u09a6\u09bf \u09a4\u09cb\u09ae\u09be\u09b0 \u0995\u09cb\u09a8 \u09aa\u09cd\u09b0\u09b6\u09cd\u09a8 \u09a5\u09be\u0995\u09c7, \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9 \u0995\u09b0\u09c7 {contactLink} \u09ab\u09b0\u09cd\u09ae\u099f\u09bf \u09ac\u09cd\u09af\u09ac\u09b9\u09be\u09b0 \u0995\u09b0\u0964)", "research.contactLinkText" : "\u0986\u09ae\u09be\u09a6\u09c7\u09b0 \u09b8\u09be\u09a5\u09c7 \u09af\u09cb\u0997\u09be\u09af\u09cb\u0997 ", "research.intro" : "Below are selected research papers, presentations, and theses on Scratch and the Scratch online community, followed by a list of National Science Foundation grants awarded to support Scratch.", "research.papers" : "\u0997\u09ac\u09c7\u09b7\u09a3\u09be \u09aa\u09a4\u09cd\u09b0 \u098f\u09ac\u0982 \u0989\u09aa\u09b8\u09cd\u09a5\u09be\u09aa\u09a8\u09be", "research.grants" : "National Science Foundation Grants"} | json_instruct | {"type": "object", "properties": {"research.title": {"type": "string"}, "research.conductors": {"type": "string"}, "research.privacy": {"type": "string"}, "research.contactLinkText": {"type": "string"}, "research.intro": {"type": "string"}, "research.papers": {"type": "string"}, "research.grants": {"type": "string"}}, "required": ["research.title", "research.conductors", "research.privacy", "research.contactLinkText", "research.intro", "research.papers", "research.grants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this 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" : "3308150014", "district_id" : "3308150", "name" : "REJOSARI"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webpackCompilationHash" : "b199950c730653fabe5b"} | json_instruct | {"type": "object", "properties": {"webpackCompilationHash": {"type": "string"}}, "required": ["webpackCompilationHash"], "$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": {"tsc": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["tsc", "build", "start", "lint", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "standard-version": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "@types/jest", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "husky", "prettier", "standard-version", "ts-jest", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}, "tsyringe": {"type": "string"}}, "required": ["reflect-metadata", "tsyringe"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mediatr-node", "version" : "0.0.0", "description" : "Typescript node implementation of the mediator pattern and a port of Jimmy Bogard's MediatR \ud83d\udc9c.", "main" : "dist/index.js", "scripts" : {"tsc" : "tsc", "build" : "npm run tsc", "start" : "npm run tsc && node dist/index", "lint" : "npx --no-install eslint . --ext .ts", "test" : "npx --no-install jest"}, "keywords" : ["typescript", "node", "mediator"], "author" : "", "license" : "ISC", "devDependencies" : {"@commitlint/cli" : "^15.0.0", "@commitlint/config-conventional" : "^15.0.0", "@types/jest" : "^27.0.3", "@types/node" : "^16.11.9", "@typescript-eslint/eslint-plugin" : "^5.4.0", "@typescript-eslint/parser" : "^5.4.0", "eslint" : "^8.2.0", "eslint-config-prettier" : "^8.3.0", "eslint-plugin-prettier" : "^4.0.0", "husky" : "^7.0.4", "prettier" : "^2.4.1", "standard-version" : "^9.3.2", "ts-jest" : "^27.0.7", "ts-node" : "^10.4.0", "typescript" : "^4.5.2"}, "dependencies" : {"reflect-metadata" : "^0.1.13", "tsyringe" : "^4.6.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"tsc": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}}, "required": ["tsc", "build", "start", "lint", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@commitlint/cli": {"type": "string"}, "@commitlint/config-conventional": {"type": "string"}, "@types/jest": {"type": "string"}, "@types/node": {"type": "string"}, "@typescript-eslint/eslint-plugin": {"type": "string"}, "@typescript-eslint/parser": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-prettier": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "husky": {"type": "string"}, "prettier": {"type": "string"}, "standard-version": {"type": "string"}, "ts-jest": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@commitlint/cli", "@commitlint/config-conventional", "@types/jest", "@types/node", "@typescript-eslint/eslint-plugin", "@typescript-eslint/parser", "eslint", "eslint-config-prettier", "eslint-plugin-prettier", "husky", "prettier", "standard-version", "ts-jest", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"reflect-metadata": {"type": "string"}, "tsyringe": {"type": "string"}}, "required": ["reflect-metadata", "tsyringe"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "conditions": {"type": "object", "properties": {"59ca2fba86f77445e4732b25": {"type": "string"}, "5b05468f86f774030379eb74": {"type": "string"}, "5b0548e686f7740306753506": {"type": "string"}, "5cb3393888a4505d02042061": {"type": "string"}, "5cb3397c88a450159a723d79": {"type": "string"}}, "required": ["59ca2fba86f77445e4732b25", "5b05468f86f774030379eb74", "5b0548e686f7740306753506", "5cb3393888a4505d02042061", "5cb3397c88a450159a723d79"]}, "description": {"type": "string"}, "failMessageText": {"type": "string"}, "startedMessageText": {"type": "string"}, "successMessageText": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "note", "conditions", "description", "failMessageText", "startedMessageText", "successMessageText", "location"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "The Punisher VI", "note" : "", "conditions" : {"59ca2fba86f77445e4732b25" : "Elimina 15 operadores PMC (debes usar un fusil SVD)", "5b05468f86f774030379eb74" : "Consigue 10 chapas de identificaci\u00f3n BEAR", "5b0548e686f7740306753506" : "Entrega las 10 chapas de identificaci\u00f3n BEAR ", "5cb3393888a4505d02042061" : "Consigue 10 chapas de identificaci\u00f3n USEC", "5cb3397c88a450159a723d79" : "Entrega 10 chapas de identificaci\u00f3n USEC"}, "description" : "5abe61a886f7746ad512da6d", "failMessageText" : "5ab0f32686f7745dd409f593", "startedMessageText" : "", "successMessageText" : "5ab0f32686f7745dd409f594", "location" : "any"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "note": {"type": "string"}, "conditions": {"type": "object", "properties": {"59ca2fba86f77445e4732b25": {"type": "string"}, "5b05468f86f774030379eb74": {"type": "string"}, "5b0548e686f7740306753506": {"type": "string"}, "5cb3393888a4505d02042061": {"type": "string"}, "5cb3397c88a450159a723d79": {"type": "string"}}, "required": ["59ca2fba86f77445e4732b25", "5b05468f86f774030379eb74", "5b0548e686f7740306753506", "5cb3393888a4505d02042061", "5cb3397c88a450159a723d79"]}, "description": {"type": "string"}, "failMessageText": {"type": "string"}, "startedMessageText": {"type": "string"}, "successMessageText": {"type": "string"}, "location": {"type": "string"}}, "required": ["name", "note", "conditions", "description", "failMessageText", "startedMessageText", "successMessageText", "location"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"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" : "YRMETE", "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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c_ref" : "Bear River", "totals" : {"Cases" : 975, "Deaths" : 2}, "daily" : {"Cases" : 20, "Deaths" : 0}}, {"c_ref" : "Central Utah", "totals" : {"Cases" : 75, "Deaths" : 0}, "daily" : {"Cases" : 5, "Deaths" : 0}}, {"c_ref" : "Davis", "totals" : {"Cases" : 660, "Deaths" : 4}, "daily" : {"Cases" : 14, "Deaths" : 0}}, {"c_ref" : "Salt Lake", "totals" : {"Cases" : 7309, "Deaths" : 93}, "daily" : {"Cases" : 161, "Deaths" : 0}}, {"c_ref" : "San Juan", "totals" : {"Cases" : 357, "Deaths" : 5}, "daily" : {"Cases" : 6, "Deaths" : 0}}, {"c_ref" : "Southeast Utah", "totals" : {"Cases" : 29, "Deaths" : 0}, "daily" : {"Cases" : 0, "Deaths" : 0}}, {"c_ref" : "Southwest Utah", "totals" : {"Cases" : 806, "Deaths" : 5}, "daily" : {"Cases" : 26, "Deaths" : 0}}, {"c_ref" : "Summit", "totals" : {"Cases" : 449, "Deaths" : 0}, "daily" : {"Cases" : 3, "Deaths" : 0}}, {"c_ref" : "Tooele", "totals" : {"Cases" : 165, "Deaths" : 0}, "daily" : {"Cases" : 3, "Deaths" : 0}}, {"c_ref" : "TriCounty", "totals" : {"Cases" : 30, "Deaths" : 0}, "daily" : {"Cases" : 1, "Deaths" : 0}}, {"c_ref" : "Utah", "totals" : {"Cases" : 2607, "Deaths" : 19}, "daily" : {"Cases" : 56, "Deaths" : 0}}, {"c_ref" : "Wasatch", "totals" : {"Cases" : 349, "Deaths" : 2}, "daily" : {"Cases" : 6, "Deaths" : 0}}, {"c_ref" : "Weber-Morgan", "totals" : {"Cases" : 502, "Deaths" : 9}, "daily" : {"Cases" : 31, "Deaths" : 0}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}}, "required": ["c_ref", "totals", "daily"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"0": {"type": "array", "items": {"type": "integer"}}, "1": {"type": "array", "items": {"type": "integer"}}, "2": {"type": "array", "items": {"type": "integer"}}, "3": {"type": "array", "items": {"type": "integer"}}, "5": {"type": "array", "items": {"type": "integer"}}, "8": {"type": "array", "items": {"type": "integer"}}, "13": {"type": "array", "items": {"type": "integer"}}, "40": {"type": "array", "items": {"type": "integer"}}, "21": {"type": "array", "items": {"type": "integer"}}}, "required": ["0", "1", "2", "3", "5", "8", "13", "40", "21"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"0" : [0, 0, 1], "1" : [0, 1, 2], "2" : [1, 2, 3], "3" : [2, 3, 5], "5" : [3, 5, 8], "8" : [5, 8, 13], "13" : [8, 13, 21], "40" : [21, 40, 80], "21" : [13, 21, 40]} | json_instruct | {"type": "object", "properties": {"0": {"type": "array", "items": {"type": "integer"}}, "1": {"type": "array", "items": {"type": "integer"}}, "2": {"type": "array", "items": {"type": "integer"}}, "3": {"type": "array", "items": {"type": "integer"}}, "5": {"type": "array", "items": {"type": "integer"}}, "8": {"type": "array", "items": {"type": "integer"}}, "13": {"type": "array", "items": {"type": "integer"}}, "40": {"type": "array", "items": {"type": "integer"}}, "21": {"type": "array", "items": {"type": "integer"}}}, "required": ["0", "1", "2", "3", "5", "8", "13", "40", "21"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}, "acorn_csp.js": {"type": "string"}, "acorn_csp.min.js": {"type": "string"}, "acorn_loose.js": {"type": "string"}, "acorn_loose.min.js": {"type": "string"}, "walk.js": {"type": "string"}, "walk.min.js": {"type": "string"}}, "required": ["acorn.js", "acorn.min.js", "acorn_csp.js", "acorn_csp.min.js", "acorn_loose.js", "acorn_loose.min.js", "walk.js", "walk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"acorn.js" : "sha256-Xmoc/s38wLeTbcyO14frvfV1v2wd9rNN7SqUSIgf+YU=", "acorn.min.js" : "sha256-/znKVK1hEy0KcUSOBD6jZ5cLq63rTI52ohoVWOTBRi0=", "acorn_csp.js" : "sha256-xYM3kux0Ya5OURcJu3nmJbE4onRrZO94NWF+e6+Q0po=", "acorn_csp.min.js" : "sha256-1m+RagJVarZSW3ogL8Z1ezjnnifIak2x8MtKcMWtHbs=", "acorn_loose.js" : "sha256-X8AVhlyuqSnCj9GoDlONDmNqOwivcu5sj6RvLin3Eyw=", "acorn_loose.min.js" : "sha256-rdMAmeRp1GQgrn+U9ZWNt4Fx6BDVV5/lvFk9DWUSO9s=", "walk.js" : "sha256-s08kyARrYDpUnjgytkrdiPzMSz3uBLSBUaM3mU7cKPA=", "walk.min.js" : "sha256-sl0GsjqLpfESx1NqFNGgAPcxE8L0ljJJiQiIOQVQS7Q="} | json_instruct | {"type": "object", "properties": {"acorn.js": {"type": "string"}, "acorn.min.js": {"type": "string"}, "acorn_csp.js": {"type": "string"}, "acorn_csp.min.js": {"type": "string"}, "acorn_loose.js": {"type": "string"}, "acorn_loose.min.js": {"type": "string"}, "walk.js": {"type": "string"}, "walk.min.js": {"type": "string"}}, "required": ["acorn.js", "acorn.min.js", "acorn_csp.js", "acorn_csp.min.js", "acorn_loose.js", "acorn_loose.min.js", "walk.js", "walk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"category": {"type": "string"}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {}}, "related": {"type": "array", "items": {}}, "store": {"type": "array", "items": {"type": "string"}}}, "required": ["manufacturer", "related", "store"]}}, "required": ["category", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"category" : "", "equivalent" : [], "manufacturer" : "HobbyWing", "name" : "XRotor-Pro 40A *3D* Multirotor Brushless ESC (3-6S / Wire Leaded)", "replacement" : [], "subpart" : [], "urls" : {"manufacturer" : [], "related" : [], "store" : ["http://www.myrcmart.com/hobbywing-xrotorpro-40a-3d-multirotor-brushless-esc-36s-wire-leaded-p-8986.html"]}} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object", "properties": {"manufacturer": {"type": "array", "items": {}}, "related": {"type": "array", "items": {}}, "store": {"type": "array", "items": {"type": "string"}}}, "required": ["manufacturer", "related", "store"]}}, "required": ["category", "equivalent", "manufacturer", "name", "replacement", "subpart", "urls"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CWM\\BroadWorksConnector\\": {"type": "string"}}, "required": ["CWM\\BroadWorksConnector\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CWM\\BroadWorksConnector\\Tests\\": {"type": "string"}}, "required": ["CWM\\BroadWorksConnector\\Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-xml": {"type": "string"}, "ext-dom": {"type": "string"}, "ext-json": {"type": "string"}, "myclabs/php-enum": {"type": "string"}}, "required": ["php", "ext-xml", "ext-dom", "ext-json", "myclabs/php-enum"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "suggest": {"type": "object", "properties": {"ext-soap": {"type": "string"}, "ext-socket": {"type": "string"}}, "required": ["ext-soap", "ext-socket"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "autoload-dev", "require", "require-dev", "suggest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cwm/broadworks-connector", "description" : "Library for connecting to BroadWorks OCI-P API", "type" : "library", "license" : "MIT", "authors" : [{"name" : "Chase Miller", "email" : "chase@miller.sh"}], "autoload" : {"psr-4" : {"CWM\\BroadWorksConnector\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"CWM\\BroadWorksConnector\\Tests\\" : "tests/"}}, "require" : {"php" : ">=5.4.0", "ext-xml" : "*", "ext-dom" : "*", "ext-json" : "*", "myclabs/php-enum" : "^1.6"}, "require-dev" : {"phpunit/phpunit" : "^4.8 || ^5.7 || ^6.5"}, "suggest" : {"ext-soap" : "Needed if using SOAP to make OCI-P calls.", "ext-socket" : "Needed if using TCP to make OCI-P calls."}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CWM\\BroadWorksConnector\\": {"type": "string"}}, "required": ["CWM\\BroadWorksConnector\\"]}}, "required": ["psr-4"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"CWM\\BroadWorksConnector\\Tests\\": {"type": "string"}}, "required": ["CWM\\BroadWorksConnector\\Tests\\"]}}, "required": ["psr-4"]}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "ext-xml": {"type": "string"}, "ext-dom": {"type": "string"}, "ext-json": {"type": "string"}, "myclabs/php-enum": {"type": "string"}}, "required": ["php", "ext-xml", "ext-dom", "ext-json", "myclabs/php-enum"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}}, "required": ["phpunit/phpunit"]}, "suggest": {"type": "object", "properties": {"ext-soap": {"type": "string"}, "ext-socket": {"type": "string"}}, "required": ["ext-soap", "ext-socket"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "autoload-dev", "require", "require-dev", "suggest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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" : 1973, "sex" : "F", "n" : 8, "prop" : 5.15e-06}, {"year" : 1974, "sex" : "F", "n" : 8, "prop" : 5.11e-06}, {"year" : 1978, "sex" : "F", "n" : 6, "prop" : 3.65e-06}, {"year" : 1991, "sex" : "F", "n" : 5, "prop" : 2.46e-06}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/libs.css": {"type": "string"}, "/js/libs.js": {"type": "string"}, "/css/defs.css": {"type": "string"}, "/js/defs.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/libs.css", "/js/libs.js", "/css/defs.css", "/js/defs.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/css/libs.css" : "/css/libs.css", "/js/libs.js" : "/js/libs.js", "/css/defs.css" : "/css/defs.css", "/js/defs.js" : "/js/defs.js"} | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/libs.css": {"type": "string"}, "/js/libs.js": {"type": "string"}, "/css/defs.css": {"type": "string"}, "/js/defs.js": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css", "/css/libs.css", "/js/libs.js", "/css/defs.css", "/js/defs.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "engine": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "jshint": {"type": "string"}, "uglify-js": {"type": "string"}, "hbs": {"type": "string"}}, "required": ["commander", "jshint", "uglify-js", "hbs"]}}, "required": ["name", "version", "author", "engine", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "backbone.markdown", "version" : "0.3.6", "author" : "makesites", "engine" : {"node" : ">=0.8.x"}, "dependencies" : {"commander" : "~0.5", "jshint" : "~0.9", "uglify-js" : "2.3.x", "hbs" : "~1.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "engine": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"commander": {"type": "string"}, "jshint": {"type": "string"}, "uglify-js": {"type": "string"}, "hbs": {"type": "string"}}, "required": ["commander", "jshint", "uglify-js", "hbs"]}}, "required": ["name", "version", "author", "engine", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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-w623-fh3x-ffcc", "modified" : "2022-05-01T02:09:36Z", "published" : "2022-05-01T02:09:36Z", "aliases" : ["CVE-2005-2576"], "details" : "CaLogic 1.22, and possibly earlier versions, allows remote attackers to obtain sensitive information via a direct request to (1) doclsqlres.php, (2) clmcpreload.php, (3) viewhistlog.php, (4) mcconfig.php, (5) doclsqlbak.php, (6) defcalsel.php, or (7) cl_minical.php, which reveals the path in an error message.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2005-2576"}, {"type" : "WEB", "url" : "http://marc.info/?l=bugtraq&m=112369871827743&w=2"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}} | json_instruct | {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "PrayerList", "displayName" : "PrayerList"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"member_changed_hook": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"diffs": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "items"]}}, "required": ["diffs"]}}, "required": ["type", "required", "properties"]}}, "required": ["member_changed_hook"]}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "required", "properties", "additionalProperties"]}}, "definitions": {"type": "object", "properties": {"MemberDiff": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"key": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "new": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}, "format": {"type": "string"}, "minimum": {"type": "number"}}, "required": ["type", "format", "minimum"]}, "old": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}, "format": {"type": "string"}, "minimum": {"type": "number"}}, "required": ["type", "format", "minimum"]}}, "required": ["key", "new", "old"]}}, "required": ["description", "type", "required", "properties"]}}, "required": ["MemberDiff"]}}, "required": ["$schema", "title", "oneOf", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "http://json-schema.org/draft-07/schema#", "title" : "ExecuteMsg", "oneOf" : [{"type" : "object", "required" : ["member_changed_hook"], "properties" : {"member_changed_hook" : {"type" : "object", "required" : ["diffs"], "properties" : {"diffs" : {"type" : "array", "items" : {"$ref" : "#/definitions/MemberDiff"}}}}}, "additionalProperties" : false}], "definitions" : {"MemberDiff" : {"description" : "MemberDiff shows the old and new states for a given cw4 member They cannot both be None. old = None, new = Some -> Insert old = Some, new = Some -> Update old = Some, new = None -> Delete", "type" : "object", "required" : ["key"], "properties" : {"key" : {"type" : "string"}, "new" : {"type" : ["integer", "null"], "format" : "uint64", "minimum" : 0.0}, "old" : {"type" : ["integer", "null"], "format" : "uint64", "minimum" : 0.0}}}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "oneOf": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"member_changed_hook": {"type": "object", "properties": {"type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"diffs": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"$ref": {"type": "string"}}, "required": ["$ref"]}}, "required": ["type", "items"]}}, "required": ["diffs"]}}, "required": ["type", "required", "properties"]}}, "required": ["member_changed_hook"]}, "additionalProperties": {"type": "boolean"}}, "required": ["type", "required", "properties", "additionalProperties"]}}, "definitions": {"type": "object", "properties": {"MemberDiff": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"key": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "new": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}, "format": {"type": "string"}, "minimum": {"type": "number"}}, "required": ["type", "format", "minimum"]}, "old": {"type": "object", "properties": {"type": {"type": "array", "items": {"type": "string"}}, "format": {"type": "string"}, "minimum": {"type": "number"}}, "required": ["type", "format", "minimum"]}}, "required": ["key", "new", "old"]}}, "required": ["description", "type", "required", "properties"]}}, "required": ["MemberDiff"]}}, "required": ["$schema", "title", "oneOf", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "bd7b4bc711aaf6ce84115e33ca39a3cd7258895b"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["ZZ1735"], "\uc81c\uc548\uc77c\uc790" : ["2005-05-04"], "\uc81c\uc548\uc790" : ["\uad6d\uac00\uc778\uad8c\uc704\uc6d0\ud68c\uc704\uc6d0\uc7a5"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c17\ub300(2004~2008)\uc81c253\ud68c"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4" : {"\uc18c\uad00\uc704\uc6d0\ud68c" : ["\ud658\uacbd\ub178\ub3d9\uc704\uc6d0\ud68c"], "\ud68c\ubd80\uc77c" : ["2005-05-07"], "\uc0c1\uc815\uc77c" : [""], "\ucc98\ub9ac\uc77c" : [""], "\ucc98\ub9ac\uacb0\uacfc" : [""], "\ubb38\uc11c" : [""]}} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4": {"type": "object", "properties": {"\uc18c\uad00\uc704\uc6d0\ud68c": {"type": "array", "items": {"type": "string"}}, "\ud68c\ubd80\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uc77c": {"type": "array", "items": {"type": "string"}}, "\ucc98\ub9ac\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc18c\uad00\uc704\uc6d0\ud68c", "\ud68c\ubd80\uc77c", "\uc0c1\uc815\uc77c", "\ucc98\ub9ac\uc77c", "\ucc98\ub9ac\uacb0\uacfc", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", " \uc18c\uad00\uc704 \uc2ec\uc0ac\uc815\ubcf4"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "shortName": {"type": "string"}, "description": {"type": "string"}, "themeColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "lang": {"type": "string"}}, "required": ["name", "shortName", "description", "themeColor", "backgroundColor", "lang"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ARNext", "shortName" : "ARNext", "description" : "A Nuxt.js & Netlify CMS boilerplate.", "themeColor" : "#0b3765", "backgroundColor" : "#ffffff", "lang" : "pt-BR"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "shortName": {"type": "string"}, "description": {"type": "string"}, "themeColor": {"type": "string"}, "backgroundColor": {"type": "string"}, "lang": {"type": "string"}}, "required": ["name", "shortName", "description", "themeColor", "backgroundColor", "lang"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["sprity-dirs", "x-git-grep"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "MUST HAVE A PLACE AMONGST THESE INNATE AXIOMS.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/547.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["clean", "build", "test", "prepublishOnly"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-byungi": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "eslint", "eslint-config-byungi", "jest", "ts-jest", "typescript"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "eslintIgnore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "author", "keywords", "license", "version", "main", "types", "files", "scripts", "devDependencies", "eslintConfig", "eslintIgnore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aico", "description" : "abort in coroutines (promises)", "repository" : "https://github.com/skt-t1-byungi/aico.git", "author" : "skt-t1-byungi <tiniwz@gmail.com>", "keywords" : ["coroutine", "generator", "async", "promise", "abort", "AbortController", "AbortSignal", "abortable", "cancelable", "cancellation"], "license" : "MIT", "version" : "0.1.1", "main" : "./dist/index.js", "types" : "./dist/index.d.ts", "files" : ["dist"], "scripts" : {"clean" : "rm -rf dist", "build" : "npm run clean && tsc", "test" : "jest", "prepublishOnly" : "npm run test && npm run build"}, "devDependencies" : {"@types/jest" : "^25.1.4", "eslint" : "^6.8.0", "eslint-config-byungi" : "^0.10.4", "jest" : "^25.2.4", "ts-jest" : "^25.3.0", "typescript" : "^3.8.3"}, "eslintConfig" : {"extends" : "byungi/typescript"}, "eslintIgnore" : ["dist"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["clean", "build", "test", "prepublishOnly"]}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "eslint": {"type": "string"}, "eslint-config-byungi": {"type": "string"}, "jest": {"type": "string"}, "ts-jest": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "eslint", "eslint-config-byungi", "jest", "ts-jest", "typescript"]}, "eslintConfig": {"type": "object", "properties": {"extends": {"type": "string"}}, "required": ["extends"]}, "eslintIgnore": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "repository", "author", "keywords", "license", "version", "main", "types", "files", "scripts", "devDependencies", "eslintConfig", "eslintIgnore"], "$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": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"as-wasi": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["as-wasi", "assemblyscript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "name-conflict-assertion-error", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"build" : "asc index.ts -b index.wasm -t index.wat --validate -O3 --use abort=wasi_abort"}, "author" : "Aaron Turner", "license" : "MIT", "dependencies" : {"as-wasi" : "git+https://github.com/jedisct1/as-wasi.git", "assemblyscript" : "^0.9.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"as-wasi": {"type": "string"}, "assemblyscript": {"type": "string"}}, "required": ["as-wasi", "assemblyscript"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "prefer-dist": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "icanboogie/module-installer": {"type": "string"}, "icybee/module-contents": {"type": "string"}}, "required": ["php", "icanboogie/module-installer", "icybee/module-contents"]}, "suggest": {"type": "object", "properties": {"icybee/module-comments": {"type": "string"}}, "required": ["icybee/module-comments"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Icybee\\Modules\\Articles\\": {"type": "string"}}, "required": ["Icybee\\Modules\\Articles\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "support", "minimum-stability", "prefer-stable", "prefer-dist", "require", "suggest", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "icybee/module-articles", "type" : "icanboogie-module", "description" : "Introduces the Article content type to the CMS Icybee.", "keywords" : ["article", "blog", "node"], "license" : "BSD-3-Clause", "authors" : [{"name" : "Olivier Laviale", "email" : "olivier.laviale@gmail.com", "homepage" : "http://www.weirdog.com/", "role" : "Developer"}], "support" : {"issues" : "https://github.com/Icybee/module-articles/issues", "source" : "https://github.com/Icybee/module-articles"}, "minimum-stability" : "dev", "prefer-stable" : true, "prefer-dist" : true, "require" : {"php" : ">=5.5", "icanboogie/module-installer" : "^1.2", "icybee/module-contents" : "^3.0"}, "suggest" : {"icybee/module-comments" : "Allows users to attach comments to nodes."}, "autoload" : {"psr-4" : {"Icybee\\Modules\\Articles\\" : "lib"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "support": {"type": "object", "properties": {"issues": {"type": "string"}, "source": {"type": "string"}}, "required": ["issues", "source"]}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "prefer-dist": {"type": "boolean"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "icanboogie/module-installer": {"type": "string"}, "icybee/module-contents": {"type": "string"}}, "required": ["php", "icanboogie/module-installer", "icybee/module-contents"]}, "suggest": {"type": "object", "properties": {"icybee/module-comments": {"type": "string"}}, "required": ["icybee/module-comments"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Icybee\\Modules\\Articles\\": {"type": "string"}}, "required": ["Icybee\\Modules\\Articles\\"]}}, "required": ["psr-4"]}}, "required": ["name", "type", "description", "keywords", "license", "authors", "support", "minimum-stability", "prefer-stable", "prefer-dist", "require", "suggest", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ForceHttpsRedirection": {"type": "boolean"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "GraphConfig": {"type": "object", "properties": {"Uri": {"type": "string"}, "User": {"type": "string"}, "Password": {"type": "string"}}, "required": ["Uri", "User", "Password"]}, "Security": {"type": "object", "properties": {"Enabled": {"type": "boolean"}, "Oidc": {"type": "object", "properties": {"ClientId": {"type": "string"}, "Authority": {"type": "string"}}, "required": ["ClientId", "Authority"]}, "Swagger": {"type": "object", "properties": {"ClientId": {"type": "string"}, "ClientSecret": {"type": "string"}}, "required": ["ClientId", "ClientSecret"]}, "RoleMappings": {"type": "string"}}, "required": ["Enabled", "Oidc", "Swagger", "RoleMappings"]}}, "required": ["ForceHttpsRedirection", "Logging", "AllowedHosts", "GraphConfig", "Security"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ForceHttpsRedirection" : false, "Logging" : {"LogLevel" : {"Default" : "Warning", "System" : "Warning", "Microsoft" : "Warning"}}, "AllowedHosts" : "*", "GraphConfig" : {"Uri" : "bolt://localhost", "User" : "", "Password" : ""}, "Security" : {"Enabled" : false, "Oidc" : {"ClientId" : "", "Authority" : ""}, "Swagger" : {"ClientId" : "", "ClientSecret" : ""}, "RoleMappings" : ""}} | json_instruct | {"type": "object", "properties": {"ForceHttpsRedirection": {"type": "boolean"}, "Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "System": {"type": "string"}, "Microsoft": {"type": "string"}}, "required": ["Default", "System", "Microsoft"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "GraphConfig": {"type": "object", "properties": {"Uri": {"type": "string"}, "User": {"type": "string"}, "Password": {"type": "string"}}, "required": ["Uri", "User", "Password"]}, "Security": {"type": "object", "properties": {"Enabled": {"type": "boolean"}, "Oidc": {"type": "object", "properties": {"ClientId": {"type": "string"}, "Authority": {"type": "string"}}, "required": ["ClientId", "Authority"]}, "Swagger": {"type": "object", "properties": {"ClientId": {"type": "string"}, "ClientSecret": {"type": "string"}}, "required": ["ClientId", "ClientSecret"]}, "RoleMappings": {"type": "string"}}, "required": ["Enabled", "Oidc", "Swagger", "RoleMappings"]}}, "required": ["ForceHttpsRedirection", "Logging", "AllowedHosts", "GraphConfig", "Security"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.0, 31.333333333333332], [137.0, 31.416666666666668], [137.125, 31.416666666666668], [137.125, 31.333333333333332], [137.0, 31.333333333333332]]]}, "properties" : {"code" : 473700, "url" : "http://madefor.github.io/0410/api/v1/473700.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/473700.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"authorId": {"type": "string"}, "authorName": {"type": "string"}, "avatarImage": {"type": "string"}, "discussionId": {"type": "integer"}, "rawTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["authorId", "authorName", "avatarImage", "discussionId", "rawTitle", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authorId" : "zaharch", "authorName" : "nosound", "avatarImage" : "2243477-kg.png", "discussionId" : 110335, "rawTitle" : "7th place solution summary", "title" : "7th place solution", "url" : "https://www.kaggle.com/c/recursion-cellular-image-classification/discussion/110335"} | json_instruct | {"type": "object", "properties": {"authorId": {"type": "string"}, "authorName": {"type": "string"}, "avatarImage": {"type": "string"}, "discussionId": {"type": "integer"}, "rawTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["authorId", "authorName", "avatarImage", "discussionId", "rawTitle", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "object", "properties": {}, "required": []}, "queryStringParameters": {"type": "null"}, "pathParameters": {"type": "null"}, "stageVariables": {"type": "null"}, "requestContext": {"type": "object", "properties": {"path": {"type": "string"}, "stage": {"type": "string"}, "requestId": {"type": "string"}, "resourcePath": {"type": "string"}, "httpMethod": {"type": "string"}}, "required": ["path", "stage", "requestId", "resourcePath", "httpMethod"]}, "body": {"type": "string"}, "isBase64Encoded": {"type": "boolean"}}, "required": ["resource", "path", "httpMethod", "headers", "queryStringParameters", "pathParameters", "stageVariables", "requestContext", "body", "isBase64Encoded"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resource" : "/", "path" : "/", "httpMethod" : "POST", "headers" : {}, "queryStringParameters" : null, "pathParameters" : null, "stageVariables" : null, "requestContext" : {"path" : "/", "stage" : "", "requestId" : "", "resourcePath" : "", "httpMethod" : "POST"}, "body" : "{ \"service\": \"https://graphical.weather.gov:443/xml/SOAP_server/ndfdXMLserver.php\", \"requestBody\": \"https://graphical.weather.gov/xml/docs/SOAP_Requests/LatLonListZipCode.xml\", \"responseMap\": { \"latLonList\": {} } }", "isBase64Encoded" : false} | json_instruct | {"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "object", "properties": {}, "required": []}, "queryStringParameters": {"type": "null"}, "pathParameters": {"type": "null"}, "stageVariables": {"type": "null"}, "requestContext": {"type": "object", "properties": {"path": {"type": "string"}, "stage": {"type": "string"}, "requestId": {"type": "string"}, "resourcePath": {"type": "string"}, "httpMethod": {"type": "string"}}, "required": ["path", "stage", "requestId", "resourcePath", "httpMethod"]}, "body": {"type": "string"}, "isBase64Encoded": {"type": "boolean"}}, "required": ["resource", "path", "httpMethod", "headers", "queryStringParameters", "pathParameters", "stageVariables", "requestContext", "body", "isBase64Encoded"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Process manipulation": {"type": "object", "properties": {"process_name": {"type": "array", "items": {"type": "string"}}, "cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["process_name", "cmdline"]}, "Service manipulation": {"type": "object", "properties": {"cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["cmdline"]}}, "required": ["Process manipulation", "Service manipulation"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Process manipulation" : {"process_name" : ["kill*", "pkill", "pskill.exe", "tskill.exe"], "cmdline" : ["stop-process", "terminate"]}, "Service manipulation" : {"cmdline" : ["net stop"]}} | json_instruct | {"type": "object", "properties": {"Process manipulation": {"type": "object", "properties": {"process_name": {"type": "array", "items": {"type": "string"}}, "cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["process_name", "cmdline"]}, "Service manipulation": {"type": "object", "properties": {"cmdline": {"type": "array", "items": {"type": "string"}}}, "required": ["cmdline"]}}, "required": ["Process manipulation", "Service manipulation"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x875353da48c4f9627c4d0b8b8c37b162fc43ce67", "tool" : "oyente", "start" : 1563494028.8405235, "end" : 1563494031.7037816, "duration" : 2.863258123397827, "analysis" : []} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Question": {"type": "string"}, "Title": {"type": "string"}, "Tags": {"type": "string"}}, "required": ["Question", "Title", "Tags"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Question" : "<p>INMO '92 Question 9:</p> <blockquote> <p>Find <span class=\"math-container\" id=\"q_417\">$n$</span> such that in a regular <span class=\"math-container\" id=\"q_418\">$n$</span>-gon <span class=\"math-container\" id=\"q_419\">$A_1A_2 ...A_n$</span> we have <span class=\"math-container\" id=\"q_420\">$$\\frac{1}{A_1A_2}=\\frac{1}{A_1A_3}+\\frac{1}{A_1A_4}$$</span></p> </blockquote> <p>I tried the following</p> <p>Assume it is inscribed in a circle.</p> <p>Then length of chord is <span class=\"math-container\" id=\"q_421\">$2\\sin(\\theta)$</span> where <span class=\"math-container\" id=\"q_422\">$\\theta$</span> is half the angle subtended at the center between consecutive points. So, <span class=\"math-container\" id=\"q_423\">$\\theta=\\frac{180^\\circ}{n}$</span>.</p> <p>Then we get <span class=\"math-container\" id=\"q_424\">$$\\csc(\\theta)=\\csc(2\\theta)+\\csc(3\\theta)$$</span> Not sure quite how to proceed from there- using double and triple angle formulae doesn't seem to work</p>", "Title" : "Finding <span class=\"math-container\" id=\"q_413\">$n$</span> such that in a regular <span class=\"math-container\" id=\"q_414\">$n$</span>-gon <span class=\"math-container\" id=\"q_415\">$A_1A_2\\ldots A_n$</span> we have <span class=\"math-container\" id=\"q_416\">$\\frac1{A_1A_2}=\\frac1{A_1A_3}+\\frac1{A_1A_4}$</span>", "Tags" : "geometry,trigonometry,contest-math,polygons"} | json_instruct | {"type": "object", "properties": {"Question": {"type": "string"}, "Title": {"type": "string"}, "Tags": {"type": "string"}}, "required": ["Question", "Title", "Tags"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"virtualNetworkResourceId": {"type": "object", "properties": {"defaultValue": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["description", "displayName"]}, "type": {"type": "string"}}, "required": ["defaultValue", "metadata", "type"]}, "registrationEnabled": {"type": "object", "properties": {"defaultValue": {"type": "boolean"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["description", "displayName"]}, "type": {"type": "string"}}, "required": ["defaultValue", "metadata", "type"]}}, "required": ["virtualNetworkResourceId", "registrationEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"virtualNetworkResourceId" : {"defaultValue" : [], "metadata" : {"description" : "Resource Ids of a vNet to link. The format must be: '/subscriptions/{subscription id}/resourceGroups/{resourceGroup name}/providers/Microsoft.Network/virtualNetworks/{virtual network name}", "displayName" : "Vnet Resource IDs"}, "type" : "array"}, "registrationEnabled" : {"defaultValue" : false, "metadata" : {"description" : "Enables automatic DNS registration in the zone for the linked vNet.", "displayName" : "Enable Registration"}, "type" : "Boolean"}} | json_instruct | {"type": "object", "properties": {"virtualNetworkResourceId": {"type": "object", "properties": {"defaultValue": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["description", "displayName"]}, "type": {"type": "string"}}, "required": ["defaultValue", "metadata", "type"]}, "registrationEnabled": {"type": "object", "properties": {"defaultValue": {"type": "boolean"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["description", "displayName"]}, "type": {"type": "string"}}, "required": ["defaultValue", "metadata", "type"]}}, "required": ["virtualNetworkResourceId", "registrationEnabled"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "prettier": {"type": "string"}, "prettier:diff": {"type": "string"}}, "required": ["start", "build", "swizzle", "deploy", "prettier", "prettier:diff"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/plugin-client-redirects": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "clsx": {"type": "string"}, "docusaurus-plugin-internaldocs-fb": {"type": "string"}, "docusaurus-plugin-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/plugin-client-redirects", "@docusaurus/preset-classic", "clsx", "docusaurus-plugin-internaldocs-fb", "docusaurus-plugin-sass", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}, "resolutions": {"type": "object", "properties": {"is-svg": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["is-svg", "shelljs"]}}, "required": ["scripts", "dependencies", "devDependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"scripts" : {"start" : "docusaurus start", "build" : "docusaurus build", "swizzle" : "docusaurus swizzle", "deploy" : "docusaurus deploy", "prettier" : "prettier --config .prettierrc --write \"**/*.{js,md,mdx}\"", "prettier:diff" : "prettier --config .prettierrc --list-different \"**/*.{js,md,mdx}\""}, "dependencies" : {"@docusaurus/core" : "^2.0.0-beta.8", "@docusaurus/plugin-client-redirects" : "^2.0.0-beta.8", "@docusaurus/preset-classic" : "^2.0.0-beta.8", "clsx" : "^1.1.1", "docusaurus-plugin-internaldocs-fb" : "0.10.7", "docusaurus-plugin-sass" : "^0.1.12", "react" : "^17.0.2", "react-dom" : "^17.0.2"}, "devDependencies" : {"prettier" : "^2.0.2"}, "resolutions" : {"is-svg" : "4.2.2", "shelljs" : "^0.8.5"}} | json_instruct | {"type": "object", "properties": {"scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "swizzle": {"type": "string"}, "deploy": {"type": "string"}, "prettier": {"type": "string"}, "prettier:diff": {"type": "string"}}, "required": ["start", "build", "swizzle", "deploy", "prettier", "prettier:diff"]}, "dependencies": {"type": "object", "properties": {"@docusaurus/core": {"type": "string"}, "@docusaurus/plugin-client-redirects": {"type": "string"}, "@docusaurus/preset-classic": {"type": "string"}, "clsx": {"type": "string"}, "docusaurus-plugin-internaldocs-fb": {"type": "string"}, "docusaurus-plugin-sass": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@docusaurus/core", "@docusaurus/plugin-client-redirects", "@docusaurus/preset-classic", "clsx", "docusaurus-plugin-internaldocs-fb", "docusaurus-plugin-sass", "react", "react-dom"]}, "devDependencies": {"type": "object", "properties": {"prettier": {"type": "string"}}, "required": ["prettier"]}, "resolutions": {"type": "object", "properties": {"is-svg": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["is-svg", "shelljs"]}}, "required": ["scripts", "dependencies", "devDependencies", "resolutions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[130.25, 39.583333333333336], [130.25, 39.666666666666664], [130.375, 39.666666666666664], [130.375, 39.583333333333336], [130.25, 39.583333333333336]]]}, "properties" : {"code" : 593032, "url" : "http://madefor.github.io/0410/api/v1/593032.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/593032.geojson"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "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" : "bioconductor-kegggraph", "downloads" : 28800, "count" : 8122}] | 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#"} |
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"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "dev", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"live-server": {"type": "string"}, "phaser": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "express": {"type": "string"}}, "required": ["live-server", "phaser", "ts-loader", "typescript", "webpack", "webpack-cli", "express"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "endless-runner", "version" : "0.1.0", "description" : "A simple Endless Runner game", "main" : "app.js", "engines" : {"node" : "12.x", "npm" : "6.x"}, "scripts" : {"build" : "webpack", "dev" : "webpack --watch & live-server --port=8080", "start" : "node server.js"}, "author" : "Budiman Putra Jaya", "license" : "MIT", "devDependencies" : {"live-server" : "^1.2.1", "phaser" : "^3.24.1", "ts-loader" : "^8.0.9", "typescript" : "^4.0.5", "webpack" : "^5.4.0", "webpack-cli" : "^4.2.0", "express" : "^4.17.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["build", "dev", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"live-server": {"type": "string"}, "phaser": {"type": "string"}, "ts-loader": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "express": {"type": "string"}}, "required": ["live-server", "phaser", "ts-loader", "typescript", "webpack", "webpack-cli", "express"]}}, "required": ["name", "version", "description", "main", "engines", "scripts", "author", "license", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "integer"}, "initial-access": {"type": "string"}, "motive": {"type": "string"}}, "required": ["actor", "cost-usd", "impacted-user-count", "initial-access", "motive"]}, "year": {"type": "integer"}}, "required": ["entity", "links", "month", "summary", "tags", "year"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"entity" : "Albion Online", "links" : ["https://securityaffairs.co/wordpress/109731/data-breach/albion-online-data-breach.html"], "month" : 10, "summary" : "Albion Online game maker discloses a data breach, hackers gained access to the company forum databas", "tags" : {"actor" : "Criminal", "cost-usd" : 0, "impacted-user-count" : 0, "initial-access" : "OWASP:A9", "motive" : "PII:?"}, "year" : 2020} | json_instruct | {"type": "object", "properties": {"entity": {"type": "string"}, "links": {"type": "array", "items": {"type": "string"}}, "month": {"type": "integer"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"actor": {"type": "string"}, "cost-usd": {"type": "integer"}, "impacted-user-count": {"type": "integer"}, "initial-access": {"type": "string"}, "motive": {"type": "string"}}, "required": ["actor", "cost-usd", "impacted-user-count", "initial-access", "motive"]}, "year": {"type": "integer"}}, "required": ["entity", "links", "month", "summary", "tags", "year"], "$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": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"period_id" : 3, "rest_mode_state" : 0, "score" : 0, "score_activity_balance" : 0, "score_hrv_balance" : 0, "score_previous_day" : 0, "score_previous_night" : 0, "score_recovery_index" : 0, "score_resting_hr" : 0, "score_sleep_balance" : 0, "score_temperature" : 0, "summary_date" : "2020-12-25"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"period_id": {"type": "integer"}, "rest_mode_state": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"type": "integer"}, "score_recovery_index": {"type": "integer"}, "score_resting_hr": {"type": "integer"}, "score_sleep_balance": {"type": "integer"}, "score_temperature": {"type": "integer"}, "summary_date": {"type": "string"}}, "required": ["period_id", "rest_mode_state", "score", "score_activity_balance", "score_hrv_balance", "score_previous_day", "score_previous_night", "score_recovery_index", "score_resting_hr", "score_sleep_balance", "score_temperature", "summary_date"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "Median": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}}, "required": ["Mean", "Median"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Mean" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : -0.04200122065122901, "upper_bound" : -0.034209689166237595}, "point_estimate" : -0.03841649494814392, "standard_error" : 0.0019513110878133654}, "Median" : {"confidence_interval" : {"confidence_level" : 0.95, "lower_bound" : -0.04089178345135512, "upper_bound" : -0.03577697740385932}, "point_estimate" : -0.03852401139366546, "standard_error" : 0.0012973195196888027}} | json_instruct | {"type": "object", "properties": {"Mean": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}, "Median": {"type": "object", "properties": {"confidence_interval": {"type": "object", "properties": {"confidence_level": {"type": "number"}, "lower_bound": {"type": "number"}, "upper_bound": {"type": "number"}}, "required": ["confidence_level", "lower_bound", "upper_bound"]}, "point_estimate": {"type": "number"}, "standard_error": {"type": "number"}}, "required": ["confidence_interval", "point_estimate", "standard_error"]}}, "required": ["Mean", "Median"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Min-Max Problems on Factor Graphs.", "fields" : ["clique cover", "constraint satisfaction problem", "constraint satisfaction dual problem", "factor graph", "bottleneck traveling salesman problem"], "abstract" : "We study the min-max problem in factor graphs, which seeks the assignment that minimizes the maximum value over all factors. We reduce this problem to both min-sum and sum-product inference, and focus on the later. In this approach the min-max inference problem is reduced to a sequence of Constraint Satisfaction Problems (CSP), which allows us to solve the problem by sampling from a uniform distribution over the set of solutions. We demonstrate how this scheme provides a message passing solution to several NP-hard combinatorial problems, such as minmax clustering (a.k.a. K-clustering), asymmetric K-center clustering problem, K-packing and the bottleneck traveling salesman problem. Furthermore, we theoretically relate the min-max reductions and several NP hard decision problems such as clique cover, set-cover, maximum clique and Hamiltonian cycle, therefore also providing message passing solutions for these problems. Experimental results suggest that message passing often provides near optimal min-max solutions for moderate size instances.", "citation" : "Citations (8)", "year" : "2014", "departments" : ["University of Alberta", "University of Toronto", "University of Toronto", "University of Alberta"], "conf" : "icml", "authors" : ["Siamak Ravanbakhsh.....http://dblp.org/pers/hd/r/Ravanbakhsh:Siamak", "Christopher Srinivasa.....http://dblp.org/pers/hd/s/Srinivasa:Christopher", "Brendan J. Frey.....http://dblp.org/pers/hd/f/Frey:Brendan_J=", "Russell Greiner.....http://dblp.org/pers/hd/g/Greiner:Russell"], "pages" : 9} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "year", "departments", "conf", "authors", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Time" : "2021-03-25T17:00:00Z", "Temp" : 6.1, "RelHum" : 94, "WindSpeed" : 6.6, "WindDir" : 269} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "definition": {"type": "object", "properties": {"type": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["type", "members"]}}, "required": ["type", "count", "definition"]}}}, "required": ["sheet", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sheet" : "GatheringRarePopTimeTable", "definitions" : [{"type" : "repeat", "count" : 3, "definition" : {"type" : "group", "members" : [{"name" : "StartTime"}, {"name" : "Duration(m)"}]}}]} | json_instruct | {"type": "object", "properties": {"sheet": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "count": {"type": "integer"}, "definition": {"type": "object", "properties": {"type": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["type", "members"]}}, "required": ["type", "count", "definition"]}}}, "required": ["sheet", "definitions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "color": {"type": "string"}}, "required": ["key", "name", "color"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"key" : "wh_main_dwf_barak_varr", "name" : "Barak Varr", "color" : "#613278"} | json_instruct | {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "color": {"type": "string"}}, "required": ["key", "name", "color"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 1867, "cartId" : "a1cb23dc-e9c2-4465-a9a9-150503b8a21e", "preferredProducts" : [298, 2594, 3612, 378, 1898, 4784, 4264, 4486], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"/js/admin.js": {"type": "string"}, "/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin.css": {"type": "string"}}, "required": ["/js/admin.js", "/js/app.js", "/css/app.css", "/css/admin.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"/js/admin.js" : "/js/admin.js?id=db03d6dae6987f550519", "/js/app.js" : "/js/app.js?id=f2007c56bf6f148d7bef", "/css/app.css" : "/css/app.css?id=ed19634667e99629274c", "/css/admin.css" : "/css/admin.css?id=8bd22b222f28af08189c"} | json_instruct | {"type": "object", "properties": {"/js/admin.js": {"type": "string"}, "/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin.css": {"type": "string"}}, "required": ["/js/admin.js", "/js/app.js", "/css/app.css", "/css/admin.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}}, "required": ["i"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"img" : {"i" : ["i", "1036", "1640"]}} | json_instruct | {"type": "object", "properties": {"img": {"type": "object", "properties": {"i": {"type": "array", "items": {"type": "string"}}}, "required": ["i"]}}, "required": ["img"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : 1801, "commit" : "fcce72312d0dbdd5d94a296539e114850f09d0c5", "date" : "2021-05-31T09:19:41.356Z"}, "versionStart" : {"versionNum" : 1800, "commit" : "74b329da5da109098f17d8bee7f4a5221f94d80e", "date" : "2021-05-31T09:18:17.644Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "blockchains/smartchain/assets/0xd29EaCE1FcFF9e9252B4A54f5Cbe858ceeFE959c/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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"count": {"type": "integer"}, "254031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "292010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "412010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "251000": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "131111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "254031", "132011", "252030", "292010", "412010", "251000", "436010", "N.A.//", "131111"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"count" : 15, "254031" : {"count" : 1}, "132011" : {"count" : 1}, "252030" : {"count" : 1}, "292010" : {"count" : 1}, "412010" : {"count" : 1}, "251000" : {"count" : 1}, "436010" : {"count" : 1}, "N.A.//" : {"count" : 7}, "131111" : {"count" : 1}} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "254031": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "132011": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "252030": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "292010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "412010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "251000": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "436010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "N.A.//": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "131111": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}}, "required": ["count", "254031", "132011", "252030", "292010", "412010", "251000", "436010", "N.A.//", "131111"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"some": {"type": "string"}}, "required": ["some"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"some" : "date"} | json_instruct | {"type": "object", "properties": {"some": {"type": "string"}}, "required": ["some"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type": "string"}, "disambiguation": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}, "tag-list": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "string"}, "name": {"type": "string"}}, "required": ["count", "name"]}}, "type": {"type": "string"}}, "required": ["area", "country", "disambiguation", "id", "name", "sort-name", "tag-list", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"area" : {"id" : "8a754a16-0027-3a29-b6d7-2b40ea0481ed", "iso-3166-1-code-list" : ["GB"], "name" : "United Kingdom", "sort-name" : "United Kingdom"}, "country" : "GB", "disambiguation" : "UK punk band", "id" : "a9e670ea-2b66-44a9-b402-d770de61b0cf", "name" : "Youth in Asia", "sort-name" : "Youth in Asia", "tag-list" : [{"count" : "1", "name" : "anarcho"}, {"count" : "1", "name" : "england"}, {"count" : "1", "name" : "london"}, {"count" : "1", "name" : "punk"}, {"count" : "1", "name" : "uk"}], "type" : "Group"} | json_instruct | {"type": "object", "properties": {"area": {"type": "object", "properties": {"id": {"type": "string"}, "iso-3166-1-code-list": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "sort-name": {"type": "string"}}, "required": ["id", "iso-3166-1-code-list", "name", "sort-name"]}, "country": {"type": "string"}, "disambiguation": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "sort-name": {"type": "string"}, "tag-list": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "string"}, "name": {"type": "string"}}, "required": ["count", "name"]}}, "type": {"type": "string"}}, "required": ["area", "country", "disambiguation", "id", "name", "sort-name", "tag-list", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"baseObjects" : ["[618,893,null,null,null,2.5975651431371023e+307,false]", "[618,{\"Fd\":5e-324,\"\":\"\",\"-100\":\"\"},null,null,\"\",{\"157\":1.2559538218849188e+308,\"655\":\"\",\"823\":122,\"?*\":\"8D*(N)\",\"\":1.236199985155341e+308,\"1.7819937856474542e+308\":82,\"2.7798921031962303e+307\":\"\",\"1.6867091063331294e+308\":969,\"1.0071186350169818e+308\":25}]", "[618,[82,783,655],null,2.4296577289008485e+307]", "[618,893,null,null,null,null]"], "returnObjects" : ["null", "\"894618,[object Object],,,,[object Object]6180618,[object Object],,,,[object Object]\"", "null", "null"], "callbackArgs" : ["{\"0\":893,\"1\":618,\"2\":0,\"3\":[618,893]}", "{\"0\":false,\"1\":893,\"2\":1,\"3\":[618,893]}", "{\"0\":\"894618,[object Object],,,,[object Object]\",\"1\":618,\"2\":0,\"3\":[618,{\"Fd\":5e-324,\"\":\"\",\"-100\":\"\"},null,null,\"\",{\"157\":1.2559538218849188e+308,\"655\":\"\",\"823\":122,\"?*\":\"8D*(N)\",\"\":1.236199985155341e+308,\"1.7819937856474542e+308\":82,\"2.7798921031962303e+307\":\"\",\"1.6867091063331294e+308\":969,\"1.0071186350169818e+308\":25}]}", "{\"0\":null,\"1\":893,\"2\":1,\"3\":[618,893]}", "{\"0\":null,\"1\":618,\"2\":0,\"3\":[618,[82,783,655],null,2.4296577289008485e+307]}", "{\"0\":893,\"1\":618,\"2\":0,\"3\":[618,893]}"]} | json_instruct | {"type": "object", "properties": {"baseObjects": {"type": "array", "items": {"type": "string"}}, "returnObjects": {"type": "array", "items": {"type": "string"}}, "callbackArgs": {"type": "array", "items": {"type": "string"}}}, "required": ["baseObjects", "returnObjects", "callbackArgs"], "$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"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-iot-device": {"type": "string"}, "azure-iot-device-mqtt": {"type": "string"}, "wiring-pi": {"type": "string"}}, "required": ["azure-iot-device", "azure-iot-device-mqtt", "wiring-pi"]}}, "required": ["name", "version", "description", "main", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "raspberrypi-nodejs-lesson-3", "version" : "1.1.0", "description" : "nodejs code that blinks the LED connected to raspberry pi while sending messages to Azure IoT Hub", "main" : "app.js", "license" : "MIT", "dependencies" : {"azure-iot-device" : "^1.0.17", "azure-iot-device-mqtt" : "^1.0.17", "wiring-pi" : ">=2.1.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"azure-iot-device": {"type": "string"}, "azure-iot-device-mqtt": {"type": "string"}, "wiring-pi": {"type": "string"}}, "required": ["azure-iot-device", "azure-iot-device-mqtt", "wiring-pi"]}}, "required": ["name", "version", "description", "main", "license", "dependencies"], "$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.