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": {"id": {"type": "string"}, "uid": {"type": "string"}, "comment": {"type": "string"}, "home": {"type": "string"}}, "required": ["id", "uid", "comment", "home"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "tile", "uid" : "515", "comment" : "tile.openstreetmap.org", "home" : "/srv/tile.openstreetmap.org"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "uid": {"type": "string"}, "comment": {"type": "string"}, "home": {"type": "string"}}, "required": ["id", "uid", "comment", "home"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": ... | {"name" : "hugo-theme-basic", "version" : "1.0.0", "description" : "Basic personal site theme styled with minimal tachyons, syntax highlighting, and blog series configuration.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items":... | {"name" : "Periodic Table", "version" : "1.0.0", "authors" : ["David Bisrat"], "license" : "UNLICENSED", "private" : true, "ignore" : ["**/.*", "node_modules", "bower_components", "client/lib"], "dependencies" : {"angular" : "~1.3.16", "angular-route" : "~1.3.16"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "properties"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author... | {"title" : "\u30eb\u30fc\u30df\u30a2\u3068\u30d5\u30e9\u30f3\u3067SweetMagic", "author" : "sohojohotoho", "description" : "\u5f53\u521d\u53cc\u5b50\u3068\u8aa4\u8a8d\u3057\u3066\u3066\u3001\u30eb\u30fc\u30df\u30a2\u306e\u30d5\u30eb\u30cd\u30fc\u30e0\u306f\u300c\u30eb\u30fc\u30df\u30a2\u30fb\u30b9\u30ab\u30fc\u30ec\u30c... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type"... | {"ImageDescription" : "DIGITAL CAMERA", "Make" : "CAMERA", "Model" : "7MP-9GL", "Orientation" : 1, "XResolution" : 72, "YResolution" : 72, "Software" : "V1.04", "ModifyDate" : "2008:06:23 07:54:18", "YCbCrPositioning" : 2, "ExifOffset" : 266, "Compression" : 6, "ThumbnailOffset" : 43852, "ThumbnailLength" : 9088, "Expo... | json_instruct | {"type": "object", "properties": {"ImageDescription": {"type": "string"}, "Make": {"type": "string"}, "Model": {"type": "string"}, "Orientation": {"type": "integer"}, "XResolution": {"type": "integer"}, "YResolution": {"type": "integer"}, "Software": {"type": "string"}, "ModifyDate": {"type": "string"}, "YCbCrPositioni... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ... | {"directions" : ["Melt 2 tablespoons butter in a pot over medium-high heat. Saute scallops and shrimp in hot butter until shrimp are pink, about 5 minutes. Stir tomatoes, artichoke hearts, mushrooms, and pesto into shrimp mixture; cook and stir until heated through, about 5 minutes.", "Pour clam juice, whipping cream, ... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "req... | {"version" : "1.0.5", "name" : "ion-intl-tel-input", "title" : "Ion Intl Tel Input", "description" : "An Ionic component for International Phone Number Input, that allows all countries, validation with google phone lib, limited countries, preferred countries, virtual scrolling and much more.", "author" : {"name" : "Azz... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "license": {"type": "string"}, "h... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score":... | [{"label" : "Crown", "normalizedVertices" : [{"x" : 0.32539737, "y" : 0.0039339736}, {"x" : 0.736485, "y" : 0.0039339736}, {"x" : 0.736485, "y" : 0.16853662}, {"x" : 0.32539737, "y" : 0.16853662}], "score" : 0.5053676}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"ty... | {"name" : "Bluebeary", "symbol" : "BLUB", "logoURI" : "https://raw.githubusercontent.com/an7ana5/crypto/main/BlooBearySmall.png", "decimals" : 0, "address" : "47QLe2y3Ao7r8A2K75XGBjXotrnvUp79arYvf5zNzzmV", "chainId" : 101, "tags" : ["social-token"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "d... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"examine": {"type": "string"}, "realPrice": {"type": "integer"}}, "required": ["examine", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"examine" : "It's a bowl of water.", "realPrice" : 87} | json_instruct | {"type": "object", "properties": {"examine": {"type": "string"}, "realPrice": {"type": "integer"}}, "required": ["examine", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ... | {"userId" : 85916, "cartId" : "6b29bae4-f888-41f1-ac51-3bfba9a77e55", "preferredProducts" : [4148], "productReviews" : [{"productId" : 1289, "reviewText" : "My co-worker Rey has one of these. He says it looks uneven.", "reviewDate" : "2017-11-26T23:36:28.3300617+02:00"}, {"productId" : 4126, "reviewText" : "I tried to ... | 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"}, "reviewD... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["210602001001", "\u5929\u589e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210602001002", "\u91d1\u6c34\u6e7e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210602001003", "\u6c38\u5b89\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["210602001004", "\u805a\u5b9d\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["2106020... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$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"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "... | {"name" : "blog", "version" : "1.0.0", "description" : "Describe blog here", "scripts" : {"start" : "react-doc start", "build" : "react-doc build", "deploy" : "react-doc deploy"}, "keywords" : ["blog", "react-doc", "react"], "devDependencies" : {"create-react-doc" : "0.2.x"}, "author" : "", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "deploy": {"type": "string"}}, "required": ["start", "build", "deploy"]}, "keywords": {"t... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "smooth_lighting": {"type": "boolean"}, "transform": {"type": "string"}}, "required": ["model", "sm... | {"forge_marker" : 1, "defaults" : {"model" : "hexcraft:special/layered_cube", "smooth_lighting" : false, "transform" : "forge:default-block"}, "variants" : {"reinforced" : {"false" : {"textures" : {"layer0" : "all=hexcraft:blocks/glow,tint=0,shade=false", "layer1" : "all=hexcraft:blocks/engineered_hexorium_block,layers... | json_instruct | {"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "smooth_lighting": {"type": "boolean"}, "transform": {"type": "string"}}, "required": ["model", "smooth_lighting", "transform"]}, "variants": {"type": "object", "properties":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/th... | {"cam/image_array" : "4388_cam-image_array_.jpg", "user/throttle" : 0.8, "timestamp" : "2019-02-17 21:51:31.460022", "user/angle" : 0.0, "user/mode" : "user"} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "timestamp", "user/angle", "user/mode"], "$schema": "http://... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"datasourceTypeName": {"type": "string"}, "inputPluginName": {"type": "string"}, "filterPluginName": {"type": "string"}}, "required": ["datasourceTypeName", "inputPluginName", "filterPluginName"], "$schema": "http://json-schema... | {"datasourceTypeName" : "Mongo over Filebeat", "inputPluginName" : "Filebeat_input", "filterPluginName" : "Guardium_MongoDB_filter"} | json_instruct | {"type": "object", "properties": {"datasourceTypeName": {"type": "string"}, "inputPluginName": {"type": "string"}, "filterPluginName": {"type": "string"}}, "required": ["datasourceTypeName", "inputPluginName", "filterPluginName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Visi\u00e8re pare-balles pour Maska 1Sch", "ShortName" : "Visi\u00e8re 1Sch", "Description" : "Visi\u00e8re pare-balles sp\u00e9ciale pour le casque Maska 1Sch"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"filepath": {"type": "string"}, "line": {"type": "integer"}, "npe_method": {"type": "string"}, "deref_field": {"type": "string"}, "npe_class": {"type": "string"}}, "required": ["filepath", "line", "npe_method", "dere... | {"filepath" : "src/main/java/org/apache/commons/beanutils2/DefaultBeanIntrospector.java", "line" : 166, "npe_method" : "handleIndexedPropertyDescriptors", "deref_field" : "getIndexedWriteMethod()", "npe_class" : "DefaultBeanIntrospector"} | json_instruct | {"type": "object", "properties": {"filepath": {"type": "string"}, "line": {"type": "integer"}, "npe_method": {"type": "string"}, "deref_field": {"type": "string"}, "npe_class": {"type": "string"}}, "required": ["filepath", "line", "npe_method", "deref_field", "npe_class"], "$schema": "http://json-schema.org/draft-07/sc... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/... | {"id" : "170501200304", "variable1" : 0.0339, "variable2" : 1.7531, "variable3" : "C"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"FB": {"type": "object", "properties": {"PAGE_ACCESS_TOKEN": {"type": "string"}, "VERIFY_TOKEN": {"type": "string"}, "APP_SECRET": {"type": "string"}}, "required": ["PAGE_ACCESS_TOKEN", "VERIFY_TOKEN", "APP_SECRET"]... | {"FB" : {"PAGE_ACCESS_TOKEN" : "page_access_token", "VERIFY_TOKEN" : "verify_token", "APP_SECRET" : "app_secret"}} | json_instruct | {"type": "object", "properties": {"FB": {"type": "object", "properties": {"PAGE_ACCESS_TOKEN": {"type": "string"}, "VERIFY_TOKEN": {"type": "string"}, "APP_SECRET": {"type": "string"}}, "required": ["PAGE_ACCESS_TOKEN", "VERIFY_TOKEN", "APP_SECRET"]}}, "required": ["FB"], "$schema": "http://json-schema.org/draft-07/sch... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "ite... | {"name" : "3DIMENSION", "symbol" : "3D", "logoURI" : "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/GBMJGHgYK3XmhSJMGkeqvN97sUTpc7dpEHJENMn7SAjV/logo.png", "decimals" : 9, "address" : "GBMJGHgYK3XmhSJMGkeqvN97sUTpc7dpEHJENMn7SAjV", "chainId" : 101, "tags" : ["Imprimante3D-token", "3D-toke... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "symbol", "logoURI", "d... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"attributes": {"type": "array", "items": {"type": "string"}}}, "required": ["attributes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"attributes" : ["accesskey", "archive", "border", "class", "classid", "codebase", "codetype", "contenteditable", "contextmenu", "data", "declare", "dir", "draggable", "dropzone", "form", "height", "hidden", "id", "lang", "name", "spellcheck", "standby", "style", "tabindex", "title", "translate", "type", "usemap", "wid... | json_instruct | {"type": "object", "properties": {"attributes": {"type": "array", "items": {"type": "string"}}}, "required": ["attributes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "strin... | {"id" : 1743, "source" : "barnes", "verse_id" : 18650, "verse_count" : 1, "reference" : "49:13", "title" : "", "html" : " <p> <em>Sing, O heavens </em>—In view of the glorious truths stated in the previous verses, that kings should rise up, and princes worship; that the Messiah would be for a light to the Gentile... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "integer"}}, "required": ["id", "source", "verse_id"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"20220118": {"type": "object", "properties": {"price": {"type": "number"}}, "required": ["price"]}}, "required": ["20220118"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"20220118" : {"price" : 5.245262614365998}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"20220118": {"type": "object", "properties": {"price": {"type": "number"}}, "required": ["price"]}}, "required": ["20220118"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"apiUrl": {"type": "string"}, "accessToken": {"type": "string"}, "id": {"type": "string"}, "since": {"type": "string"}}, "required": ["apiUrl", "accessToken", "id", "since"], "$schema": "http://json-schema.org/draft-07/schem... | {"apiUrl" : "%s(apiUrl)", "accessToken" : "%s(accessToken)", "id" : "%s(customerId)", "since" : "%s(customerSinceDate)"} | json_instruct | {"type": "object", "properties": {"apiUrl": {"type": "string"}, "accessToken": {"type": "string"}, "id": {"type": "string"}, "since": {"type": "string"}}, "required": ["apiUrl", "accessToken", "id", "since"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "type": {"type": "st... | {"name" : "Tin Whistle Brewing", "city" : "Penticton", "state" : "British Columbia", "code" : "0", "country" : "Canada", "phone" : "1-250-770-1122", "website" : "", "type" : "brewery", "updated" : "2010-07-22 20:00:20", "description" : "", "address" : ["954 West Eckhardt Avenue"], "geo" : {"accuracy" : "RANGE_INTERPOLA... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "code": {"type": "string"}, "country": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "type": {"type": "string"}, "updated": {"type": "string"}, "description": {"type":... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {... | {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"forstride" : {"title" : "Forstride", "channel_id" : 36800802, "link" : "http:/... | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"forstride": {"type": "object", "properties": {"title": {"type... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items":... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-87.74964, 41.865825], [-87.739932, 41.86596], [-87.739767, 41.858654], [-87.749409, 41.858645], [-87.74964, 41.865825]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 21476}}]} | 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": "numbe... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"repos": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "ref": {"type": "string"}}, "required": ["url", "ref"]}}, "path": {"type": "string"}, "bundle": {"type": "string"}, "... | {"repos" : [{"url" : "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "ref" : "master"}], "path" : "typings", "bundle" : "typings/bundle.d.ts", "link" : {"npm" : {"include" : true}}, "dependencies" : {"node/node.d.ts" : {"ref" : "0d622d857f97d44ea7dcad2b3edec1f23c48fe9e"}, "bluebird/bluebird.d.ts" : {"ref" : "... | json_instruct | {"type": "object", "properties": {"repos": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "ref": {"type": "string"}}, "required": ["url", "ref"]}}, "path": {"type": "string"}, "bundle": {"type": "string"}, "link": {"type": "object", "properties": {"npm": {"type": "object", "prop... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "obje... | {"city" : {"name" : "LAGAMAR", "state" : "MG"}, "borders" : [[{"lat" : -17.747172996836298, "lng" : -46.57433400021392}, {"lat" : -17.866526997023243, "lng" : -46.65971700043917}, {"lat" : -17.94670199719934, "lng" : -46.66981100007757}, {"lat" : -17.95126599722795, "lng" : -46.61475599998937}, {"lat" : -18.01043799741... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "... | {"body" : "This change addresses @svenevs https://github.com/LLNL/spack/pull/2099#issuecomment-256158633\n\nThe old compatibility compilers for GCC are named:\n- gcc34\n- g++34\n- g77\n\nAdding the gcc/g++ suffixes was done in #2099. This PR adds the old g77 name. @svenevs Can you confirm that this takes care of everyt... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": ... | {"name" : "Timofey from macbook (E68i)", "symbol" : "TMAC", "logoURI" : "https://devbeta.human.ag/api/profile/F9xvUGCZa5oSxXDvzyDHp2r3ZqrBQMg8GYF5uDxBMbbB/picture?src=token-list", "decimals" : 4, "address" : "E68is3KKzHGXr9aDijKPHPtYXpHTK4u5pq6auqPViNpa", "chainId" : 103, "tags" : ["utility-token", "social-token", "hum... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "extensions": {"type": "object", "properties"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "TEXT_MISSING": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "EXAMPLES", "TEXT_MISSING"], "$schema":... | {"DESCRIPTION" : "Verander uw tekst in ascii karakters!", "USAGE" : "{{prefix}}ascii [text]", "EXAMPLES" : "{{prefix}}ascii Hallo wereld!", "TEXT_MISSING" : "Voer een geldige tekst in (minder dan 20 tekens)!"} | json_instruct | {"type": "object", "properties": {"DESCRIPTION": {"type": "string"}, "USAGE": {"type": "string"}, "EXAMPLES": {"type": "string"}, "TEXT_MISSING": {"type": "string"}}, "required": ["DESCRIPTION", "USAGE", "EXAMPLES", "TEXT_MISSING"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "rating": {"type": "number"}, "check-in": {"type": "integer"}, "review-count": {"type": "integer"}}, "required": ["id", "rating", "check-in", "review-count"], "$schema": "http://json-schem... | {"id" : 190, "rating" : 3.2, "check-in" : 243, "review-count" : 3} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "rating": {"type": "number"}, "check-in": {"type": "integer"}, "review-count": {"type": "integer"}}, "required": ["id", "rating", "check-in", "review-count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"strapiBooks": {"type": "object", "properties": {"id": {"t... | {"componentChunkName" : "component---src-templates-book-book-detail-gen-js", "path" : "/book/qtdkj", "result" : {"data" : {"strapiBooks" : {"id" : "Books_26571", "slug" : "qtdkj", "title" : "\u56da\u5f92\u7684\u56f0\u5883", "author" : "[\u7f8e] \u5a01\u5ec9\u00b7\u5e9e\u5fb7\u65af\u901a", "description" : "\u672c\u4e66\... | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"data": {"type": "object", "properties": {"strapiBooks": {"type": "object", "properties": {"id": {"type": "string"}, "slug": {"type": "string"}, "title": {"type": "string"}... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"__metadata": {"type": "object", "properties": {"id": {"type": "string"}, "uri": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "uri", "type"]}, "CATC": {"type": "... | [{"__metadata" : {"id" : "Categories('28BDE3BA-A04E-4636-87C0-E463B3A3F203')", "uri" : "Categories('28BDE3BA-A04E-4636-87C0-E463B3A3F203')", "type" : "smartfield.TextInEditModeSource.VL_Category_GUID"}, "CATC" : "28BDE3BA-A04E-4636-87C0-E463B3A3F203", "LTXT" : "Projector"}, {"__metadata" : {"id" : "Categories('5D47564C... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"__metadata": {"type": "object", "properties": {"id": {"type": "string"}, "uri": {"type": "string"}, "type": {"type": "string"}}, "required": ["id", "uri", "type"]}, "CATC": {"type": "string"}, "LTXT": {"type": "string"}}, "required": ["__metadata", "CATC", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "i... | {"name" : "dompack-justifiedcontentgrid", "description" : "Dompack Justified Content Grid", "main" : "src/index.es", "authors" : ["B-Lex IT B.V."], "license" : "MIT", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"dompack" : "^0.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies":... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required... | {"uuid" : "a1fb1146-196c-4334-b159-e90ef4d24910", "befores" : [{"name" : "path_dict", "status" : "passed", "start" : 1580626158301, "stop" : 1580626158301}], "start" : 1580626158301, "stop" : 1580626158359} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "start": {"type": "integer"}, "stop": {"type": "integer"}}, "required": ["name", "status", "start", "stop"]}}, "start": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "district... | {"id" : "1010", "provinceId" : "13", "regencyId" : "71", "districtId" : "06", "name" : "Parak Laweh Pulau Aia Nan XX"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "AdvertisingInfoExample", "displayName" : "AdvertisingInfo Example"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"... | {"name" : "prelude", "version" : "0.3.7", "description" : "Flexible, responsive, mobile-first CSS framework using Less", "main" : "prelude.css", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/charbelrami/prelude.git"}, "keywords" : ["css... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array"... | {"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-0.111155, 51.462231], [-0.111078, 51.462109], [-0.109708, 51.462546], [-0.107673, 51.463003], [-0.107394, 51.463094], [-0.106032, 51.46185], [-0.104987, 51.460994], [-0.10464, 51.4615], [-0.103887, 51.461291], [-0.103885, 51.461426], [-0.1... | 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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "middlename": {"type": "string"}, "lastname": {"type": "string"}, "company": {"type": "string"}, "address": {"type": "string"}, "homephone": {"type": "stri... | [{"firstname" : "Firstname 0", "middlename" : "Middlename 0", "lastname" : "Lastname 0", "company" : "Company 0", "address" : "address 0", "homephone" : "Homephone 0", "mobilephone" : "Mobilephone 0", "workphone" : "Workphone 0", "secondaryphone" : "", "fax" : "fax 0", "email" : "email 0", "ayear" : "1987", "address2" ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"firstname": {"type": "string"}, "middlename": {"type": "string"}, "lastname": {"type": "string"}, "company": {"type": "string"}, "address": {"type": "string"}, "homephone": {"type": "string"}, "mobilephone": {"type": "string"}, "workphone": {"type": "string"... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"user": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "string"}, "ts": {"type": "string"}}, "required": ["user", "text", "type", "subtype", "ts"]}, "$... | [{"user" : "U2GEM7JCT", "text" : "<@U2GEM7JCT|kur> has joined the channel", "type" : "message", "subtype" : "channel_join", "ts" : "1475053594.000434"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"user": {"type": "string"}, "text": {"type": "string"}, "type": {"type": "string"}, "subtype": {"type": "string"}, "ts": {"type": "string"}}, "required": ["user", "text", "type", "subtype", "ts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "routeKey": {"type": "string"}, "rawPath": {"type": "string"}, "rawQueryString": {"type": "string"}, "headers": {"type": "object", "properties": {"accept": {"type": "string"}, "accept-encoding": {... | {"version" : "2.0", "routeKey" : "ANY /bot", "rawPath" : "/default/bot", "rawQueryString" : "", "headers" : {"accept" : "*/*", "accept-encoding" : "gzip,deflate", "content-length" : "129", "content-type" : "application/json", "host" : "4o68t2fwke.execute-api.us-east-1.amazonaws.com", "user-agent" : "Slackbot 1.0 (+http... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "routeKey": {"type": "string"}, "rawPath": {"type": "string"}, "rawQueryString": {"type": "string"}, "headers": {"type": "object", "properties": {"accept": {"type": "string"}, "accept-encoding": {"type": "string"}, "content-length": {"type": "string"}, "c... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fast-test": {"type": "string"}}, "required": ["test", "fast-test"]}, "author": {"type": "strin... | {"name" : "smart-contracts", "version" : "1.0.0", "scripts" : {"test" : "truffle compile && npx mocha --exit --recursive test", "fast-test" : "npx mocha --exit --recursive test"}, "author" : "BlockRocket.tech", "license" : "MIT", "dependencies" : {"@blockrocket/utils" : "^1.0.8", "@openzeppelin/contracts" : "^3.0.1", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "fast-test": {"type": "string"}}, "required": ["test", "fast-test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type": "string"}... | {"id" : 5135, "title" : "Ticket #5135: Force HTCondor web site to be HTTPS", "description" : "<blockquote>\nWe currently have both an HTTP and an HTTPS site courtesy of the CSL. There is no reason to have both, and for the Grand Private Future, HTTPS is preferred. The CSL has directions on forcing people to the HTTPS ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "remarks": {"type": "string"}, "derived_tickets": {"type": "string"}, "attachments": {"type": "string"}, "check_ins": {"type": "string"}, "type": {"type": "string"}, "last_change": {"type": "stri... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALEN... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "OBS_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : [0, 0], "X_COUNT" : [1, 2]}, "OBSERVATIONS_BY_TYPE" : {"CONCE... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"dist/index.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.es.js"... | {"dist/index.js" : {"bundled" : 36498, "minified" : 18882, "gzipped" : 5703}, "dist/index.es.js" : {"bundled" : 36151, "minified" : 18594, "gzipped" : 5634, "treeshaked" : {"rollup" : {"code" : 75, "import_statements" : 57}, "webpack" : {"code" : 1135}}}} | json_instruct | {"type": "object", "properties": {"dist/index.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "minified": {"type": "integer"}, "gzipped": {"type": "integer"}}, "required": ["bundled", "minified", "gzipped"]}, "dist/index.es.js": {"type": "object", "properties": {"bundled": {"type": "integer"}, "m... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"clampZoom:": {"type": "string"}, "isValidZoomLevel:": {"type": "string"}, "mapTileAt:zoom:": {"type": "str... | {"class" : {}, "instance" : {"clampZoom:" : "cs 8/6/2020 15:47", "isValidZoomLevel:" : "cs 8/6/2020 15:48", "mapTileAt:zoom:" : "cs 8/6/2020 15:49", "tileSize" : "cs 8/6/2020 15:49", "urlForPosition:zoom:" : "cs 8/6/2020 15:49", "zoomMax" : "cs 8/6/2020 15:49", "zoomMin" : "cs 8/6/2020 15:49"}} | json_instruct | {"type": "object", "properties": {"class": {"type": "object", "properties": {}, "required": []}, "instance": {"type": "object", "properties": {"clampZoom:": {"type": "string"}, "isValidZoomLevel:": {"type": "string"}, "mapTileAt:zoom:": {"type": "string"}, "tileSize": {"type": "string"}, "urlForPosition:zoom:": {"type"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}... | {"citations" : [{"textCitation" : "[See sb6a on Metamath](http://us.metamath.org/mpegif/sb6a.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | #P_sb6 | |- ( [ y / x ] ph <-> A. x ( x = y -> ph ) ) |\n| 2 | | #P_sbequ12 | |- ( y = x -> ( ph <-> [ x / y ] ph ) ) |\n... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":... |
Following the schema specification below, generate a valid JSON instance:
{"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" : "wh2_dlc09_rogue_black_creek_raiders", "name" : "Black Creek Raiders", "color" : "#800000"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@findable/nps", "version" : "4.0.15"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"], "$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"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "con... | [{"name" : "fsdss-384_1", "size" : 1504837306, "link" : "https://streamtape.com/e/MYR9L1jD42TdGQ", "created_at" : "2022\u5e7403\u670827\u65e5 11:13:22", "downloads" : 0, "linkid" : "MYR9L1jD42TdGQ", "convert" : "converted", "achorname" : "\u4e38\u5b50\u5466", "subscribe" : "0\u4f4d\u8ba2\u9605\u8005", "avatar-img" : "h... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location":... | {"id" : 3107, "title" : ["[Abandoned Farm, Yard]"], "description" : ["The hard-packed earth of the yard is cluttered with heaps of broken equipment and rusty tools. Ramshackle wooden buildings lean into each other, as though a sudden gust of wind might come through and demolish them all. A broken plank leads into the... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"3116":... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["eslint-plugin-angular"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ComponentCategory": {"type": "string"}, "ComponentTitle": {"type": "string"}}, "required": ["ComponentCategory", "ComponentTitle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ComponentCategory" : "Declarative", "ComponentTitle" : "Click to View \"Main\" Prefix Override Component"} | json_instruct | {"type": "object", "properties": {"ComponentCategory": {"type": "string"}, "ComponentTitle": {"type": "string"}}, "required": ["ComponentCategory", "ComponentTitle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"options": {"type": "object", "properties": {"hidden": {"type": "boolean"}}, "required": ["hidden"]}, "type":... | {"type" : "object", "properties" : {"type" : {"options" : {"hidden" : true}, "type" : "string", "enum" : ["why-am-i-special-function"]}}, "description" : "A Terria Spatial Inference function to determines the characteristics by which a particular region is _most different_\rfrom all other regions.", "title" : "Why Am I... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "object", "properties": {"options": {"type": "object", "properties": {"hidden": {"type": "boolean"}}, "required": ["hidden"]}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"t... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "emendatusenigmatica:block/peridot_sulphuric_rock_ore"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "distri... | {"id" : "2001", "provinceId" : "53", "regencyId" : "13", "districtId" : "03", "name" : "Kolipadan"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"1281": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "161": {"typ... | {"1281" : {"tagDate" : ["1924-01-01T00:00:00.000Z"], "tagDescription" : ["Ibid "]}, "161" : {"tagDate" : ["1922-01-01T00:00:00.000Z"], "tagDescription" : ["Peace Treaty, etc. League of Nations. Conferences leading out of \u0096 (Jan. \u0096 June)"]}, "385" : {"tagDescription" : ["Peace Treaty, etc. League of Nations. C... | json_instruct | {"type": "object", "properties": {"1281": {"type": "object", "properties": {"tagDate": {"type": "array", "items": {"type": "string"}}, "tagDescription": {"type": "array", "items": {"type": "string"}}}, "required": ["tagDate", "tagDescription"]}, "161": {"type": "object", "properties": {"tagDate": {"type": "array", "ite... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors"... | {"contract" : "0x840b42e40a622f82d91ed832fe4019990f57bf32", "tool" : "osiris", "start" : 1564605858.9511569, "end" : 1564605911.9745662, "duration" : 53.023409366607666, "analysis" : [{"errors" : [{"line" : 79, "column" : 33, "message" : "overflow_bugs"}, {"line" : 79, "column" : 27, "message" : "overflow_bugs"}, {"lin... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {"type": "object", "properti... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon"... | {"id" : "101078536", "name" : "Jefferson Close", "nodes" : [{"type" : "node", "id" : 1167057266, "lat" : 52.6057006, "lon" : -0.4367321}, {"type" : "node", "id" : 1167057354, "lat" : 52.6062267, "lon" : -0.4370528}], "volunteer_postcode" : "PE8 6QF", "closest_distance" : 5784} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "nodes": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "integer"}, "lat": {"type": "number"}, "lon": {"type": "number"}}, "required": ["type", "id", "lat", "lon"]}}, "volunte... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "allow_relinking": {"type": "boolean"}, "show_hidden_appmodes": {"type": "boolean"}, "allow_experimental_merge_methods": {"type": "boolean"}}, "required": ["name", "allow_relinking", "show_... | {"name" : "development", "allow_relinking" : true, "show_hidden_appmodes" : true, "allow_experimental_merge_methods" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "allow_relinking": {"type": "boolean"}, "show_hidden_appmodes": {"type": "boolean"}, "allow_experimental_merge_methods": {"type": "boolean"}}, "required": ["name", "allow_relinking", "show_hidden_appmodes", "allow_experimental_merge_methods"], "$schema": "ht... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"image": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["image", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"image" : "U136aE7g2LKU4rnKtbHLgLhxtIzR+ieo/RiYIzSBprA1egDWi5baKybbG+9JYCPSkGU=", "name" : "Sunshine Petals", "description" : "This pony is Light Green, with bright Hazel eyes. When they are not being rented by Unicorn Rentals users, they love trolling on twitter"} | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}}, "required": ["image", "name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "convocational", "definition" : "Of or pertaining to a convocation."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema"... | [{"name" : "MARIE-ALPHONSINE", "frequency" : 29, "males" : "0.0 %", "females" : "100.0 %"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900724656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900724657": {"type": "object", "properties... | {"900724656" : {"nama" : "TPS 1", "dapil" : [7302, 17307, 2730803]}, "900724657" : {"nama" : "TPS 2", "dapil" : [7302, 17307, 2730803]}, "900724658" : {"nama" : "TPS 3", "dapil" : [7302, 17307, 2730803]}, "900724659" : {"nama" : "TPS 4", "dapil" : [7302, 17307, 2730803]}, "900724660" : {"nama" : "TPS 5", "dapil" : [730... | json_instruct | {"type": "object", "properties": {"900724656": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900724657": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "object", "properties": {"live": {"type": "string"}, "service": {"type": "string"}, "status": {"type": "string"}, "last_updated": {"type": "string"}, "nav_overview": ... | {"title" : "app", "content" : {"live" : "direkt", "service" : "tj\u00e4nst", "status" : "status", "last_updated" : "senast uppdaterad", "nav_overview" : "\u00f6versikt", "nav_realm_details" : "serverinformation", "status_online" : "online", "status_offline" : "off-line", "status_unstable" : "kan vara instabil", "status... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "content": {"type": "object", "properties": {"live": {"type": "string"}, "service": {"type": "string"}, "status": {"type": "string"}, "last_updated": {"type": "string"}, "nav_overview": {"type": "string"}, "nav_realm_details": {"type": "string"}, "status_on... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"lazyYT.css": {"type": "string"}, "lazyYT.js": {"type": "string"}, "lazyYT.min.css": {"type": "string"}, "lazyYT.min.js": {"type": "string"}}, "required": ["lazyYT.css", "lazyYT.js", "lazyYT.min.css", "lazyYT.min.j... | {"lazyYT.css" : "sha256-P+0M/XyCb6/o+3XpGGKhUG2QseAoJVARnmvZVauLVVw=", "lazyYT.js" : "sha256-G28IaZ/Bt0UMMVgi3UlIJ8Xo+feL3o+rJjeyD7Bs5TI=", "lazyYT.min.css" : "sha256-TXrV3hI4SMlD/dLpMZejEX++YAEpFAl/CZybGxsnKBk=", "lazyYT.min.js" : "sha256-y8om5W2InnEyTuZN6r1McYvDSewzCtCh5ay9CdwG+Tk="} | json_instruct | {"type": "object", "properties": {"lazyYT.css": {"type": "string"}, "lazyYT.js": {"type": "string"}, "lazyYT.min.css": {"type": "string"}, "lazyYT.min.js": {"type": "string"}}, "required": ["lazyYT.css", "lazyYT.js", "lazyYT.min.css", "lazyYT.min.js"], "$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": {"bottomright": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "confidence": {"type": "number"}, "topleft": {"type": "... | [{"bottomright" : {"x" : 508, "y" : 661}, "confidence" : 0.82, "topleft" : {"x" : 0, "y" : 0}, "label" : "person"}, {"bottomright" : {"x" : 1279, "y" : 683}, "confidence" : 0.11, "topleft" : {"x" : 1195, "y" : 185}, "label" : "person"}, {"bottomright" : {"x" : 447, "y" : 719}, "confidence" : 0.37, "topleft" : {"x" : 32... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"bottomright": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, "required": ["x", "y"]}, "confidence": {"type": "number"}, "topleft": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}}, ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"},... | {"timestamp" : "2020-11-09T17:40:56Z", "data" : [{"data_type" : "pm10", "value" : "7.47", "max" : "9.00", "min" : "6.00", "sd" : "1.06"}, {"data_type" : "pm2.5", "value" : "6.47", "max" : "8.00", "min" : "6.00", "sd" : "0.83"}, {"data_type" : "pm1", "value" : "4.20", "max" : "5.00", "min" : "3.00", "sd" : "0.68"}, {"da... | json_instruct | {"type": "object", "properties": {"timestamp": {"type": "string"}, "data": {"type": "array", "items": {"type": "object", "properties": {"data_type": {"type": "string"}, "value": {"type": "string"}, "max": {"type": "string"}, "min": {"type": "string"}, "sd": {"type": "string"}}, "required": ["data_type", "value", "max",... |
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" : "Junk", "displayName" : "Junk"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"SourceWS": {"type": "object", "properties": {"Path": {"type": "string"}, "UpdatePath": {"type": "string"}, "Projects": {"type": "array", "items": {"type": "object", "properties": {"Project": {"type": "object", "properties": {"... | {"SourceWS" : {"Path" : "E:\\Git\\Library\\_Publish", "UpdatePath" : "E:\\Git\\Library\\_Update\\", "Projects" : [{"Project" : {"Enable" : true, "Name" : "Library.Web", "ServiceName" : "library-web.service"}}]}, "DestinationWS" : {"SshPath" : "root@192.168.221.130", "HostName" : "library-server-machine", "Path" : "/pro... | json_instruct | {"type": "object", "properties": {"SourceWS": {"type": "object", "properties": {"Path": {"type": "string"}, "UpdatePath": {"type": "string"}, "Projects": {"type": "array", "items": {"type": "object", "properties": {"Project": {"type": "object", "properties": {"Enable": {"type": "boolean"}, "Name": {"type": "string"}, "... |
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" : "bc1bb36cc36574c698e4fe59757d8217e8eb6559"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["513433231200", "\u6d1b\u5c45\u6751\u6c11\u59d4\u5458\u4f1a", "210", "0"], ["513433231201", "\u897f\u6cb3\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513433231202", "\u987a\u57ce\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["513433231203", "\u534e\u576a\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"dates": {"type": "object", "properties": {"start-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["start-date", "end-date"]}, "queries": {"type": "array", "items": {"type": "object", "pr... | {"dates" : {"start-date" : "30daysAgo", "end-date" : "yesterday"}, "queries" : [{"request_id" : "GEOLOCATIONS", "label" : "GeoLocation", "dimensions" : "ga:country", "metrics" : "ga:sessions,ga:users", "mapping" : ["string", "number", "number"], "views" : ["Grid", "Chart"], "chartTypes" : ["google.visualization.GeoChar... | json_instruct | {"type": "object", "properties": {"dates": {"type": "object", "properties": {"start-date": {"type": "string"}, "end-date": {"type": "string"}}, "required": ["start-date", "end-date"]}, "queries": {"type": "array", "items": {"type": "object", "properties": {"request_id": {"type": "string"}, "label": {"type": "string"}, ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"],... | {"VersionId" : "v13", "IsDefaultVersion" : false, "CreateDate" : "2019-06-25T23:27:46+00:00", "PolicyName" : "AWSConfigServiceRolePolicy"} | json_instruct | {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"typedefs": {"type": "object", "properties": {}, "required": []}, "includes": {"type": "array", "items": {}}, "namespaces": {"type": "object", "properties": {}, "required": []}, "structs": {"type": "object", "properti... | {"typedefs" : {}, "includes" : [], "namespaces" : {}, "structs" : {}, "unions" : {}, "consts" : {}, "services" : {}, "exceptions" : {}, "enums" : {"Enum1" : {"A" : 1, "B" : 2, "C" : 3}, "Enum2" : {"A" : 1, "B" : 2, "C" : 3}, "Enum3" : {"A" : 0, "B" : 1, "C" : 2}}} | json_instruct | {"type": "object", "properties": {"typedefs": {"type": "object", "properties": {}, "required": []}, "includes": {"type": "array", "items": {}}, "namespaces": {"type": "object", "properties": {}, "required": []}, "structs": {"type": "object", "properties": {}, "required": []}, "unions": {"type": "object", "properties": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "intege... | {"__type__" : "cc.SpriteFrame", "content" : {"name" : "fish23_move3", "texture" : "bab8eb64-9f48-4b36-91ef-50b937d35afa", "atlas" : "22b1b36e-eba2-4b59-8dfb-96f2bea306a6", "rect" : [2, 640, 317, 303], "offset" : [0, 0], "originalSize" : [317, 303], "rotated" : 1, "capInsets" : [0, 0, 0, 0]}} | json_instruct | {"type": "object", "properties": {"__type__": {"type": "string"}, "content": {"type": "object", "properties": {"name": {"type": "string"}, "texture": {"type": "string"}, "atlas": {"type": "string"}, "rect": {"type": "array", "items": {"type": "integer"}}, "offset": {"type": "array", "items": {"type": "integer"}}, "orig... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "tag": {"type": "string"}, "date": {"type": "string"}, "comments": {"type": "object"... | {"name" : "@hd996/eslint-config-vue", "entries" : [{"version" : "0.0.4", "tag" : "@hd996/eslint-config-vue_v0.0.4", "date" : "Tue, 29 Mar 2022 09:15:51 GMT", "comments" : {"dependency" : [{"comment" : "Updating dependency \"@hd996/eslint-config-typescript\" from `^0.0.3` to `^0.0.4`"}]}}, {"version" : "0.0.3", "tag" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"version": {"type": "string"}, "tag": {"type": "string"}, "date": {"type": "string"}, "comments": {"type": "object", "properties": {"dependency": {"type": "array", "items": {"type": "obj... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"returnCode": {"type": "string"}, "returnMsg": {"type": "array", "items": {"type": "object", "properties": {"storeId": {"type": "string"}, "orderNum": {"type": "string"}, "commodityCode": {"type": "string"}, "commod... | {"returnCode" : "0", "returnMsg" : [{"storeId" : "\u95e8\u5e97\u7f16\u7801", "orderNum" : "\u8ba2\u5355\u7f16\u7801", "commodityCode" : "\u5546\u54c1\u7f16\u7801", "commodityTagPrice" : "\u5546\u54c1\u540a\u724c\u4ef7", "commodityActualSellPrice" : "\u5546\u54c1\u5b9e\u9645\u552e\u4ef7", "qty" : "\u9500\u552e\u4ef6\u65... | json_instruct | {"type": "object", "properties": {"returnCode": {"type": "string"}, "returnMsg": {"type": "array", "items": {"type": "object", "properties": {"storeId": {"type": "string"}, "orderNum": {"type": "string"}, "commodityCode": {"type": "string"}, "commodityTagPrice": {"type": "string"}, "commodityActualSellPrice": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 2.0, 2.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 1.0, 1.0, 2.0, 5.0, 2.0, 3.0, 1.0, 2.0, 6.0, 0.0, 2.0, 1.0, 3.0, 1.0, 4.0, 2.0, 0.0, 1.0, 3.0, 8.0] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "github"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lsalzman", "github" : "lsalzman"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "github": {"type": "string"}}, "required": ["name", "github"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"sentient.js": {"type": "string"}}, "required": ["sentient.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sentient.js" : "sha512-zIcszaHO5IWL+C51z3Gp4zWk5dglJHDIRJtiM6XeeW0sLoqZhXFQlArVYLWBI2d4tW4sEzl5oXA96aCJ+R1x7g=="} | json_instruct | {"type": "object", "properties": {"sentient.js": {"type": "string"}}, "required": ["sentient.js"], "$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": {"code": {"type": "string"}, "message": {"type": "string"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "character": {"type": "in... | [{"code" : "invalid-animation", "message" : "An element that use the animate directive must be the sole child of a keyed each block", "start" : {"line" : 2, "column" : 6, "character" : 38}, "end" : {"line" : 2, "column" : 17, "character" : 49}, "pos" : 38}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "message": {"type": "string"}, "start": {"type": "object", "properties": {"line": {"type": "integer"}, "column": {"type": "integer"}, "character": {"type": "integer"}}, "required": ["line", "column", "character"]}, "end": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"node:local": {"type": "string"}, "script"... | {"name" : "growr-core-protocol", "version" : "1.0.0", "description" : "Repo for the smart contracts", "main" : "hardhat.config.js", "scripts" : {"node:local" : "npx hardhat node", "script" : "npx hardhat run --network localhost", "script:dev:deploy-protocol" : "npx hardhat run --network localhost scripts/dev/deploy-pro... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"node:local": {"type": "string"}, "script": {"type": "string"}, "script:dev:deploy-protocol": {"type": "string"}, "scri... |
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", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-93.340503, 45.197653], [-93.294543, 45.197051], [-93.294378, 45.184563], [-93.299071, 45.182816], [-93.304377, 45.182546], [-93.311234, 45.182813], [-93.313454, 45.184196], [-93.315233, 45.181961], [-93.329601, 45.188446... | 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": "numbe... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "navn": {"type": "string"}, "akronym": {"type": "string"}, "landkode": {"type": "string"}, "tilegnetBucs": {"type": "array", "items": {"type": "object", "prop... | [{"id" : "LT:123123", "navn" : "Foreign benefits office", "akronym" : "Akronym", "landkode" : "LT", "tilegnetBucs" : [{"bucType" : "LA_BUC_04", "institusjonsrolle" : "CounterParty", "gyldigStartDato" : "2017-12-31T23:00:00.000+0000", "eessiklar" : false}, {"bucType" : "LA_BUC_04", "institusjonsrolle" : "CaseOwner", "gy... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "navn": {"type": "string"}, "akronym": {"type": "string"}, "landkode": {"type": "string"}, "tilegnetBucs": {"type": "array", "items": {"type": "object", "properties": {"bucType": {"type": "string"}, "institusjonsrolle": {"type": "str... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}}, "required": ["name", "website", "short_descrip... | {"name" : "Akropolis", "website" : "https://akropolis.io", "short_description" : "Akropolis describes itself as a domain-specific financial protocol dedicated to the needs of the informal economy.", "explorer" : "https://etherscan.io/token/0x8Ab7404063Ec4DBcfd4598215992DC3F8EC853d7", "research" : "https://research.bina... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "short_description": {"type": "string"}, "explorer": {"type": "string"}, "research": {"type": "string"}}, "required": ["name", "website", "short_description", "explorer", "research"], "$schema": "http://json-schema.org/draft-07... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "st... | {"name" : "@tootsweet/react-native-gps-state", "description" : "React Native Listener for GPS status changes", "version" : "2.0.5", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/neuberoliveira/react-native-gps-state.git"}, "nativePackage" : true, "author" : "Neuber Oliveira (neuberoli... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "nativePackage": {"type": "boo... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "lint... | {"name" : "react-something-nice", "version" : "0.5.0", "description" : "", "main" : "build/index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "npx babel src --out-dir build", "lint" : "eslint --fix ./src --ext .js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "build", "li... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "1507091001", "id_kecamatan" : "150709", "name" : "Simpang Tuan"}, {"id" : "1507092002", "id_kecamatan" : "150709", "name" : "Pematang Rahim"}, {"id" : "1507092003", "id_kecamatan" : "150709", "name" : "Sungai Toman"}, {"id" : "1507092004", ... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json... | {"fro" : "Niklas", "too" : "Moritz", "value" : 250, "date" : 5212080000.0, "sign" : "304402201d73e5d29172e1bcfc9c40efb93a8a1fc90d58158300d44e8cd210210afea475022029372c47ce056c3a52ff7618697df40e5bc6e21eb016eb0dde5cbd4621117f19"} | json_instruct | {"type": "object", "properties": {"fro": {"type": "string"}, "too": {"type": "string"}, "value": {"type": "integer"}, "date": {"type": "number"}, "sign": {"type": "string"}}, "required": ["fro", "too", "value", "date", "sign"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900775374": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900775375": {"type": "object", "properties... | {"900775374" : {"nama" : "TPS 1", "dapil" : [1202, 11209, 2121203]}, "900775375" : {"nama" : "TPS 2", "dapil" : [1202, 11209, 2121203]}, "900775376" : {"nama" : "TPS 3", "dapil" : [1202, 11209, 2121203]}} | json_instruct | {"type": "object", "properties": {"900775374": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900775375": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "st... | {"name" : "socket.io-stub", "version" : "1.0.1", "description" : "Stub for testing servet socket.io code", "main" : "index.js", "repository" : "github.com/nikorablin/socket.io-stub", "author" : "Nik Korablin <nikorablin@gmail.com>", "license" : "MIT", "private" : false, "scripts" : {"build" : "webpack --mode production... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "proper... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type... | {"name" : "@microsoft/vscode-file-downloader-api", "version" : "1.0.0", "description" : "Wrapper package for the VS Code File Downloader extension", "repository" : {"type" : "git", "url" : "https://github.com/microsoft/vscode-file-downloader-api.git"}, "files" : ["out/*", "CODE_OF_CONDUCT.md", "LICENSE.md", "README.md"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "files": {"type": "array", "items": {"type": "string"}}, "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"replace" : false, "values" : ["aot:denner_trapdoor"]} | json_instruct | {"type": "object", "properties": {"replace": {"type": "boolean"}, "values": {"type": "array", "items": {"type": "string"}}}, "required": ["replace", "values"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [1160.51, 458.23, 1, 1117.37, 472.246, 1, 1115.38, 451.177, 1, 1040.39, 368.259, 1, 329.742, 510.673, 0, 1115.41, 490.181, 1, 1048.53, 494.261, 1, 950.392, 506.246, 1, 978.107, 447.107, 1, 862.333, 445.17, 1, 793.26, 429.074, 0, 970.289, 445.105, 1, 927.373, 358.409,... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}, "packages": {"type": "object", "properties": {... | {"name" : "collectionfs", "description" : "Meteor file management system with uploads, downloads, file manipulation and copying, and multiple storage adaptors", "homepage" : "https://github.com/CollectionFS/Meteor-CollectionFS", "author" : "Morten Henriksen (https://github.com/raix), Eric Dobbertin (https://github.com/... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "git": {"type": "string"}, "packages": {"type": "object", "properties": {"cfs-base-package": {"type": "object", "properties": {}, ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.