input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metada... | {"id" : "ec94f3dd-bab2-4c61-bc9b-b55d1027735c", "playerTags" : ["13a05157-6172-4431-947b-a058217b4aa5", "86d4e22b-f107-4bcf-9625-32d387fcb521"], "teamTags" : ["eb67ae5e-c4bf-46ca-bbbc-425cd34182ff", "979aee4a-6d80-4863-bf1c-ee1a78e06024"], "gameTags" : ["bedb1bdc-2578-4316-bc87-eec44cc11650"], "metadata" : {"play" : 13... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "su... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "requ... | {"name" : "aiyongli/ecopro-lumen-feign", "description" : "ecopro php lumen feign library", "license" : "MIT", "authors" : [{"name" : "liaiyong", "email" : "aiyong.li@ecoprobio.cn"}], "autoload" : {"psr-4" : {"Ecopro\\Feign\\" : "src/"}}, "autoload-dev" : {"psr-4" : {"Ecopro\\Feign\\Tests\\" : "tests/"}}, "require" : {"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"typ... | {"best_index" : [94, 284, 113, 158, 187], "auroc" : [0.5272727272727272, 0.49090909090909096, 0.5272727272727273, 0.7090909090909091, 0.6454545454545455], "acc" : [0.47619047619047616, 0.42857142857142855, 0.38095238095238093, 0.47619047619047616, 0.5714285714285714], "aps" : [0.49817460317460316, 0.4901406926406927, 0... | json_instruct | {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "a... |
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"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, ... | {"name" : "carer", "version" : "0.0.26", "description" : "cares about you", "main" : "index.js", "directories" : {"example" : "examples"}, "scripts" : {"test" : "node tests/index.js", "commit" : "git add . ; git commit -m 'did I do that?'", "push" : "git push origin dev", "togit" : "npm run commit ; npm run push", "pul... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"example": {"type": "string"}}, "required": ["example"]}, "scripts": {"type": "object", "properties": {"test": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "diffic... | {"number" : "78", "title" : "Subsets", "url" : "https://leetcode.com/problems/subsets", "difficulty" : "Medium", "question" : "Given a set of distinct integers, nums, return all possible subsets (the power set).\n\nNote: The solution set must not contain duplicate subsets.\n\nExample:\n\nInput: nums = [1,2,3]\nOutput:\... | json_instruct | {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "difficulty": {"type": "string"}, "question": {"type": "string"}, "code": {"type": "string"}}, "required": ["number", "title", "url", "difficulty", "question", "code"], "$schema": "http://json-schema.... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-... | {"index" : 1092, "redacted" : false, "hash" : 2194208527, "blacklisted" : false} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "redacted": {"type": "boolean"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}}, "required": ["index", "redacted", "hash", "blacklisted"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "statistics": {"type": "string"}, "pred_score": {"type": "number"}}, "required": ["start", "end", "statistics", "pred_score"], "$schema": "http://json-schema.org/draft-07/sc... | {"start" : "12:31:31", "end" : "13:31:31", "statistics" : "auto-sklearn results:\n Dataset name: 72b3fe19c2bb4391c0076f1ced8f93f9\n Metric: f1_macro\n Best validation score: 0.208643\n Number of target algorithm runs: 21\n Number of successful target algorithm runs: 11\n Number of crashed target algorithm runs: 0... | json_instruct | {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "statistics": {"type": "string"}, "pred_score": {"type": "number"}}, "required": ["start", "end", "statistics", "pred_score"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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"... | [{"user" : "U2WQKDQPM", "text" : "<@U2WQKDQPM|pluradj> has joined the channel", "type" : "message", "subtype" : "channel_join", "ts" : "1478007310.000081"}, {"user" : "U2WSCR9QE", "text" : "<@U2WSCR9QE|srini> has joined the channel", "type" : "message", "subtype" : "channel_join", "ts" : "1478008272.000082"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}... | {"$id" : "city", "$schema" : "http://json-schema.org/draft-07/schema", "description" : "City", "properties" : {"name" : {"type" : "string"}, "location" : {"type" : "string"}, "language" : {"type" : "string"}, "population" : {"type" : "integer"}, "updated_year" : {"type" : "integer"}}} | json_instruct | {"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "location": {"type": "object", "properties": {"type... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"babylon.js": {"type": "string"}, "babylon.max.js": {"type": "string"}, "babylon.worker.js": {"type": "string"}}, "required": ["babylon.js", "babylon.max.js", "babylon.worker.js"], "$schema": "http://json-schema... | {"babylon.js" : "sha256-Xr+KvbErw4WlLI8uBJ8bAIEg0+5SnGQrUA+mxFu+xb4=", "babylon.max.js" : "sha256-ScSoT3npMul3KFrAQbjmlpVg/CmAIExhXJC4IUcQgkg=", "babylon.worker.js" : "sha256-6cRPiHYCTL4Clnfc8w4TP8YsG5qRZlpnqzS49LgwBKo="} | json_instruct | {"type": "object", "properties": {"babylon.js": {"type": "string"}, "babylon.max.js": {"type": "string"}, "babylon.worker.js": {"type": "string"}}, "required": ["babylon.js", "babylon.max.js", "babylon.worker.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"metadata": {"type": "object", "properties": {"filePath": {"type": "string"}, "shortURL": {"type": "string"}}, "required": ["filePath", "shortURL"]}}, "required": ["metadata"], "$schema": "http://json-schema.org/dra... | {"metadata" : {"filePath" : "org/nsidc/0A723DA7ED885E92906668F3040DB3BDB6C1543D46C9771C930BFCAC2E389916", "shortURL" : "polar.usc.edu/3fe50247"}} | json_instruct | {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"filePath": {"type": "string"}, "shortURL": {"type": "string"}}, "required": ["filePath", "shortURL"]}}, "required": ["metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"max_file_chunk_size_in_bytes": {"type": "integer"}, "max_row_length": {"type": "integer"}, "map_reduce": {"type": "object", "properties": {"field_delimiter": {"type": "string"}, "map_key_delimiter": {"type": "strin... | {"max_file_chunk_size_in_bytes" : 4096, "max_row_length" : 123, "map_reduce" : {"field_delimiter" : ",", "map_key_delimiter" : "^", "mapper_code_max_length" : 12000, "reducer_code_max_length" : 12000}} | json_instruct | {"type": "object", "properties": {"max_file_chunk_size_in_bytes": {"type": "integer"}, "max_row_length": {"type": "integer"}, "map_reduce": {"type": "object", "properties": {"field_delimiter": {"type": "string"}, "map_key_delimiter": {"type": "string"}, "mapper_code_max_length": {"type": "integer"}, "reducer_code_max_l... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "requi... | [{"postal_code" : "21396", "place_name" : "Mirasol", "place_type" : "Fraccionamiento", "county" : "Mexicali", "state" : "Baja California", "city" : "Mexicali"}, {"postal_code" : "21396", "place_name" : "Gonz\u00e1lez Ortega Norte", "place_type" : "Colonia", "county" : "Mexicali", "state" : "Baja California", "city" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"code": {"type": "string"}, "results": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "results"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"code" : "ok", "results" : ["7", "5", "5", "9"]} | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "results": {"type": "array", "items": {"type": "string"}}}, "required": ["code", "results"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "$comment": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "p... | {"$schema" : "http://json-schema.org/draft-07/schema#", "$id" : "cofacts/schemas/userSettings", "$comment" : "design document https://g0v.hackmd.io/eIeU2g86Tfu5VnLazNfUvQ", "description" : "A representation of an UserSettings", "title" : "UserSettings", "type" : "object", "properties" : {"userId" : {"type" : "string"},... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "$id": {"type": "string"}, "$comment": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"userId": {"type": "object", "properties": {"type": {"ty... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"extends": {"type": "string"}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["extends", "references"], "$schema": "http:/... | {"extends" : "./tsconfig.json", "references" : [{"path" : "packages/sample-library"}, {"path" : "packages/logging"}, {"path" : "packages/modular-cli"}, {"path" : "packages/deploy-cloud-function"}]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}}, "required": ["extends", "references"], "$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": {"citance_No": {"type": "integer"}, "citing_paper_id": {"type": "string"}, "citing_paper_authority": {"type": "integer"}, "citing_paper_authors": {"type": "string"}, "raw_text": {"type": "str... | [{"citance_No" : 1, "citing_paper_id" : "E93-1018", "citing_paper_authority" : 2, "citing_paper_authors" : "Claire, Gardent", "raw_text" : "reso lu t ion The discourse grammar used builds on [Polanyi and Scha 1984]", "clean_text" : "The discourse grammar used builds on [Polanyi and Scha 1984].", "keep_for_gold" : 0}, {... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"citance_No": {"type": "integer"}, "citing_paper_id": {"type": "string"}, "citing_paper_authority": {"type": "integer"}, "citing_paper_authors": {"type": "string"}, "raw_text": {"type": "string"}, "clean_text": {"type": "string"}, "keep_for_gold": {"type": "i... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Entries": {"type": "array", "items": {}}, "Variables": {"type": "object", "properties": {"RandomSeed": {"type": "string"}}, "required": ["RandomSeed"]}}, "required": ["Entries", "Variables"], "$schema": "http:/... | {"Entries" : [], "Variables" : {"RandomSeed" : "412112064"}} | json_instruct | {"type": "object", "properties": {"Entries": {"type": "array", "items": {}}, "Variables": {"type": "object", "properties": {"RandomSeed": {"type": "string"}}, "required": ["RandomSeed"]}}, "required": ["Entries", "Variables"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {... | {"userId" : 84116, "cartId" : "a5d966b6-d417-420d-b4f5-c1adf00a50ae", "preferredProducts" : [1339, 2838, 4550, 2279, 1357], "productReviews" : [{"productId" : 4269, "reviewText" : "talk about sadness!", "reviewDate" : "2016-07-29T03:19:39.408354+03:00"}, {"productId" : 4394, "reviewText" : "This Small works excessively... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "p... | {"hash" : "0xac9df6647a8678cb571eff5cc7a6a06b22217a8d191eff2cdccd2a6b1b60b691", "parentHash" : "0x07198014775676ce64e3b510266160e2a6161348cbe4f8f422d8341f1fbe2645", "number" : 32164, "timestamp" : 1438686192, "nonce" : "0x39fe5ce5e3da0239", "difficulty" : 1208022823396, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"component": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"s-fence": {"type": "string"}}, "required": ["s-fence"]}}, "required": ["component", "usingComponents"], "$schema": "http://... | {"component" : true, "usingComponents" : {"s-fence" : "/components/fence/index"}} | json_instruct | {"type": "object", "properties": {"component": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"s-fence": {"type": "string"}}, "required": ["s-fence"]}}, "required": ["component", "usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$s... | {"version" : "english_NIV", "book" : "Numbers", "chapter" : 33, "verse" : 52, "word" : "drive out all the inhabitants of the land before you. Destroy all their carved images and their cast idols, and demolish all their high places."} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "book": {"type": "string"}, "chapter": {"type": "integer"}, "verse": {"type": "integer"}, "word": {"type": "string"}}, "required": ["version", "book", "chapter", "verse", "word"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"... | {"author" : "Edwin Knuth <eknuth@ecotrust.org>", "name" : "print", "description" : "server for generating printable/exportable documents from maps", "version" : "0.0.0", "repository" : {"type" : "git", "url" : "git://github.com/Ecotrust/marco-portal.git"}, "main" : "server.js", "dependencies" : {"webshot" : "0.1.4", "s... | json_instruct | {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "pr... | {"name" : "ringcentral-chatbot", "version" : "1.5.1", "license" : "MIT", "repository" : "git@github.com:tylerlong/ringcentral-chatbot-js.git", "scripts" : {"test" : "RINGCENTRAL_CHATBOT_DATABASE_CONNECTION_URI=sqlite:// jest", "build" : "rm -rf dist && babel src --out-dir dist --source-maps", "prepublishOnly" : "yarn t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "prepublishOnly": {"type": "string"}}, "required": ["test", ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, ... | {"name" : "liteauditor", "version" : "1.1.20", "main" : "liteAuditor.js", "author" : {"name" : "Paul Boulanger"}, "license" : "MIT", "scripts" : {"start" : "node ./liteAuditor.js"}, "dependencies" : {"bignumber.js" : "^9.0.0", "events" : "^3.2.0", "fs" : "0.0.1-security", "jsonschema" : "^1.2.6", "mongoose" : "^5.10.2"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties... | {"contract" : "0xce51f6cac9fb2695d944f2d5e2699d68aa7b656e", "tool" : "honeybadger", "start" : 1565851436.7399487, "end" : 1565851542.5049484, "duration" : 105.76499962806702, "analysis" : [{"errors" : [], "file" : "/unique_chucks/32/0xce51f6cac9fb2695d944f2d5e2699d68aa7b656e.sol", "name" : "Locksmith"}, {"errors" : [],... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "c... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Tahina, Esperanza, Agusan del Sur, Caraga (Region XIII), PH", "locale" : "ph.caraga-region-xiii.agusan-del-sur.esperanza.tahina", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "5", "region_... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"format": {"type": "string"}, "header": {"type": "object", "properties": {"identifier": {"type": "string"}, "endianness": {"type": "string"}, "glType": {"type": "string"}, "glTypeSize": {"type": "integer"}, "glFormat": {"type": "... | {"format" : "KTX 11", "header" : {"identifier" : "%ABKTX 11%BB%0D%0A%1A%0A", "endianness" : "0x04030201", "glType" : "0x0000", "glTypeSize" : 1, "glFormat" : "0x0000", "glInternalFormat" : "GL_COMPRESSED_RGBA_S3TC_DXT5_EXT", "glBaseInternalFormat" : "GL_RGBA", "pixelWidth" : 64, "pixelHeight" : 64, "pixelDepth" : 0, "n... | json_instruct | {"type": "object", "properties": {"format": {"type": "string"}, "header": {"type": "object", "properties": {"identifier": {"type": "string"}, "endianness": {"type": "string"}, "glType": {"type": "string"}, "glTypeSize": {"type": "integer"}, "glFormat": {"type": "string"}, "glInternalFormat": {"type": "string"}, "glBase... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"translations": {"type": "object", "properties": {"Activate TOTP": {"type": "string"}, "This is your new TOTP secret:": {"type": "string"}, "Scan this QR code with your TOTP app": {"type": "string"}, "To enable second-factor... | {"translations" : {"Activate TOTP" : "Aktivizo TOTP", "This is your new TOTP secret:" : "Kjo \u00ebsht\u00eb e fshehta juaj TOTP e re:", "Scan this QR code with your TOTP app" : "Skanojeni k\u00ebt\u00eb kod QR me aplikacionin tuaj TOTP", "To enable second-factor verify authentication code below." : "P\u00ebr aktivizim... | json_instruct | {"type": "object", "properties": {"translations": {"type": "object", "properties": {"Activate TOTP": {"type": "string"}, "This is your new TOTP secret:": {"type": "string"}, "Scan this QR code with your TOTP app": {"type": "string"}, "To enable second-factor verify authentication code below.": {"type": "string"}, "Auth... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "count": {"type": "integer"}}, "required": ["id", "name", "href", "url", "count"], "$schema": "http://json-schema.org/... | {"id" : "CWE-785", "name" : "Use of Path Manipulation Function without Maximum-sized Buffer", "href" : "AIP/quality-standards/CWE/items/CWE-785", "url" : "https://cwe.mitre.org/data/definitions/785.html", "count" : 0} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "href": {"type": "string"}, "url": {"type": "string"}, "count": {"type": "integer"}}, "required": ["id", "name", "href", "url", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "Ad... | {"IsRecentlyVerified" : false, "ID" : 14921, "UUID" : "B60D92E4-4DBC-4FBB-BB1B-E690443A82D3", "DataProviderID" : 1, "OperatorID" : 22, "OperatorsReference" : "CBGMD", "AddressInfo" : {"ID" : 15267, "Title" : "Musgrave Group Head Office", "AddressLine1" : "Musgrave Group Head Office, Ballycurreen, Airport Road, Cork", "... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"reauth_successful": {"type": "string"}, "single_instance_allowed": {"type": "string"}, "unknown_authorize_url_generation": {"type": "str... | {"config" : {"abort" : {"reauth_successful" : "Yeniden kimlik do\u011frulama ba\u015far\u0131l\u0131 oldu", "single_instance_allowed" : "Zaten yap\u0131land\u0131r\u0131lm\u0131\u015f. Yaln\u0131zca tek bir konfig\u00fcrasyon m\u00fcmk\u00fcnd\u00fcr.", "unknown_authorize_url_generation" : "Yetkilendirme url'si olu\u01... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"reauth_successful": {"type": "string"}, "single_instance_allowed": {"type": "string"}, "unknown_authorize_url_generation": {"type": "string"}}, "required": ["reauth_successful", "single_instance_all... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type... | {"type" : "minecraft:crafting_shapeless", "ingredients" : [{"item" : "floralis:blackclayblock"}], "result" : {"item" : "floralis:blackclay", "count" : 9}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}, "count": {"type": "integer"}}, "required": ["item", "coun... |
Construct a JSON document that adheres to this schema specification:
{"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"... | {"schema_version" : "1.2.0", "id" : "GHSA-57hc-wp4j-p6hv", "modified" : "2022-05-01T06:41:41Z", "published" : "2022-05-01T06:41:41Z", "aliases" : ["CVE-2006-0664"], "details" : "Cross-site scripting (XSS) vulnerability in config_defaults_inc.php in Mantis before 1.0 allows remote attackers to inject arbitrary web scrip... | 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": "a... |
Generate sample JSON data that conforms to the following schema definition:
{"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"}, ... | {"topic" : "Installating Radiance in Ubuntu 7.10", "category" : "radiance-general", "attachments" : [], "created_by_name" : "EncaseIndia", "created_at" : "December 10, 2008 at 09:14PM", "body" : "Dear All,\n\n\nIs there a step by step installation guide for installing Radiance in Ubuntu 7.10?\n\n\nI did the following:\... | 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": ["to... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "types": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "files": {"type... | {"name" : "@jems/events-domain", "version" : "0.0.1", "description" : "Domain abtraction for @jems/event", "types" : "definitions/index.ts", "main" : "index.js", "author" : "Francisco Mercedes <franciscomerdot@gmail.com>", "license" : "MIT", "files" : ["dist", "README.md"], "scripts" : {"clean" : "rimraf dist bin ", "t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "types": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId",... | [{"id" : "1001", "provinceId" : "12", "regencyId" : "02", "districtId" : "09", "name" : "Psr Siborong Borong"}, {"id" : "2002", "provinceId" : "12", "regencyId" : "02", "districtId" : "09", "name" : "Siborong Borong I"}, {"id" : "2003", "provinceId" : "12", "regencyId" : "02", "districtId" : "09", "name" : "Siborong Bo... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.or... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type... | {"rustc" : 4606162150436181663, "features" : "[]", "target" : 6917991793654184695, "profile" : 6269190295429226618, "path" : 6228309701717988636, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release\\.fingerprint\\mime-4d70e8359f98deff\\dep-lib-mime"}}], "rustflags" : [], "metadata" : 9035816696660524183, "... | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type... |
Based on the schema below, produce a valid JSON object:
{"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" : ["origins_necromancy:bone_plate"]} | 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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "doom palm", "definition" : "A species of palm tree (Hyph\u00e6ne Thebaica), highly valued for the fibrous pulp of its fruit, which has the flavor of gingerbread, and is largely eaten in Egypt and Abyssinia. [Written also doum palm.]"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Satellite P55T-C5114", "description" : "A 15.6 inch PC laptop.", "url" : "https://support.dynabook.com/support/modelHome?freeText=1200011329&osId=24"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"hash": {"type": "string"}, "data": {"type": "null"}, "context": {"type": "object", "properties": {"__notFound": {"type": "boolean"}}, "required": ["__notFound"]}}, "required": ["hash", "data", "context"], "$schema": "http:/... | {"hash" : "60aeb9a6331d738f4beada1c63b0d61e088a7177", "data" : null, "context" : {"__notFound" : true}} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "data": {"type": "null"}, "context": {"type": "object", "properties": {"__notFound": {"type": "boolean"}}, "required": ["__notFound"]}}, "required": ["hash", "data", "context"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"n_targets": {"type": "integer"}, "n_bootstraps": {"type": "integer"}, "n_processed": {"type": "integer"}, "kallisto_version": {"type": "string"}, "index_version": {"type": "integer"}, "start_time": {"type": "string... | {"n_targets" : 33746, "n_bootstraps" : 200, "n_processed" : 19863870, "kallisto_version" : "0.43.0", "index_version" : 10, "start_time" : "Mon Sep 18 12:18:29 2017", "call" : "kallisto quant -i /woldlab/castor/home/dangeles/genomes/WBcel235/WBcel235_kallisto_index --output /woldlab/castor/home/dangeles/projects/betting... | json_instruct | {"type": "object", "properties": {"n_targets": {"type": "integer"}, "n_bootstraps": {"type": "integer"}, "n_processed": {"type": "integer"}, "kallisto_version": {"type": "string"}, "index_version": {"type": "integer"}, "start_time": {"type": "string"}, "call": {"type": "string"}}, "required": ["n_targets", "n_bootstrap... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "s... | {"forge_marker" : 1, "defaults" : {"model" : "refinedstorage:solderer", "textures" : {"particle" : "refinedstorage:blocks/solderer_top", "side" : "refinedstorage:blocks/solderer_side", "top" : "refinedstorage:blocks/solderer_top", "bottom" : "refinedstorage:blocks/solderer_bottom", "middle" : "refinedstorage:blocks/sol... | json_instruct | {"type": "object", "properties": {"forge_marker": {"type": "integer"}, "defaults": {"type": "object", "properties": {"model": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "string"}, "top": {"type": "string"}, "bottom": {"type": "string"}, "middle": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$sche... | {"Time" : "2021-07-28T00:00:00Z", "Temp" : 26.7, "RelHum" : 77, "WindSpeed" : 2, "WindDir" : 137} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "api_model": {"type": "string"}, "api_link": {"type": "string"}, "title": {"type": "string"}, "is_featured": {"type": "boolean"}, "description": {"type": "null"}, "short_description": {"typ... | {"id" : 8115, "api_model" : "exhibitions", "api_link" : "https://api.artic.edu/api/v1/exhibitions/8115", "title" : "Out of a Dark Room: Photographic Variations from the Permanent Collection", "is_featured" : false, "description" : null, "short_description" : null, "web_url" : null, "image_url" : null, "type" : "AIC Onl... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "api_model": {"type": "string"}, "api_link": {"type": "string"}, "title": {"type": "string"}, "is_featured": {"type": "boolean"}, "description": {"type": "null"}, "short_description": {"type": "null"}, "web_url": {"type": "null"}, "image_url": {"type": "null"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "description": {"... | {"$schema" : "../../node_modules/ng-packagr/package.schema.json", "name" : "@nutrify/quill-emoji-mart-picker", "version" : "1.1.3", "publishConfig" : {"access" : "public"}, "description" : "Quill Emoji Plugin", "author" : "Raphael Michl <raphael.michl@protonmail.com>", "peerDependencies" : {"@angular/core" : ">=8.0.0-0... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "description": {"type": "string"}, "author": {"type": "string"}, "peerDependencies": {"ty... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"ty... | {"AB" : ["de", "ee", "fe", "ge", "he", "hd", "hc", "hb", "ha", "ga", "gf", "cd", "dd"], "AW" : ["eb", "gd", "fa", "gb", "gc", "cc", "bd", "be", "ce", "cg", "ef", "ff", "gg", "hg", "jg", "je", "jc", "jb"], "SZ" : "19", "C" : "Black to play", "SOL" : [["B", "db", "", ""]]} | json_instruct | {"type": "object", "properties": {"AB": {"type": "array", "items": {"type": "string"}}, "AW": {"type": "array", "items": {"type": "string"}}, "SZ": {"type": "string"}, "C": {"type": "string"}, "SOL": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["AB", "AW", "SZ", "C", "SOL"],... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "squeakers", "password" : "gipami-6"} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}}, "required": ["username", "password"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"active": {"type": "boolean"}, "slack_client_token": {"type": "string"}, "channel_id": {"type": "array", "items": {"type": "string"}}, "report_images_comment": {"type": "string"}, "report_images": {"type": "boolean"},... | {"active" : true, "slack_client_token" : "slack API token here", "channel_id" : ["list of channels you want the Slack report to be posted to"], "report_images_comment" : "If true, will post all graphs for each experiment in Slack thread", "report_images" : true, "slack_description" : "Something you want to show up abov... | json_instruct | {"type": "object", "properties": {"active": {"type": "boolean"}, "slack_client_token": {"type": "string"}, "channel_id": {"type": "array", "items": {"type": "string"}}, "report_images_comment": {"type": "string"}, "report_images": {"type": "boolean"}, "slack_description": {"type": "string"}}, "required": ["active", "sl... |
Create a JSON structure that matches this schema definition:
{"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... | {"name" : "Melt", "symbol" : "MELT", "type" : "ERC20", "decimals" : 2, "description" : "-", "website" : "https://www.meltproject.net", "explorer" : "https://etherscan.io/token/0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806", "status" : "abandoned", "id" : "0x6f72b14383f5eCDAcDD2F761a5C4B070F91C2806"} | 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": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/densealloy/densealloychair.object": {"type": "array", "items": {"type": "strin... | [{"DeniedAlternatives" : [], "Files" : {"objects/densealloy/densealloychair.object" : ["/description"]}, "Texts" : {"Chs" : "\u4e00\u5f20\u7531\u81f4\u5bc6\u5408\u91d1\u5236\u6210\u7684\u6905\u5b50\u3002", "Eng" : "A chair made from dense alloy."}}, {"DeniedAlternatives" : [], "Files" : {"objects/densealloy/densealloyc... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/densealloy/densealloychair.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/densealloy/densealloychair.object"]}, "Texts":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"zm": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "zma": {"type": "string"}, "zmeskal": {"type": "string"}, "zmodem": {"type": "object", "properties"... | {"zm" : {"w" : "ZM", "t" : "[\u8ba1] \u8c03\u96f6; \u96f6\u8c03\u5236"}, "zma" : " [\u533b][=zinc meta-arsenite,insecticide]\u504f\u4e9a\u7837\u9178\u950c", "zmeskal" : "[\u4eba\u540d] \u5179\u6885\u65af\u5361\u5c14", "zmodem" : {"w" : "Zmodem", "t" : "[\u8ba1] Zmodem\u534f\u8bae"}, "zmud" : "zMUD\u662f\u4e92\u8054\u7f... | json_instruct | {"type": "object", "properties": {"zm": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w", "t"]}, "zma": {"type": "string"}, "zmeskal": {"type": "string"}, "zmodem": {"type": "object", "properties": {"w": {"type": "string"}, "t": {"type": "string"}}, "required": ["w",... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "a7729821e18a3b11a76a", "c" : {"app" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"app": {"type": "boolean"}}, "required": ["app"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"typ... | {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=4859", "name" : "Krida Vikas Sanstha", "primaryEmail" : "abhijeet.barse@slumsoccer.org", "website" : "http://www.slumsoccer.org", "organisationType" : ["Direct Service", "Network"], "telephone" : ["919890727932", "919860311400"], "main... | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"t... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"react-native$": {"type": "string"}, "react-native-webview$": {"type": "string"}, "react-native-htmlview$": {"type": "string"}}, "required": ["react-native$", "react-native-webview$", "react-native-htmlview$"], "$schema": "http... | {"react-native$" : "react-native-web", "react-native-webview$" : "src/WebApp/Adapters/WebView", "react-native-htmlview$" : "src/WebApp/Adapters/HtmlView"} | json_instruct | {"type": "object", "properties": {"react-native$": {"type": "string"}, "react-native-webview$": {"type": "string"}, "react-native-htmlview$": {"type": "string"}}, "required": ["react-native$", "react-native-webview$", "react-native-htmlview$"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"operator_address": {"type": "string"}, "moniker": {"type": "string"}, "post_tx_hash": {"type": "string"}, "upvote_tx_hash": {"type": "string"}, "upvote_2_tx_hash": {"type": "string"}, "stake_tx_hash": {"type": "str... | {"operator_address" : "starsvaloper180l54vlsm0t8dy6vl6vzh7578hegdn8gwxvgzd", "moniker" : "romann66", "post_tx_hash" : "678E022CFDE38D9F4C0C0E9EFD4D1BC5CE18D3563C1A6FB57710C0DB129FEC74", "upvote_tx_hash" : "58AEB3804943634B801C6026FCEAEA37B0A91D3F71CA2BBC6A8F0C9631815E72", "upvote_2_tx_hash" : "1C413D552E458DB176E2E462F... | json_instruct | {"type": "object", "properties": {"operator_address": {"type": "string"}, "moniker": {"type": "string"}, "post_tx_hash": {"type": "string"}, "upvote_tx_hash": {"type": "string"}, "upvote_2_tx_hash": {"type": "string"}, "stake_tx_hash": {"type": "string"}}, "required": ["operator_address", "moniker", "post_tx_hash", "up... |
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"}, "bin": {"type": "object", "properties": {"s3cli": {"type": "string"}}, "required": ["s3cli"]}, "scripts": {... | {"name" : "s3cli", "version" : "1.0.2", "description" : "S3 client and S3 Command Line Interface", "main" : "./index", "bin" : {"s3cli" : "./bin/s3cli"}, "scripts" : {"test" : "make test-spec"}, "repository" : {"type" : "git", "url" : "git://github.com/ogom/node-s3cli.git"}, "keywords" : ["amazon", "aws", "s3"], "autho... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"s3cli": {"type": "string"}}, "required": ["s3cli"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"batch size": {"type": "integer"}, "eval_string": {"type": "string"}, "indexing (s)": {"type": "number"}, "size (GB)": {"type": "number"}, "retrieval (s)": {"type": "number"}, "per query (s)": {"type": "number"}, "... | {"batch size" : 128, "eval_string" : "flat()", "indexing (s)" : 70.2471981048584, "size (GB)" : 25.29665855783969, "retrieval (s)" : 1918.7516865730286, "per query (s)" : 0.2748927917726402, "mrr" : 0.34432192886705804} | json_instruct | {"type": "object", "properties": {"batch size": {"type": "integer"}, "eval_string": {"type": "string"}, "indexing (s)": {"type": "number"}, "size (GB)": {"type": "number"}, "retrieval (s)": {"type": "number"}, "per query (s)": {"type": "number"}, "mrr": {"type": "number"}}, "required": ["batch size", "eval_string", "in... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object... | {"name" : "countdown360", "title" : "Countdown 360", "description" : "This is a simple attractive circular countdown timer that counts down a number of seconds. The style is configurable and callbacks are supported on completion.", "keywords" : ["clock", "circular", "countdown", "timer", "jquery", "jquery-plugin", "plu... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "u... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "s... | {"contract" : "0x4fe327c5a809fa721d47b80c5038a0b393e61305", "tool" : "securify", "start" : 1563495862.4237425, "end" : 1563495866.1914718, "duration" : 3.7677292823791504, "analysis" : null} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"ty... | {"_id" : "55ee5e4440ee3ff05a88dcd8", "index" : 65, "guid" : "0d005db9-da7a-4971-9c9d-27a0914c6596", "isActive" : true, "balance" : "$57,004.73", "picture" : "http://placehold.it/32x32", "age" : 47, "eyeColor" : "green", "name" : "Phyllis Mcknight", "gender" : "female", "company" : "MOBILDATA", "email" : "phyllismcknigh... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "childre... | {"code" : 3318120012, "parent" : 3318120, "name" : "BADEGAN", "latitude" : null, "longitude" : null, "postal" : [59163], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "int... | {"no_of_atoms" : 424, "centre_of_mass" : [1.5068808335988406, 7.60908900040196, 16.111710961351545], "maximum_diameter" : {"diameter" : 24.99141512488868, "atom_1" : 28, "atom_2" : 281}, "pore_diameter" : {"diameter" : 6.3943387224445605, "atom" : 92}, "pore_volume" : 136.89435397282642, "pore_diameter_opt" : {"diamete... | json_instruct | {"type": "object", "properties": {"no_of_atoms": {"type": "integer"}, "centre_of_mass": {"type": "array", "items": {"type": "number"}}, "maximum_diameter": {"type": "object", "properties": {"diameter": {"type": "number"}, "atom_1": {"type": "integer"}, "atom_2": {"type": "integer"}}, "required": ["diameter", "atom_1", ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height... | {"width" : 0.15491752, "rotation" : 2.8528044, "xCenter" : 0.80664474, "yCenter" : 0.7210012, "height" : 0.19364691} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"MembershipToken": {"type": "array", "items": {"type": "string"}}}, "required": ["MembershipToken"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"MembershipToken" : ["OhCrap", "LastStand", "MuggedForDisguise", "MasterOfDisguise", "LaResistance", "HeroesRUs", "SecretHandshake", "SeriousBusiness", "MacGuffin", "CallingCard", "MyCard", "IconicItem", "TokenIndex", "CoolKey", "MementoMacGuffin", "BatmanGambit", "HonoraryTrueCompanion", "UnluckyChildhoodFriend", "Co... | json_instruct | {"type": "object", "properties": {"MembershipToken": {"type": "array", "items": {"type": "string"}}}, "required": ["MembershipToken"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "propert... | {"contract" : "0x2a093bcf0c98ef744bb6f69d74f2f85605324290", "tool" : "honeybadger", "start" : 1565869519.38431, "end" : 1565870458.6308377, "duration" : 939.246527671814, "analysis" : [{"errors" : [], "file" : "/unique_chucks/3/0x2a093bcf0c98ef744bb6f69d74f2f85605324290.sol", "name" : "FoodcoinEcosystem"}, {"errors" : ... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "strin... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"ty... | {"name" : "chix-array", "description" : "Array nodes for Chi\u03c7", "author" : "Rob Halff <rob.halff@gmail.com>", "version" : "0.0.2", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/nodule/array.git"}, "engines" : {"node" : ">=0.6.0"}, "scripts" : {"test" : "chit -r"}, "devDependencies"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"an6.6:1.1": {"type": "string"}, "an6.6:2.1": {"type": "string"}}, "required": ["an6.6:1.1", "an6.6:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"an6.6:1.1" : "cck22.3.5, ms16A6_22, msdiv6, sc1", "an6.6:2.1" : "dr22.311, ms16A6_23, sc2, sya22.316"} | json_instruct | {"type": "object", "properties": {"an6.6:1.1": {"type": "string"}, "an6.6:2.1": {"type": "string"}}, "required": ["an6.6:1.1", "an6.6:2.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id":... | {"id" : 404396521, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "44aedf6bd81c2c022e8d4d256d61a6f3", "wof:id" : 404396521, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [9.39695326998665, 42.43944901796763, 9.43608154653253, 42.4642038642604]... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "render_readme": {"type": "boolean"}, "filename": {"type": "string"}}, "required": ["name", "render_readme", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Flower Card", "render_readme" : true, "filename" : "flower-card.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "render_readme": {"type": "boolean"}, "filename": {"type": "string"}}, "required": ["name", "render_readme", "filename"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/sc... | {"parent" : "woodenhoppers:block/wooden_hopper", "textures" : {"all" : "sakurarosea:blocks/sakura_planks"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"css/ionic.css": {"type": "string"}, "css/themes/ionic-ios7.css": {"type": "string"}, "js/ionic-angular.js": {"type": "string"}, "js/ionic.js": {"type": "string"}}, "required": ["css/ionic.css", "css/themes/ioni... | {"css/ionic.css" : "sha512-Il0QI0Z7Wxu3i9a7vCUDyWoQ9vMzTg7Hi93SODV9qWdKQ6Ia/Zng4F++oEcUMCXJtrYwBTMzWkHYZuxmQxCagA==", "css/themes/ionic-ios7.css" : "sha512-lf3ejEPik1igx21JvG84hBAxk4BYP+IeZP3vMUTXi2GVE/VEmAuSqDiNUzfKQRPAnVCKpftn5ZyIWW5XWiwRqw==", "js/ionic-angular.js" : "sha512-09h6JdE2Kv+7+4ykgZlBWj04Ov+R3DZGhzGrmJWUC... | json_instruct | {"type": "object", "properties": {"css/ionic.css": {"type": "string"}, "css/themes/ionic-ios7.css": {"type": "string"}, "js/ionic-angular.js": {"type": "string"}, "js/ionic.js": {"type": "string"}}, "required": ["css/ionic.css", "css/themes/ionic-ios7.css", "js/ionic-angular.js", "js/ionic.js"], "$schema": "http://json... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "chi... | {"code" : 7571031, "parent" : 7571, "name" : "KOTA TENGAH", "latitude" : "0.56436162199699", "longitude" : "123.05508965884", "postal" : [96156, 96157, 96158, 96159, 96127, 96129], "children" : [7571031001, 7571031002, 7571031003, 7571031004, 7571031005, 7571031006]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "prope... | {"id" : "11336", "name" : {"en" : "Kitzbuehel / Griesenau"}, "country" : "AT", "region" : "TR", "identifiers" : {"wmo" : "11336"}, "location" : {"latitude" : 47.4472, "longitude" : 12.3942, "elevation" : 746}, "timezone" : "Europe/Vienna"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location"... |
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": {"start": {"type": "string"}}, "required": ["start"... | {"name" : "web-voice-processor-demo", "version" : "2.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "yarn run http-server -a localhost -p 5000"}, "keywords" : ["pcm", "downsampling", "microphone", "web audio api", "speech recognition", "voice ai"], "author" : "Picovoice Inc", "license" : "Apache-... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "auth... |
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": {"test": {"type": "string"}}, "required": ["test"]}, "author"... | {"name" : "react_stocks", "version" : "1.0.0", "description" : "", "main" : "index.jsx", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"browserify" : "^11.0.1", "minifyify" : "^7.0.6", "moment-timezone" : "^0.4.0", "react" : "^0.13.3", "react-r... | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "array... | {"name" : "kozz/madmimi-php", "keywords" : ["Madmimi", "EMail", "Mail"], "description" : "Actual fork of Official PHP MadMimi API for Composer", "homepage" : "https://github.com/urakozz/madmimi-php", "type" : "library", "license" : ["MIT"], "autoload" : {"classmap" : ["MadMimi.class.php"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "homepage": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "array", "items": {"type": "string"}}, "autoload": {"type": "object", "properties":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["arguments", "directory", "file"]}, "$schema": "http... | [{"arguments" : ["c++", "-c", "-Iexternal/SQLite", "-Iinclude", "-std=c++14", "-Wall", "-Wextra", "-pedantic", "-o", "build/dal.o", "src/dal.cpp"], "directory" : "/home/listerreg/projects/storm", "file" : "src/dal.cpp"}, {"arguments" : ["cc", "-c", "-o", "external/SQLite/sqlite3.o", "external/SQLite/sqlite3.c"], "direc... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"arguments": {"type": "array", "items": {"type": "string"}}, "directory": {"type": "string"}, "file": {"type": "string"}}, "required": ["arguments", "directory", "file"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "Wi... | {"Time" : "2020-12-22T06:00:00Z", "Temp" : 10, "RelHum" : 99, "WindSpeed" : 1.3, "WindDir" : 70} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cloudinary": {"type": "object", "properties": {"version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"q": {"type": "object", "properties... | {"dependencies" : {"cloudinary" : {"version" : "1.2.5", "dependencies" : {"q" : {"version" : "1.4.1"}, "lodash" : {"version" : "3.10.1"}, "chunking-streams" : {"version" : "0.0.8"}}}}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"cloudinary": {"type": "object", "properties": {"version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"q": {"type": "object", "properties": {"version": {"type": "string"}}, "required": ["version"]}, "lodash": ... |
Construct a JSON document that adheres to this schema specification:
{"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/s... | [{"package" : "cansnper", "downloads" : 4000, "count" : 4001}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"CnCPort": {"type": "string"}, "HTTPPort": {"type": "string"}, "SocksUsername": {"type": "string"}}, "required": ["CnCPort", "HTTPPort", "SocksUsername"], "$schema": "http://json-schema.org/draft-07/schema#"}
... | {"CnCPort" : "8484", "HTTPPort" : "80", "SocksUsername" : "rvprx"} | json_instruct | {"type": "object", "properties": {"CnCPort": {"type": "string"}, "HTTPPort": {"type": "string"}, "SocksUsername": {"type": "string"}}, "required": ["CnCPort", "HTTPPort", "SocksUsername"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "... | {"categories" : ["Hardware", "Manual", "Sysadmin"], "desc" : " ", "details" : {"authors" : "Piotr J. Kula", "format" : "pdf", "isbn-10" : "1783284692", "isbn-13" : "978-1783284696", "pages" : "116 pages", "publication date" : "February 10, 2014", "publisher" : "Packt Publishing", "size" : "14.00Mb"}, "img" : "http://23... | json_instruct | {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"appid": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "enhanced": {"type": "boolean"}, "tile_background": {"type": "... | {"appid" : "b3d874a5d85233d394ed569fc8f67f4864993308", "name" : "NowShowing", "website" : "https://github.com/ninthwalker/NowShowing", "license" : "MIT License", "description" : "Generates an email and web page of Plex recently added content. NowShowing is the successor of the popular plexReport docker.", "enhanced" : ... | json_instruct | {"type": "object", "properties": {"appid": {"type": "string"}, "name": {"type": "string"}, "website": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "enhanced": {"type": "boolean"}, "tile_background": {"type": "string"}, "icon": {"type": "string"}}, "required": ["appid", "name", "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "513301205201", "text" : "\u4e3a\u820d\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "513301205202", "text" : "\u65e5\u592e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "513301205203", "text" : "\u9ad8\u543e\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "513301205204", "text" : "\u654f\u8fc1\u6751\u6c11\u59d4\u5458\u4f1a"},... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "type": {"type": "string"}, "transition_index": {"type": "integer"}, "frompage": {"type": "string"}, "tabs": {"type": "array", "items": {}}, "offs... | {"title" : "Transition Page Arrival", "x" : 500, "y" : 500, "type" : "transition", "transition_index" : 0, "frompage" : "", "tabs" : [], "offsetLoc" : {"x" : -10.5, "y" : -5}, "previousDialogue" : [], "nextDialogue" : [{"id" : -1, "ii" : 0}], "outputsLoc" : [{"x" : 0, "y" : 0}], "inputsLoc" : []} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "x": {"type": "integer"}, "y": {"type": "integer"}, "type": {"type": "string"}, "transition_index": {"type": "integer"}, "frompage": {"type": "string"}, "tabs": {"type": "array", "items": {}}, "offsetLoc": {"type": "object", "properties": {"x": {"type": "nu... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "activationEvents": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, ... | {"name" : "modulus", "main" : "./lib/modulus", "version" : "0.0.3", "description" : "Manage your Modulus projects from within Atom.", "activationEvents" : ["modulus:start", "modulus:stop", "modulus:restart"], "repository" : "https://github.com/onmodulus/atom-modulus", "license" : "MIT", "engines" : {"atom" : ">0.50.0"}... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "main": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "activationEvents": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obje... | {"hash" : "0xf45509c4e66488d8f58f12b72f4b180adf0922116dc296a8616f5b2ad5ded21f", "parentHash" : "0x19585292f203b25430be8a8d95a3f53a295453594022301c2e49299b9e933501", "number" : 61548, "timestamp" : 1439174217, "nonce" : "0x733a75dfd34564b6", "difficulty" : 1737886423240, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "block": {"type": "string"}}, "required": ["width", "height", "block"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"width" : 15, "height" : 15, "block" : "<path d=\"M77.174 32.866l-53.426 6.07a4.048 4.048 0 0 1-4.487-3.558 4.043 4.043 0 0 1 3.57-4.472l53.425-6.07a4.047 4.047 0 0 1 4.487 3.559 4.043 4.043 0 0 1-3.57 4.47m0 21.77l-53.425 6.069a4.05 4.05 0 0 1-4.487-3.556 4.044 4.044 0 0 1 3.57-4.473l53.425-6.068a4.046 4.046 0 0 1 4.... | json_instruct | {"type": "object", "properties": {"width": {"type": "integer"}, "height": {"type": "integer"}, "block": {"type": "string"}}, "required": ["width", "height", "block"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"t... | {"nom" : "Ile-Tudy", "dpt" : "Finist\u00e8re", "inscrits" : 693, "abs" : 121, "votants" : 572, "blancs" : 70, "nuls" : 8, "exp" : 494, "res" : [{"panneau" : "1", "voix" : 412}, {"panneau" : "2", "voix" : 82}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "929e1955b01c05eab05df26cb848fcf5fa052f31"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"D0TAj9": {"type": "object", "properties": {"description": {"type": "string"}, "message": {"type": "string"}}, "required": ["description", "message"]}, "i+kBzF": {"type": "object", "properties": {"description": {"type": "string... | {"D0TAj9" : {"description" : "Button to go to the next page of results", "message" : "Next"}, "i+kBzF" : {"description" : "Shows pagination information for tables", "message" : "Showing <span>{startResult}</span> to <span>{endResult}</span> of <span>{totalResults}</span> results"}, "s08Wxj" : {"description" : "Button t... | json_instruct | {"type": "object", "properties": {"D0TAj9": {"type": "object", "properties": {"description": {"type": "string"}, "message": {"type": "string"}}, "required": ["description", "message"]}, "i+kBzF": {"type": "object", "properties": {"description": {"type": "string"}, "message": {"type": "string"}}, "required": ["descripti... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"client": {"type": "string"}, "server": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "requi... | {"name" : "create-react-app-express", "version" : "0.0.1", "scripts" : {"client" : "cd client && yarn start", "server" : "nodemon server.js", "dev" : "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"", "build" : "cd client && yarn build"}, "dependencies" : {"express" : "^4.16.2", "uuid" : "^3.2.1"}, "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"client": {"type": "string"}, "server": {"type": "string"}, "dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["client", "server", "dev", "build"]}, "dependencies"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "signed_content": {"type": "object", "properties": {"payload": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "prope... | [{"description" : "treehash per file", "signed_content" : {"payload" : "eyJjb250ZW50X2hhc2hlcyI6W3siYmxvY2tfc2l6ZSI6NDA5NiwiZGlnZXN0Ijoic2hhMjU2IiwiZmlsZXMiOlt7InBhdGgiOiJMSUNFTlNFIiwicm9vdF9oYXNoIjoiUGIwc2tBVUxaUzFqWldTQnctV0hIRkltRlhVcExiZDlUcVkwR2ZHSHBWcyJ9LHsicGF0aCI6ImNybC1zZXQiLCJyb290X2hhc2giOiJXLVZQRXBPcjU0c1hK... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "signed_content": {"type": "object", "properties": {"payload": {"type": "string"}, "signatures": {"type": "array", "items": {"type": "object", "properties": {"header": {"type": "object", "properties": {"kid": {"type": "strin... |
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" : "1105110020", "district_id" : "1105110", "name" : "SEUNEUBOK PEUSANGAN"} | 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"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "uuid", "description", "type"], "$schema": "http://json-schema.org/draft-07/schema#... | {"name" : "BRAS | L2TP", "uuid" : "83bb51cd-750e-4064-ae63-4e22149f7eaa", "description" : "L2TP-capable BRAS/VPN Concentrator", "type" : "bool"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "uuid", "description", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "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" : [[[-95.488887, 29.851033], [-95.488626, 29.860485], [-95.486772, 29.865752], [-95.481616, 29.865763], [-95.472058, 29.848886], [-95.475634, 29.849118], [-95.47973, 29.850486], [-95.488887, 29.851033]]]}, "type" : "Feature", ... | 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": {"angular-fontselect.css": {"type": "string"}, "angular-fontselect.js": {"type": "string"}, "angular-fontselect.min.css": {"type": "string"}, "angular-fontselect.min.js": {"type": "string"}}, "required": ["angular-f... | {"angular-fontselect.css" : "sha256-bKmD1conFOv7TQHIGM3wOPrMy903LPmH4VJ4+Pykf3k=", "angular-fontselect.js" : "sha256-kYCwWxWkCtIbqFwibLbp6ZFOaX39sql9v3DHE8LUQ+E=", "angular-fontselect.min.css" : "sha256-xAcVYQWoaUdFSe10sk3C0/4ksXutzDgDK/8bzpTr1NQ=", "angular-fontselect.min.js" : "sha256-DeLoVvXB/Iu1BrolFi41P1+JgMmtFmNh... | json_instruct | {"type": "object", "properties": {"angular-fontselect.css": {"type": "string"}, "angular-fontselect.js": {"type": "string"}, "angular-fontselect.min.css": {"type": "string"}, "angular-fontselect.min.js": {"type": "string"}}, "required": ["angular-fontselect.css", "angular-fontselect.js", "angular-fontselect.min.css", "... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["date", "title", "description", "icon"]}, "$schema": "http://json-... | [{"date" : "02-01-2022", "title" : "Threat and risk modelling for Industrial IoT Systems", "description" : "Working on a quantitative threat modelling and risk assessment framework for Industrial IoT systems based on a novel risk scoring method.", "icon" : "feather:briefcase"}, {"date" : "12-31-2021", "title" : "Taxono... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["date", "title", "description", "icon"]}, "$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.