input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["deriv... | {"derivation" : "of foreign origin (compare G174 (\u1f00\u03bb\u03cc\u03b7));", "kjv_def" : "aloes", "lemma" : "\u1f00\u03bb\u03cc\u03b7", "frequency" : 1, "strongs_def" : " aloes (the gum)", "outline" : "<ol><li> aloe, aloes</li></ol>"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "outline": {"type": "string"}}, "required": ["derivation", "kjv_def", "lemma", "frequency", "strongs_def", "outline"], "$sc... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "sh... | {"name" : "ampie", "version" : "2.4.0", "private" : true, "devDependencies" : {"autoprefixer" : "^10.2.6", "postcss" : "^8.3.5", "shadow-cljs" : "2.12.5", "tailwindcss" : "^2.2.2"}, "dependencies" : {"dexie" : "^3.0.3", "jsonparse" : "^1.3.1", "react" : "17.0.2", "react-dom" : "17.0.2", "react-shadow-dom-retarget-event... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"autoprefixer": {"type": "string"}, "postcss": {"type": "string"}, "shadow-cljs": {"type": "string"}, "tailwindcss": {"type": "string"}}, "req... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"p" : "a66d4d31-7aab-43d2-b7e2-3f86135da190", "d" : 5579}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"p": {"type": "string"}, "d": {"type": "integer"}}, "required": ["p", "d"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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... | {"nom" : "Hallering", "dpt" : "Moselle", "inscrits" : 95, "abs" : 26, "votants" : 69, "blancs" : 8, "nuls" : 4, "exp" : 57, "res" : [{"panneau" : "1", "voix" : 31}, {"panneau" : "2", "voix" : 26}]} | 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"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"key": {"type": "integer"}, "name": {"type": "string"}, "comment": {"type": "string"}}, "required": ["key", "name", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"key" : 1, "name" : "Joey Oddball", "comment" : "Who wants nachos?"}, {"key" : 2, "name" : "Susan Squarish", "comment" : "Please cite your sources."}, {"key" : 3, "name" : "Wanda Weird", "comment" : "Have you tried wearing the book as a hat?"}, {"key" : 4, "name" : "Percival the Levelheaded", "comment" : "I rather li... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "integer"}, "name": {"type": "string"}, "comment": {"type": "string"}}, "required": ["key", "name", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"inputs": {"type": "object", "properties": {"release": {"type": "string"}}, "required": ["release"]}}, "required": ["inputs"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"inputs" : {"release" : "2.8.0"}} | json_instruct | {"type": "object", "properties": {"inputs": {"type": "object", "properties": {"release": {"type": "string"}}, "required": ["release"]}}, "required": ["inputs"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", ... | {"name" : "download-file-sync", "version" : "1.0.0", "description" : "Does exactly what you expects", "main" : "index.js", "author" : "vjeux", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "author", "license"], "$schema": "http://json-s... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft... | {"parent" : "minecraft:item/generated", "textures" : {"layer0" : "adjunct:item/jump_rocket"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}... | {"CIDADE" : "Macambira", "IBGE" : "2803708", "ESTADO" : "Sergipe", "ID" : "28"} | json_instruct | {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "propertie... | {"builtin" : {"__set__" : true, "elements" : ["copy", "datetime", "os"]}, "relative" : {"__set__" : true, "elements" : ["data", "dataclasses", "utils"]}, "required" : {"__set__" : true, "elements" : ["alabaster", "astropy", "numpy", "oifits", "setuptools"]}} | json_instruct | {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "i... |
Using the following JSON schema, generate a compatible JSON instance:
{"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"]}},... | [{"label" : "Bag", "normalizedVertices" : [{"x" : 0.5428091, "y" : 0.42487517}, {"x" : 0.98824966, "y" : 0.42487517}, {"x" : 0.98824966, "y" : 0.6492425}, {"x" : 0.5428091, "y" : 0.6492425}], "score" : 0.7476302}] | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"}, "X-SharePoin... | {"IsSuccessStatusCode" : true, "StatusCode" : 200, "Headers" : {"SPRequestGuid" : "35fb0ca0-702e-3000-787b-4175317ff1fd", "SPClientServiceRequestDuration" : "1722", "X-SharePointHealthScore" : "1", "X-SP-SERVERSTATE" : "ReadOnly=0"}, "Response" : "{\"CheckInComment\":\"\",\"CheckOutType\":2,\"ContentTag\":\"{74BF2498-A... | json_instruct | {"type": "object", "properties": {"IsSuccessStatusCode": {"type": "boolean"}, "StatusCode": {"type": "integer"}, "Headers": {"type": "object", "properties": {"SPRequestGuid": {"type": "string"}, "SPClientServiceRequestDuration": {"type": "string"}, "X-SharePointHealthScore": {"type": "string"}, "X-SP-SERVERSTATE": {"ty... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "server": {"type": "s... | {"name" : "8-0-phonebook", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "server" : "NODE_ENV=development nodemon index.js", "client" : "npm start --prefix ./client", "dev" : "concurrently \"npm run server\" \"npm run client\""}, "auth... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "server": {"type": "string"}, "client": {"type": "string"}, "dev": {"type": "string"}}, "re... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "regex": {"type": "string"}, "severity": {"type": "integer"}}, "required": ["tit... | {"title" : "Trello Secrets", "checks" : [{"title" : "Trello URL", "regex" : "https://trello.com/b/[0-9a-z]/[0-9a-z_-]+", "severity" : 1}]} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "checks": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "regex": {"type": "string"}, "severity": {"type": "integer"}}, "required": ["title", "regex", "severity"]}}}, "required": ["title", "checks"], "$schema": "ht... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"pagination": {"type": "object", "properties": {"ListApplicationVersions": {"type": "object", "properties": {"input_token": {"type": "string"}, "output_token": {"type": "string"}, "limit_key": {"type": "string"}}, ... | {"pagination" : {"ListApplicationVersions" : {"input_token" : "NextToken", "output_token" : "NextToken", "limit_key" : "MaxItems"}, "ListApplications" : {"input_token" : "NextToken", "output_token" : "NextToken", "limit_key" : "MaxItems"}}} | json_instruct | {"type": "object", "properties": {"pagination": {"type": "object", "properties": {"ListApplicationVersions": {"type": "object", "properties": {"input_token": {"type": "string"}, "output_token": {"type": "string"}, "limit_key": {"type": "string"}}, "required": ["input_token", "output_token", "limit_key"]}, "ListApplicat... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"trainNum": {"type": "string"}, "stopList": {"type": "array", "items": {"type": "string"}}, "arrTimeList": {"type": "array", "items": {"type": "string"}}, "depTimeList": {"type": "array", "items": {"type": "string"}}, "pastTime... | {"trainNum" : "G7035", "stopList" : ["jiangsu/NanJing", "jiangsu/ZhenJiang", "jiangsu/ChangZhou", "jiangsu/qishuyan", "jiangsu/WuXi", "jiangsu/SuZhou", "jiangsu/kunshannan", "shanghai/shanghaixi", "shanghai/ShangHai"], "arrTimeList" : ["----", "06:50", "07:15", "07:25", "07:38", "07:55", "08:09", "08:26", "08:35"], "de... | json_instruct | {"type": "object", "properties": {"trainNum": {"type": "string"}, "stopList": {"type": "array", "items": {"type": "string"}}, "arrTimeList": {"type": "array", "items": {"type": "string"}}, "depTimeList": {"type": "array", "items": {"type": "string"}}, "pastTimeList": {"type": "array", "items": {"type": "string"}}}, "re... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.0a9ec390.chunk.css": {... | {"files" : {"main.js" : "/Singapuri-React-Portfolio/static/js/main.8d03bf02.chunk.js", "main.js.map" : "/Singapuri-React-Portfolio/static/js/main.8d03bf02.chunk.js.map", "runtime-main.js" : "/Singapuri-React-Portfolio/static/js/runtime-main.0dddb0a0.js", "runtime-main.js.map" : "/Singapuri-React-Portfolio/static/js/run... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.0a9ec390.chunk.css": {"type": "string"}, "static/js/2.3c0833b5.chunk.js": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css... | {"angular-material.css" : "sha256-xabBUUk4YZvF19krHxxX33id4yZYjkjGOHNB9dN59zw=", "angular-material.js" : "sha256-vY3E6dePKgLSnsR1dyjUJnp5jziMGHxfZLMUBNL/tZo=", "angular-material.min.css" : "sha256-ytHnVkad4KERt+be0qsStQGmJfenrHoxXox7DnuG2GA=", "angular-material.min.js" : "sha256-1GcJnfzje8DFeeVQ1v0o/l9opgg4wqRUrcfLeSSr... | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-materi... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "description", "type"]}, "$schema": "http://json-schema.org/dra... | [{"category" : "``glue``", "description" : "[``botocore``] Update glue client to latest version", "type" : "api-change"}, {"category" : "``transcribe``", "description" : "[``botocore``] Update transcribe client to latest version", "type" : "api-change"}, {"category" : "``connectparticipant``", "description" : "[``botoc... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"category": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}}, "required": ["category", "description", "type"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["/spots/49747", "/spots/136029", "/spots/142525", "/spots/11641", "/spots/43464", "/spots/18320", "/spots/455129", "/spots/59817", "/spots/78953", "/spots/261180", "/spots/284084", "/spots/164052", "/spots/13354", "/spots/366585", "/spots/11300"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "bread_outside": {"type": "string"}, "bread_inside": {"type": "string"}, "bread_outside_link": {"type": "string"}}, "required": ["title", "desc", "bread_outsi... | {"title" : "Business Review", "desc" : "2020 was a tumultuous year for Kingspan, as it was for many. After a relatively strong start, April and May saw a deep reduction in activity in many markets, followed by a rebound towards mid-year and ultimately a strong finish in the fourth quarter. Full year revenue was down 2%... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "desc": {"type": "string"}, "bread_outside": {"type": "string"}, "bread_inside": {"type": "string"}, "bread_outside_link": {"type": "string"}}, "required": ["title", "desc", "bread_outside", "bread_inside", "bread_outside_link"], "$schema": "http://json-sch... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"python.formatting.provider": {"type": "string"}, "files.autoSave": {"type": "string"}, "files.autoSaveDelay": {"type": "integer"}}, "required": ["python.formatting.provider", "files.autoSave", "files.autoSaveDelay"], "$schema"... | {"python.formatting.provider" : "black", "files.autoSave" : "afterDelay", "files.autoSaveDelay" : 3000} | json_instruct | {"type": "object", "properties": {"python.formatting.provider": {"type": "string"}, "files.autoSave": {"type": "string"}, "files.autoSaveDelay": {"type": "integer"}}, "required": ["python.formatting.provider", "files.autoSave", "files.autoSaveDelay"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Logging Out", "text" : "please wait..."} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}}, "required": ["title", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "str... | {"name" : "sunnytreesoftware/acorn", "description" : "Photo Profile Management System for Laravel", "license" : "MIT", "authors" : [{"name" : "Michael Stratton", "email" : "mike@mikestratton.net"}], "require" : {}, "autoload" : {"psr-4" : {"Sunnytree\\Acorn\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["Sunnytr... | 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"]}}, "require": {"type": "object",... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"api_id": {"type": "string"}, "phlo_run_id": {"type": "string"}, "phlo_id": {"type": "string"}, "message": {"type": "string"}}, "required": ["api_id", "phlo_run_id", "phlo_id", "message"], "$schema": "http://json-schema.org/... | {"api_id" : "52d7d3d4-9a47-44c9-8c08-436aac427220", "phlo_run_id" : "2e802f94-cc03-4e35-b4c8-5a0328544135", "phlo_id" : "2e802f94-cc03-4e35-b4c8-5a0328544135", "message" : "stopped. next node uuid not found for b'Start' - b'Start' with output state: http - phlo_run_id 52d7d3d4-9a47-44c9-8c08-436aac427220"} | json_instruct | {"type": "object", "properties": {"api_id": {"type": "string"}, "phlo_run_id": {"type": "string"}, "phlo_id": {"type": "string"}, "message": {"type": "string"}}, "required": ["api_id", "phlo_run_id", "phlo_id", "message"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"band_id": {"type": "string"}, "birth_date": {"type": "string"}, "birth_name": {"type": "string"}, "birth_name_hangul": {"type": "string"}, "blood_type": {"type": "string"}, "height": {"type": "integer"}, "id": {"ty... | {"band_id" : "3075f0c6-0774-4e55-ac2d-9991c621b692", "birth_date" : "1993-04-06", "birth_name" : "Lee Yu-na", "birth_name_hangul" : "\uc774\uc720\ub098", "blood_type" : "A", "height" : 165, "id" : "e9311f9b-eb69-4148-916f-e9a078d48510", "instagram" : "u.na93", "name" : "Yuna", "name_hangul" : "\uc720\ub098", "positions... | json_instruct | {"type": "object", "properties": {"band_id": {"type": "string"}, "birth_date": {"type": "string"}, "birth_name": {"type": "string"}, "birth_name_hangul": {"type": "string"}, "blood_type": {"type": "string"}, "height": {"type": "integer"}, "id": {"type": "string"}, "instagram": {"type": "string"}, "name": {"type": "stri... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"init": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}, "dataSet": {"type": "object", "properties": {"columns": {"type": "arr... | {"init" : [{"key" : "color", "value" : "blue"}, {"key" : "title", "value" : "Hello!"}, {"key" : "subtitle", "value" : "Hello World!"}], "dataSet" : {"columns" : [{"name" : "Total", "type" : "LABEL", "settings" : {"columnId" : "Total", "columnName" : "Total", "valueExpression" : "value", "emptyTemplate" : "---", "valueP... | json_instruct | {"type": "object", "properties": {"init": {"type": "array", "items": {"type": "object", "properties": {"key": {"type": "string"}, "value": {"type": "string"}}, "required": ["key", "value"]}}, "dataSet": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "object", "properties": {"name": {"t... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "o... | {"hash" : "0x914dc3f3a8e437aaf3fa590682b869c5abd39a25cb786fb45b5e7608a6b54a82", "parentHash" : "0xfef022774b37b376cfd8f5f77859d94b0018dbea20a499d2602c255935ada344", "number" : 12848, "timestamp" : 1438374144, "nonce" : "0xf8cc4cb723f38100", "difficulty" : 767384665732, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_h... | 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"]... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragment": {"type": "st... | {"name" : "MLPaddingMode", "defined" : {"spec" : {"title" : "Web Neural Network API", "url" : "https://www.w3.org/TR/webnn/"}, "fragment" : "enum MLPaddingMode {\n \"constant\",\n \"edge\",\n \"reflection\",\n \"symmetric\"\n};", "href" : "https://webmachinelearning.github.io/webnn/#enumdef-mlpaddingmode"}, "extend... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "defined": {"type": "object", "properties": {"spec": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}, "fragment": {"type": "string"}, "href": {"type": "string"}}, "required": ["spec", "... |
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" : "walle.sso", "version" : "1.0.0", "description" : "walle sso project", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC", "dependencies" : {"element-ui" : "latest", "autoprefixer" : "^7.1.2", "vue" : "^2.4.2", "vue-loader" : "^13.0.4", ... | 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": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_ne... | {"MRRm_new" : 0.1421710635843565, "MRm_new" : 4151.718385640949, "HITS@1m_new" : 0.09307944061847229, "HITS@3m_new" : 0.1460399431500846, "HITS@10m_new" : 0.23557883368240437} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "outDir": {"type": "string"}, "module": {"type": "string"}, "sourceMap": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "watch": {"t... | {"compilerOptions" : {"target" : "es5", "outDir" : "scripts", "module" : "commonjs", "sourceMap" : true, "noImplicitAny" : false, "watch" : true, "typeRoots" : ["./typings"], "strictNullChecks" : true}, "files" : ["./scripts/mrxrm.contact.form.ts"]} | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"target": {"type": "string"}, "outDir": {"type": "string"}, "module": {"type": "string"}, "sourceMap": {"type": "boolean"}, "noImplicitAny": {"type": "boolean"}, "watch": {"type": "boolean"}, "typeRoots": {"type": "array", "items": {... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[151.625, 31.75], [151.625, 31.833333333333332], [151.75, 31.833333333333332], [151.75, 31.75], [151.625, 31.75]]]}, "properties" : {"code" : 475155, "url" : "http://madefor.github.io/0410/api/v1/475155.geojson", "view" : "https://github.com/madef... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"],... | {"id" : "2008", "provinceId" : "73", "regencyId" : "08", "districtId" : "13", "name" : "Massenreng pulu"} | 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": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-85.240032, 46.523058], [-85.238923, 46.550027], [-85.239156, 46.665946], [-85.237886, 46.755533], [-85.237123, 46.76637], [-85.211929, 46.768714], [-85.175671, 46.774487], [-85.163358, 46.775546], [-85.144309, 46.775926]... | 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... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"header": {"type": "array", "items": {"type": "string"}}, "lineTemplate": {"type": "string"}, "footer": {"type": "array", "items": {"type": "string"}}}, "required": ["header", "lineTemplate", "footer"], "$schema": "http://js... | {"header" : ["<?xml version=\"1.0\" encoding=\"utf-8\"?>", "<tt xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.w3.org/ns/ttml\" xmlns:tt=\"http://www.w3.org/ns/ttml\" xmlns:tts=\"http://www.w3.org/ns/ttml#styling\" xmlns:ttp=\"http://www.w3.org/ns/ttml#parameter\" xml:lang=\"en-US\" ttp:time... | json_instruct | {"type": "object", "properties": {"header": {"type": "array", "items": {"type": "string"}}, "lineTemplate": {"type": "string"}, "footer": {"type": "array", "items": {"type": "string"}}}, "required": ["header", "lineTemplate", "footer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"typ... | {"compatibility.js" : "sha512-VNTxnxGrmqtaHArmqyLbGH+OFo0GNQH+G7Ixjjv50lV4+XfexJDQPPoOl2t0ynWmRPZJq5lIet9wNexAZgj5Tg==", "compatibility.min.js" : "sha512-aJTu2y51OPCau1bK7pI992np1YjZ5frgJWSy3wA3qQx0xEU2QesviPyouofJc37dKkxNvM/B+7NRhk1TEoT2wQ==", "pdf.combined.js" : "sha512-ue7AoENsPkeNU8TESfrmL+6ZLxJBnjbOytsmZV35w5wOs9o... | json_instruct | {"type": "object", "properties": {"compatibility.js": {"type": "string"}, "compatibility.min.js": {"type": "string"}, "pdf.combined.js": {"type": "string"}, "pdf.combined.min.js": {"type": "string"}, "pdf.js": {"type": "string"}, "pdf.min.js": {"type": "string"}, "pdf.worker.js": {"type": "string"}, "pdf.worker.min.js"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"tableName": {"type": "string"}, "partitionKeyName": {"type": "string"}, "partitionKeyType": {"type": "string"}}, "required": ["tableName", "partitionKeyName", "partitionKeyType"], "$schema": "http://json-schema.org/d... | {"tableName" : "matchpoints", "partitionKeyName" : "match", "partitionKeyType" : "S"} | json_instruct | {"type": "object", "properties": {"tableName": {"type": "string"}, "partitionKeyName": {"type": "string"}, "partitionKeyType": {"type": "string"}}, "required": ["tableName", "partitionKeyName", "partitionKeyType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "i... | {"author" : {"id" : "t2_bedwo", "name" : "alexdrummond"}, "date" : {"day" : 1585440000, "full" : 1585497654, "month" : 1583020800, "week" : 1585440000}, "id" : "t3_fr83f6", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 64350, "fullUrl" : "https://preview.redd.it/gosf9egtvmp41.jpg?auto=webp&s=9241b0f92dccfb... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
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" : 29402, "cartId" : "0be883a9-cd7c-4c19-8f45-933403877359", "preferredProducts" : [4973, 845, 4310, 2231], "productReviews" : [{"productId" : 479, "reviewText" : "It only works when I'm Heard Island and McDonald Islands.", "reviewDate" : "2018-07-02T05:45:22.7271757+03:00"}, {"productId" : 1855, "reviewText" ... | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Acrylic Paint", "description" : "This pony is Light Green, with bright Blue eyes. When they are not being rented by Unicorn Rentals users, they love turtles", "image" : "jcB4CYtOC3H5orlvdIAWznwPJ9VVz2m32Tj6mhr7bHjsHYq7FS3OQfV5M3DB1aXb++o="} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}}, "required": ["name", "description", "image"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["620121109201", "\u738b\u5bb6\u576a\u6751\u59d4\u4f1a", "220", "0"], ["620121109202", "\u90ed\u5bb6\u58a9\u6751\u59d4\u4f1a", "220", "0"], ["620121109203", "\u5317\u540c\u6751\u59d4\u4f1a", "121", "0"], ["620121109204", "\u5357\u540c\u6751\u59d4\u4f1a", "122", "0"], ["620121109205", "\u6cc9\u6c34\u6c9f\u6751\u59d4\u4... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "... | {"files" : {"main.css" : "/static/css/main.95ece0e2.chunk.css", "main.js" : "/static/js/main.197222f0.chunk.js", "main.js.map" : "/static/js/main.197222f0.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.69c1e85a.js", "runtime-main.js.map" : "/static/js/runtime-main.69c1e85a.js.map", "static/js/2.a0230043.ch... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.a0230043.chunk.js": {"type": "string"}, "static/js... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[], [{"name" : "MEK activation", "imports" : ["RAF activation"]}, {"name" : "ERK activation", "imports" : ["MEK activation"]}]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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... | {"version" : "english_NIV", "book" : "1 Kings", "chapter" : 2, "verse" : 15, "word" : "\u201cAs you know,\u201d he said, \u201cthe kingdom was mine. All Israel looked to me as their king. But things changed, and the kingdom has gone to my brother; for it has come to him from the LORD."} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"232701100": {"type": "string"}, "232701101": {"type": "string"}, "232701102": {"type": "string"}, "232701103": {"type": "string"}, "232701104": {"type": "string"}, "232701105": {"type": "string"}, "232701400"... | {"232701100" : "\u897f\u6797\u5409\u9547", "232701101" : "\u56fe\u5f3a\u9547", "232701102" : "\u963f\u6728\u5c14\u9547", "232701103" : "\u5174\u5b89\u9547", "232701104" : "\u5317\u6781\u9547", "232701105" : "\u53e4\u83b2\u9547", "232701400" : "\u897f\u6797\u5409\u6797\u4e1a\u5c40", "232701401" : "\u56fe\u5f3a\u6797\u4e... | json_instruct | {"type": "object", "properties": {"232701100": {"type": "string"}, "232701101": {"type": "string"}, "232701102": {"type": "string"}, "232701103": {"type": "string"}, "232701104": {"type": "string"}, "232701105": {"type": "string"}, "232701400": {"type": "string"}, "232701401": {"type": "string"}, "232701402": {"type": ... |
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" : 18204830484536976040, "features" : "[]", "target" : 2166908563331210119, "profile" : 2479238963835404001, "path" : 3840346221616168821, "deps" : [], "local" : [{"Precalculated" : "1.4.2"}], "rustflags" : [], "epoch" : "Epoch2015"} | 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": {"Precalculated": {"typ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "arc... | {"vendor" : "zulu", "filename" : "zulu13.33.25-ca-jre13.0.4-linux_i686.zip", "release_type" : "ga", "version" : "13.33.25", "java_version" : "13.0.4", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "i686", "file_type" : "zip", "image_type" : "jre", "features" : [], "url" : "https://static.azul.com/zulu/bin/zu... | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "653223212200", "text" : "\u5eb7\u514b\u5c14\u6751\u6751\u59d4\u4f1a"}, {"id" : "653223212201", "text" : "\u4e4c\u62c9\u5176\u6751\u6751\u59d4\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#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "codeowners": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "requirement... | {"domain" : "fritzbox_tools", "name" : "FRITZ!Box Tools", "documentation" : "https://github.com/mammuth/ha-fritzbox-tools/blob/master/README.md", "codeowners" : ["@mammuth"], "dependencies" : [], "requirements" : ["fritzconnection==1.2.0", "fritz-switch-profiles==1.0.0", "xmltodict==0.12.0"], "config_flow" : true} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "codeowners": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "requirements": {"type": "array", "items": {"type": "string"}}, "config_flow": {"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[129.75, 40.5], [129.75, 40.583333333333336], [129.875, 40.583333333333336], [129.875, 40.5], [129.75, 40.5]]]}, "properties" : {"code" : 602966, "url" : "http://madefor.github.io/0410/api/v1/602966.geojson", "view" : "https://github.com/madefor/0... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"900153310": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900153311": {"type": "object", "properties... | {"900153310" : {"nama" : "TPS 1", "dapil" : [1901, 11902, 2190402]}, "900153311" : {"nama" : "TPS 2", "dapil" : [1901, 11902, 2190402]}, "900153312" : {"nama" : "TPS 3", "dapil" : [1901, 11902, 2190402]}, "900153313" : {"nama" : "TPS 4", "dapil" : [1901, 11902, 2190402]}, "900153314" : {"nama" : "TPS 5", "dapil" : [190... | json_instruct | {"type": "object", "properties": {"900153310": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900153311": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["projec... | {"project_info" : {"project_number" : "55587363996", "firebase_url" : "https://classteacher-ada9f.firebaseio.com", "project_id" : "classteacher-ada9f", "storage_bucket" : "classteacher-ada9f.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:55587363996:android:50523effbc0ea1a2c56159", "android_client... | json_instruct | {"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client"... |
Based on the schema below, produce a valid JSON object:
{"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"... | {"body" : "Refactored the Legion package to better capture latest configuration and build options. This includes features that will be necessary for creation of extra packages for other products built on-top of Legion. Many features now available were driven by new use cases and requirements. This update deprecates... | 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": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, ... | {"lastUpdated" : 1655019279666, "username" : "largusspookeh", "scores" : [{"xp" : 3895, "rank" : 434, "cardId" : 591}, {"xp" : 2932, "rank" : 495, "cardId" : 292}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["last... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]}, "staticQueryH... | {"componentChunkName" : "component---src-pages-main-page-jsx", "path" : "/mainPage/", "result" : {"pageContext" : {}}, "staticQueryHashes" : ["63159454"]} | json_instruct | {"type": "object", "properties": {"componentChunkName": {"type": "string"}, "path": {"type": "string"}, "result": {"type": "object", "properties": {"pageContext": {"type": "object", "properties": {}, "required": []}}, "required": ["pageContext"]}, "staticQueryHashes": {"type": "array", "items": {"type": "string"}}}, "r... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"mess-amount": {"type": "string"}, "mess-rebate": {"type": "string"}, "swd-advance": {"type": "string"}}, "required": ["mess-amount", "mess-rebate", "swd-advance"], "$schema": "http://json-schema.org/draft-07/schema#... | {"mess-amount" : "120", "mess-rebate" : "90", "swd-advance" : "22000"} | json_instruct | {"type": "object", "properties": {"mess-amount": {"type": "string"}, "mess-rebate": {"type": "string"}, "swd-advance": {"type": "string"}}, "required": ["mess-amount", "mess-rebate", "swd-advance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "item... | {"type" : "FeatureCollection", "title" : "Tempelbezirk Pesch", "id" : "109214", "bbox" : [6.702819, 50.533588, 6.7030087, 50.5336203], "description" : "A Gallo-Roman temple complex dated to the 1st-4th centuries CE.", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [6.70291385, 50.533... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry":... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "de... | {"name" : "snappass-nodejs", "license" : "BSD-2-Clause", "version" : "0.0.0", "author" : {"name" : "Andrew Darqui", "email" : "andrew.darqui@gmail.com"}, "description" : "It's like SnapChat... for passwords.", "main" : "snappass.js", "scripts" : {"test" : "vows --spec test/vows.js", "start" : "./bin/snappass"}, "reposi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "description": {"type": "string"}, "main": {"type": "string"},... |
Based on the schema below, produce a valid JSON object:
{"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": {"wm... | {"id" : "94082", "name" : {"en" : "Nuguria"}, "country" : "PG", "region" : "BV", "identifiers" : {"wmo" : "94082"}, "location" : {"latitude" : -3.3167, "longitude" : 154.6667, "elevation" : 3}, "timezone" : "Pacific/Port_Moresby"} | 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 sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.62570299300012, -34.06454299599994], [137.62477403200012, -34.065525993999984], [137.62391500400008, -34.06737399599996], [137.62031902400008, -34.06930400799996], [137.62098299600007, -34.069969008999976], [137.62015002900011, -34.0706439999... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "... | {"name" : "@qlik/node-microservice-logger", "version" : "1.4.3", "main" : "index.js", "engines" : {"node" : ">= 8.2.0"}, "license" : "SEE LICENSE IN LICENSE", "dependencies" : {"cls-hooked" : "^4.2.2", "express-winston" : "^2.2.0", "lodash" : "^4.17.5", "winston" : "^2.2.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cls-hooked": {"type"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"},... | {"id" : 15317, "info" : {"name" : "Kotaku - Kill ad slider", "description" : "Kotaku violates what I consider one of the cardinal rules of web advertising - don't cover content. This script removes the marquee that slides across the featured articles at the top of the page.\r\n\r\nThis script is very specific, and doe... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "require... | {"track" : "typescript", "exercise" : "hello-world", "id" : "efbc9aabead1480aad6d1576c63ef067", "url" : "https://exercism.io/my/solutions/efbc9aabead1480aad6d1576c63ef067", "handle" : "odykyi", "is_requester" : true, "auto_approve" : true} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques... |
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" : "Fontenille", "dpt" : "Charente", "inscrits" : 252, "abs" : 50, "votants" : 202, "blancs" : 18, "nuls" : 11, "exp" : 173, "res" : [{"panneau" : "1", "voix" : 105}, {"panneau" : "2", "voix" : 68}]} | 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"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot... | {"id" : "Qmc7kL4hP1YjBnkfFEadQjrSQmzj4kCFYtFY5ur8bXNWiW", "title" : "This is a test for RCV", "body" : "Hi!", "choices" : ["Alice", "Bob", "Carol", "David", "Eric"], "start" : 1622523600, "end" : 1625029200, "snapshot" : "8751792", "state" : "closed", "author" : "0x4C7909d6F029b3a5798143C843F4f8e5341a3473", "space" : {... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "body": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "start": {"type": "integer"}, "end": {"type": "integer"}, "snapshot": {"type": "string"}, "state": {"type": "string"}, "author": {"type": "strin... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"... | {"title" : "Somalia - Prices", "downloads" : 89, "tags" : ["hxl", "indicators", "prices", "Somalia"], "hxl" : 1, "org" : "Food and Agriculture Organization (FAO)", "id" : "bc768f59-f1c1-481b-a850-c801db1fe887", "resources" : [{"update_date" : "2021-01-31T13:33:52.361155", "link" : "https://data.humdata.org/dataset/bc76... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "downloads": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "hxl": {"type": "integer"}, "org": {"type": "string"}, "id": {"type": "string"}, "resources": {"type": "array", "items": {"type": "object", "properties": {"update_date... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cloudinary-core-shrinkwrap.js": {"type": "string"}, "cloudinary-core-shrinkwrap.min.js": {"type": "string"}, "cloudinary-core.js": {"type": "string"}, "cloudinary-core.min.js": {"type": "string"}}, "required": ["cloudinary-cor... | {"cloudinary-core-shrinkwrap.js" : "sha512-82hEfNJIPnrdgZW6e0CV6d75fD7kBb87Zr4h//wkF/0/y6KA2o4UzMlJ1zM4Dd91RBA49sZ8+Fu5v3Xp02ukog==", "cloudinary-core-shrinkwrap.min.js" : "sha512-EXXpEGBFJJ54oMJyQ8AgzToBYoZa4tHfs194mI96O8J4Mcy7P8oSbl4tthctIhlzFSgzLTsPT5G7yYymByD2tg==", "cloudinary-core.js" : "sha512-PaJvZDn8PLDF6E3Sh+... | json_instruct | {"type": "object", "properties": {"cloudinary-core-shrinkwrap.js": {"type": "string"}, "cloudinary-core-shrinkwrap.min.js": {"type": "string"}, "cloudinary-core.js": {"type": "string"}, "cloudinary-core.min.js": {"type": "string"}}, "required": ["cloudinary-core-shrinkwrap.js", "cloudinary-core-shrinkwrap.min.js", "clo... |
Create an example JSON object that satisfies this 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": {"type": "int... | {"nom" : "Montagny", "dpt" : "Savoie", "inscrits" : 531, "abs" : 109, "votants" : 422, "blancs" : 37, "nuls" : 8, "exp" : 377, "res" : [{"panneau" : "1", "voix" : 221}, {"panneau" : "2", "voix" : 156}]} | 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"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"dpd-dashboard": {"type": "string"}, "dpd-clientlib": {"type": "string"}}, "requir... | {"engines" : {"node" : ">= 0.10.0"}, "dependencies" : {"dpd-dashboard" : "*", "dpd-clientlib" : "*"}, "dpdInclude" : ["hello", "proxy", "dpd-clientlib", "dpd-dashboard"]} | json_instruct | {"type": "object", "properties": {"engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "dependencies": {"type": "object", "properties": {"dpd-dashboard": {"type": "string"}, "dpd-clientlib": {"type": "string"}}, "required": ["dpd-dashboard", "dpd-clientlib"]}, "dpdInclude": {... |
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": {"test": {"type": "string"}}, "required": [... | {"name" : "string_handler", "version" : "1.0.9", "description" : "Simple handlers for strings", "main" : "./src/handler.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "git+https://github.com/rapidinhas-js/string_handler.git"}, "keywords" : ["String", "Handler", "String", "Handler", "library... | 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... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1918, 5], [1973, 6], [1979, 5], [1980, 5], [1986, 7], [1988, 11], [1989, 8], [1990, 6], [1991, 9], [1992, 11], [1993, 6], [1994, 5], [1996, 5], [1997, 13], [1998, 10], [1999, 11], [2000, 5], [2001, 11], [2003, 7], [2004, 12], [2005, 17], [2006, 13], [2007, 13], [2008, 9], [2009, 17], [2010, 17], [2011, 30], [2012, 13... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-79.758288, 40.438935], [-79.744382, 40.438657], [-79.738728, 40.437629], [-79.73301, 40.434613], [-79.72684, 40.428437], [-79.724158, 40.427238], [-79.722063, 40.42721], [-79.711504, 40.430537], [-79.704739, 40.427231], ... | 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... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer1": {"type": "string"}}, "required": ["layer1"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"predicat... | {"parent" : "item/generated", "textures" : {"layer1" : "item/leather_helmet_overlay"}, "overrides" : [{"predicate" : {"custom_model_data" : 1}, "model" : "item/emerald_helmet"}, {"predicate" : {"custom_model_data" : 2}, "model" : "item/enderite_helmet"}, {"predicate" : {"custom_model_data" : 3}, "model" : "item/ruby_he... | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer1": {"type": "string"}}, "required": ["layer1"]}, "overrides": {"type": "array", "items": {"type": "object", "properties": {"predicate": {"type": "object", "properties": {"custom_model_data": {"type": "in... |
The schema below describes a JSON structure. Generate a valid example:
{"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:i... | {"id" : 101886925, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "9dc6c72c876e1f7ab9c1ae9c0a9beec7", "wof:id" : 101886925, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.37399352762969, 47.63124940343926, 1.38502466930129, 47.63828870065731... | 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": ["... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type":... | {"name" : "with-rxjs", "version" : "1.0.0", "description" : "Writing a simple bot without imperative conditional statements using Rx.js", "main" : "index.js", "scripts" : {"dev" : "nodemon index.js", "start" : "node index.js"}, "dependencies" : {"bottender" : "latest", "rx-handler" : "^1.0.1", "rxjs" : "^6.2.2"}, "devD... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "start"]}, "dependencies": {"type": "objec... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"AfterTheEnd": {"type": "array", "items": {"type": "string"}}}, "required": ["AfterTheEnd"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"AfterTheEnd" : ["TheEndOfTheWorldAsWeKnowIt", "TheGreatPoliticsMessUp", "ThePlague", "RealLife", "WorldWreckingWave", "SealedEvilInACan", "CosmicKeystone", "GaiasLament", "ZombieApocalypse", "AlienInvasion", "CrapsackWorld", "SceneryGorn", "GhostCity", "ScavengerWorld", "SchizoTech", "LostTechnology", "WeirdScience",... | json_instruct | {"type": "object", "properties": {"AfterTheEnd": {"type": "array", "items": {"type": "string"}}}, "required": ["AfterTheEnd"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"average_occupancy" : [1.425599711152997, 1.47732010740105, 1.4511998367678274, 1.4540095492012717, 1.4761161598572394, 1.4128046673270562, 1.4245974709866636, 1.446996143584851, 1.3652115424305666, 1.3384017457188442, 1.3800328817117018, 1.4559554515506303, 1.4345849231494974, 1.3985909089492903, 1.37275525516998, 1.... | json_instruct | {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "properties": {"mashape/unirest-php": {"type": "string"}, "spatie/array-to-xml": {"type": "string"}, "s... | {"name" : "dr5hn/csc-db", "description" : "Full Database of city state country available in JSON and SQL Format All Countries, States & Cities are Covered and Populated with Different Combinations & Versions.", "version" : "v0.2", "require" : {"mashape/unirest-php" : "^3.0", "spatie/array-to-xml" : "^2.10", "symfony/ya... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "properties": {"mashape/unirest-php": {"type": "string"}, "spatie/array-to-xml": {"type": "string"}, "symfony/yaml": {"type": "string"}}, "required": ["mashape/un... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "linkObj": {"type": "integer"}, "_class": {"type": "string"}, "_classVer": {"type": "string"}}, "required": ["id", "linkObj", "_class", "_classVer"], "$schema": "http://json-schema.org/draf... | {"id" : "01bbf160-7358-11e7-9b37-11274a192675", "linkObj" : 4, "_class" : "calcLinkAttr@develop-and-test", "_classVer" : ""} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "linkObj": {"type": "integer"}, "_class": {"type": "string"}, "_classVer": {"type": "string"}}, "required": ["id", "linkObj", "_class", "_classVer"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "slug": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "quality_notes": {"type": "string"... | {"id" : 3271, "category" : "PyCon APAC 2014", "slug" : "how-to-integrate-python-into-a-scala-stack-to-bui", "title" : "How to integrate Python into a Scala stack to build realtime predictive models", "summary" : "", "description" : "Fliptop's primary business used to be contact record linkage. We\nbuilt-out some substa... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "category": {"type": "string"}, "slug": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "quality_notes": {"type": "string"}, "language": {"type": "string"}, "copyright_text": {"type": "string"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "... | {"stationId" : 1131126, "stationGroupId" : 1131126, "name" : "\u6771\u5c71\u68a8", "lineId" : 11311, "zipCode" : "405-0011", "pref" : "\u5c71\u68a8\u770c", "city" : "\u5c71\u68a8\u5e02", "town" : "\u4e09\u30b1\u6240", "longitude" : 138.703026, "latitude" : 35.694313, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"typ... | {"expireTime" : 9007200872727670000, "key" : "e3d0cfe7f37f227777e0ad89860635a3", "val" : {"name" : "IMAGE_PROCESSING", "inputPaths" : ["/Users/barb/Documents/GitHub/docs-website/src/content/docs/new-relic-one/use-new-relic-one/core-concepts/images/lookout-legend.png"], "outputDir" : "/Users/barb/Documents/GitHub/docs-w... | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"name": {"type": "string"}, "inputPaths": {"type": "array", "items": {"type": "string"}}, "outputDir": {"type": "string"}, "args": {"type": "object", "properties": {"isLazy": {"type":... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d607-19", "text" : "<hJA i:k\nWf iff\nUN\nyy^"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"null2num": {"type": "string"}, "null2str": {"type": "string"}, "null2obj": {"type": "string"}, "null2arr": {"type": "string"}, "bool2null": {"type": "string"}, "bool2num": {"type": "string"}, "num2null": {"type": "s... | {"null2num" : "33", "null2str" : "bananas", "null2obj" : "{\"x\": 1}", "null2arr" : "[3, 2]", "bool2null" : "null", "bool2num" : "52", "num2null" : "null", "num2bool" : "true", "num2arr" : "[1]", "str2bool" : "false"} | json_instruct | {"type": "object", "properties": {"null2num": {"type": "string"}, "null2str": {"type": "string"}, "null2obj": {"type": "string"}, "null2arr": {"type": "string"}, "bool2null": {"type": "string"}, "bool2num": {"type": "string"}, "num2null": {"type": "string"}, "num2bool": {"type": "string"}, "num2arr": {"type": "string"}... |
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" : "supposal", "definition" : "The act of supposing; also, that which is supposed; supposition; opinion. Shak. Interest, with a Jew, never proceeds but upon supposal, at least, of a firm and sufficient bottom. South."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"typ... | {"name" : "qewd-server-rpi", "version" : "2.48.0", "description" : "Dockerised QEWD Server for Raspberry Pi", "author" : "Rob Tweed <rtweed@mgateway.com>", "main" : "qewd.js", "scripts" : {"start" : "NODE_PATH=/opt/qewd/mapped/modules node qewd.js"}, "dependencies" : {"qewd" : "", "qewd-monitor" : "", "qewd-transform-j... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "... | {"code" : 1117040026, "parent" : 1117040, "name" : "SUKA MAKMUR TIMUR", "latitude" : null, "longitude" : null, "postal" : [24591, 24580], "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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/content/[topic]/[page].js": {"type": "boolean"}}, "required": ["static/development/pages/content/[topic]/[page].js"]}}, "requir... | {"h" : "b1a85d631f8e656c2f66", "c" : {"static/development/pages/content/[topic]/[page].js" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"static/development/pages/content/[topic]/[page].js": {"type": "boolean"}}, "required": ["static/development/pages/content/[topic]/[page].js"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"tempFilesRootPath": {"type": "string"}, "sourcesRootPath": {"type": "string"}, "targetRootPath": {"type": "string"}, "publicRootPath": {"type": "string"}}, "required": ["tempFilesRootPath", "sourcesRootPath", "targe... | {"tempFilesRootPath" : "temp/grunt-tmp", "sourcesRootPath" : "../resources/assets", "targetRootPath" : "../public/static", "publicRootPath" : "../public"} | json_instruct | {"type": "object", "properties": {"tempFilesRootPath": {"type": "string"}, "sourcesRootPath": {"type": "string"}, "targetRootPath": {"type": "string"}, "publicRootPath": {"type": "string"}}, "required": ["tempFilesRootPath", "sourcesRootPath", "targetRootPath", "publicRootPath"], "$schema": "http://json-schema.org/draf... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1913, 5], [1915, 7], [1917, 5], [1918, 11], [1919, 8], [1920, 8], [1921, 6], [1922, 7], [1923, 5], [1924, 5], [1926, 6], [1927, 11], [1928, 16], [1929, 15], [1931, 7], [1932, 5], [1934, 7], [1935, 7], [1936, 5], [1937, 7], [1938, 8], [1939, 7], [1940, 7], [1942, 10], [1943, 8], [1944, 9], [1945, 6], [1947, 9], [1949,... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"shared_teams": {"type": "string"}, "shared_conversionservice": {"type": "string"}, "shared_office365users": {"type": "string"}}, "required": ["shared_teams", "shared_conversionservice", "shared_office365users"], "$schema": ... | {"shared_teams" : "1336b8d9-e13c-4170-a651-e3fe3595b53d", "shared_conversionservice" : "b180471b-8541-44f8-a09f-3fa568026fad", "shared_office365users" : "57cf2a54-9c12-4154-950a-342c69ccb38c"} | json_instruct | {"type": "object", "properties": {"shared_teams": {"type": "string"}, "shared_conversionservice": {"type": "string"}, "shared_office365users": {"type": "string"}}, "required": ["shared_teams", "shared_conversionservice", "shared_office365users"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "... | {"name" : "Ahmed Draya University of Adrar", "alt_name" : "Universit\u00e9 Ahmed Dra\u00efa d'Adrar", "country" : "Algeria", "state" : null, "address" : {"street" : "Rue 11 d\u00e9cembre", "city" : "Adrar", "province" : null, "postal_code" : "01000"}, "contact" : {"telephone" : "+213(49) 36-18-56", "website" : "http://... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}},... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : ["{http://www.nist.gov/xsdNS}hdefine-including-these_th", "{http://www.nist.gov/xsdNS}isuite_a-to.to-available_t", "{http://www.nist.gov/xsdDefaultNS}_the_provides.the.for-used", "{http://www.nist.gov/xsdNS}jat_such_using_key.ability", "{http://www.nist.gov/xsdDefaultNS}aavailable_these_the.to-an", "{http://... | json_instruct | {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "nodeVersion": {"type": "string"}, "rpcPort": {"type": "integer"}}, "required": ["name", "nodeVersion", "rpcPort"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lnd-bitcoin-proxy", "nodeVersion" : "1.1.2", "rpcPort" : 8078} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "nodeVersion": {"type": "string"}, "rpcPort": {"type": "integer"}}, "required": ["name", "nodeVersion", "rpcPort"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "obj... | {"type" : "minecraft:crafting_shapeless", "group" : "wrapping_paper", "ingredients" : [{"item" : "contact:wrapping_paper"}, {"item" : "minecraft:ender_pearl"}], "result" : {"item" : "contact:ender_wrapping_paper"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "result": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "re... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"features": {"type":... | {"$schema" : "http://json-schema.org/draft-04/schema#", "title" : "Get license ticket", "type" : "object", "required" : ["features"], "properties" : {"features" : {"type" : "array", "description" : "The list of features to activate with this ticket.", "items" : {"type" : "object", "required" : ["name", "qty"], "propert... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "required": {"type": "array", "items": {"type": "string"}}, "properties": {"type": "object", "properties": {"features": {"type": "object", "properties": {"type": {"type": "string"}, "description": {... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"darwin": {"type": "string"}, "freebsd": {"type": "string"}, "linux": {"type": "string"}, "openbsd": {"type": "string"}, "win32": {"type": "string"}}, "required": ["darwin", "freebsd", "linux", "openbsd", "win... | {"darwin" : "(macos|osx|darwin)", "freebsd" : "(freebsd)", "linux" : "(linux)", "openbsd" : "(openbsd)", "win32" : "(windows)"} | json_instruct | {"type": "object", "properties": {"darwin": {"type": "string"}, "freebsd": {"type": "string"}, "linux": {"type": "string"}, "openbsd": {"type": "string"}, "win32": {"type": "string"}}, "required": ["darwin", "freebsd", "linux", "openbsd", "win32"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"gender": {"type": "string"}, "species": {"type": "string"}, "birthday": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"personality": {"type": "string"}, "clo... | {"gender" : "male", "species" : "mouse", "birthday" : "12-15", "games" : {"nl" : {"personality" : "smug", "clothes" : "tuxedo", "song" : "K.K. Soul", "phrase" : "fromage", "skill" : "Cramming for tests", "goal" : "Actor", "fear" : "Bug Mask", "quote" : "Meeting is just the start of us saying good-bye.", "siblings" : "E... | json_instruct | {"type": "object", "properties": {"gender": {"type": "string"}, "species": {"type": "string"}, "birthday": {"type": "string"}, "games": {"type": "object", "properties": {"nl": {"type": "object", "properties": {"personality": {"type": "string"}, "clothes": {"type": "string"}, "song": {"type": "string"}, "phrase": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJeni... | [{"namaKab" : "MUARO JAMBI", "originalFilename" : "RESLI C.M.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 33444, "noUrut" : 1, "nama" : "RESLI CAHAYA MAULIKA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "MUARO JAMBI", "originalFilename" : "MARWAN.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 12153, "n... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.