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": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "XC8", "description" : "A compiler for 8-bit microchips.", "url" : "https://www.microchip.com/mplab/compilers"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type":... | {"votes" : {"diff" : 2833, "dem" : 748, "tot" : 4483, "gop" : 3581}, "for" : "OK/Pushmataha County/40127", "pct" : {"dem" : 16.69, "per_point_diff" : 63.19, "gop" : 79.88}} | json_instruct | {"type": "object", "properties": {"votes": {"type": "object", "properties": {"diff": {"type": "integer"}, "dem": {"type": "integer"}, "tot": {"type": "integer"}, "gop": {"type": "integer"}}, "required": ["diff", "dem", "tot", "gop"]}, "for": {"type": "string"}, "pct": {"type": "object", "properties": {"dem": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["tao-scss-grid"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "idPlugin": {"type": "string"}, "scope": {"type": "string"}, "idModel": {"type": "string"}, "value": {"type": "string"}, "access": {"type": "string"}, "dateLastUpdated": {"ty... | [{"id" : "5fff27dbc5f98c461fe2798d", "idPlugin" : "597cbecff4fe5f1d91d4b614", "scope" : "card", "idModel" : "5fef089bd4f0fe6a707b54d8", "value" : "{\"estimate\":\"2\"}", "access" : "shared", "dateLastUpdated" : "2021-01-13T17:03:23.414Z"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "idPlugin": {"type": "string"}, "scope": {"type": "string"}, "idModel": {"type": "string"}, "value": {"type": "string"}, "access": {"type": "string"}, "dateLastUpdated": {"type": "string"}}, "required": ["id", "idPlugin", "scope", "i... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"DSKE": {"type": "number"}, "KNX": {"type": "number"}, "CGIP": {"type": "number"}, "ULH": {"type": "number"}, "ARCB": {"type": "number"}, "WERN": {"type": "number"}, "RRTS": {"type": "number"}, "PTSI": {"type"... | {"DSKE" : 0.9999999999999999, "KNX" : 0.3748078081804719, "CGIP" : 0.33344185523726927, "ULH" : 0.3167076820679127, "ARCB" : 0.3059288047670141, "WERN" : 0.29862117253449244, "RRTS" : 0.2921487992215628, "PTSI" : 0.28756796459473355, "USAK" : 0.282356176146169, "YELL" : 0.28195815355301745, "SAIA" : 0.2801701010800188,... | json_instruct | {"type": "object", "properties": {"DSKE": {"type": "number"}, "KNX": {"type": "number"}, "CGIP": {"type": "number"}, "ULH": {"type": "number"}, "ARCB": {"type": "number"}, "WERN": {"type": "number"}, "RRTS": {"type": "number"}, "PTSI": {"type": "number"}, "USAK": {"type": "number"}, "YELL": {"type": "number"}, "SAIA": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"[python]": {"type": "object", "properties": {"editor.rulers": {"type": "array", "items": {"type": "integer"}}}, "required": ["editor.rulers"]}, "python.pythonPath": {"type": "string"}}, "required": ["[python]", "python.pyth... | {"[python]" : {"editor.rulers" : [79]}, "python.pythonPath" : "venv/bin/python"} | json_instruct | {"type": "object", "properties": {"[python]": {"type": "object", "properties": {"editor.rulers": {"type": "array", "items": {"type": "integer"}}}, "required": ["editor.rulers"]}, "python.pythonPath": {"type": "string"}}, "required": ["[python]", "python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "esy": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "scripts": {"type": "object", "properties": {"format": {"type":... | {"name" : "@reason-native-web/morph_websocket", "version" : "0.6.2", "esy" : {"build" : "dune build -p morph_websocket"}, "scripts" : {"format" : "dune build @fmt --auto-promote"}, "dependencies" : {"@opam/dune" : ">=1.11.0", "@opam/digestif" : "^0.9.0", "@opam/lwt" : ">=4.0.0", "@opam/logs" : "*", "@opam/fmt" : "*", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "esy": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "scripts": {"type": "object", "properties": {"format": {"type": "string"}}, "required": ["format"]}, "dependencies": {"type": "objec... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "base": {"type": "string"}, "idInjection": {"type": "boolean"}, "options": {"type": "object", "properties": {"validateUpsert": {"type": "boolean"}}, "required": ["validateUpsert"]}, "prope... | {"name" : "User", "base" : "Entity", "idInjection" : true, "options" : {"validateUpsert" : true}, "properties" : {"loginName" : {"type" : "String", "required" : false, "length" : 45, "precision" : null, "scale" : null, "_selectable" : true}, "realName" : {"type" : "String", "required" : false, "length" : 45, "precision... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "base": {"type": "string"}, "idInjection": {"type": "boolean"}, "options": {"type": "object", "properties": {"validateUpsert": {"type": "boolean"}}, "required": ["validateUpsert"]}, "properties": {"type": "object", "properties": {"loginName": {"type": "objec... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"productDescription": {"type": "string"}, "section": {"type": "string"}, "priority": {"type": "string"}, "arch": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}, "recommends": {"type": "array", "it... | {"productDescription" : "Just a test.", "section" : "devel", "priority" : "optional", "arch" : "i386", "depends" : ["libnss3", "libxtst6", "dbus", "dbus"], "recommends" : ["pulseaudio | libasound2", "bzip2", "bzip2"], "suggests" : ["lsb-release", "gvfs", "gvfs"], "enhances" : ["libc6", "libc6"], "preDepends" : ["footes... | json_instruct | {"type": "object", "properties": {"productDescription": {"type": "string"}, "section": {"type": "string"}, "priority": {"type": "string"}, "arch": {"type": "string"}, "depends": {"type": "array", "items": {"type": "string"}}, "recommends": {"type": "array", "items": {"type": "string"}}, "suggests": {"type": "array", "i... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/czltd/Desktop/Siva_Learning/TestFramework/TestFramework/TestFramework/Service.swift": {"t... | {"" : {"swift-dependencies" : "/Users/czltd/Desktop/Siva_Learning/TestFramework/checkFramework/DerivedData/checkFramework/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/TestFramework.build/Objects-normal/x86_64/TestFramework-master.swiftdeps"}, "/Users/czltd/Desktop/Siva_Learning/TestFramework/TestFramewo... | json_instruct | {"type": "object", "properties": {"": {"type": "object", "properties": {"swift-dependencies": {"type": "string"}}, "required": ["swift-dependencies"]}, "/Users/czltd/Desktop/Siva_Learning/TestFramework/TestFramework/TestFramework/Service.swift": {"type": "object", "properties": {"dependencies": {"type": "string"}, "dia... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "descript... | {"title" : "\u3010MMD\u3011\u5f31\u97f3\u30cf\u30af Marine Bloomin \u30ec\u30fc\u30b9\u30c9\u30ec\u30b9 \u56fa\u5b9a\u30ab\u30e1\u30e9Ver", "author" : "\u226aMikuLove\u226b", "description" : "\u4f8b\u306e\u3054\u3068\u304f\u56fa\u5b9a\u30ab\u30e1\u30e9", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/publ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[176, 42, 2558, 145, 21, 764, -2489, -10972, 26, -99, 37, -259, -967, -115, -119, 1881, -192, 2352, 1576, 27, 103, -160, 5916, -118, 19817, -48, 127, -91, 215, 322, -111, 88, 136, -112, 112, 5087, 23, 78, 11, -250, 6040, -16035, -112, 32, -2410, 105, 63, -89, 32, -7974, -26, 8268, -353, 3197, 48, -590, -180, -129, -35... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200894083740000, "key" : "0462590307cd11ec7184bff168989bf9{}", "val" : "data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='400'%20height='200'%20viewBox='0%200%20400%20200'%20preserveAspectRatio='none'%3e%3cpath%20d='M0%20100v100h129l2-5%204-16a1370%201370%200%20009-33c5-17%205-... | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"options": {"type": "array", "items": {"type": "object", "properties": {"option-heading": {"type": "string"}, "option-anchor": {"type": "string"}, "option-description": {"type": "string"}, "title": {"type": "s... | {"options" : [{"option-heading" : "Linked category header", "option-anchor" : "default", "option-description" : "", "title" : "Category title", "url" : "#", "text-start" : "<div class='category-header__title'>", "text-end" : "</div>"}, {"option-heading" : "Linked category heading - deprecated", "option-anchor" : "defau... | json_instruct | {"type": "object", "properties": {"options": {"type": "array", "items": {"type": "object", "properties": {"option-heading": {"type": "string"}, "option-anchor": {"type": "string"}, "option-description": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "text-start": {"type": "string"}, "text-e... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "Title": {"type": "string"}, "text": {"type": "strin... | {"listing_id" : 2390109, "id" : 22208895, "date" : "2014-11-01", "reviewer_id" : 4358294, "reviewer_name" : "1.1.4.2. Dispositions communes (rajout\u00e9) : D\u00e9placements \u00e0 l\u2018int\u00e9rieur de la garnison d\u2019affectation", "Title" : "1.1.4.2.1. Principes sur frais de transports (rajout\u00e9)", "text" ... | json_instruct | {"type": "object", "properties": {"listing_id": {"type": "integer"}, "id": {"type": "integer"}, "date": {"type": "string"}, "reviewer_id": {"type": "integer"}, "reviewer_name": {"type": "string"}, "Title": {"type": "string"}, "text": {"type": "string"}, "host_id": {"type": "integer"}, "listing_latitude": {"type": "numb... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}... | {"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[141.375, 42.083333333333336], [141.375, 42.166666666666664], [141.5, 42.166666666666664], [141.5, 42.083333333333336], [141.375, 42.083333333333336]]]}, "properties" : {"code" : 634113, "url" : "http://madefor.github.io/0410/api/v1/634113.geojson... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"nbStatement": {"type": "integer"}, "executionTime": {"type": "integer"}, "date": {"type": "string"}, "nb_methods": {"type": "integer"}, "nb_classes": {"type": "integer"}, "nbAngelicValue": {"type": "integer"}}, "req... | {"nbStatement" : 3, "executionTime" : 36112, "date" : "Mon Jul 29 17:19:02 EDT 2019", "nb_methods" : 1954, "nb_classes" : 278, "nbAngelicValue" : 0} | json_instruct | {"type": "object", "properties": {"nbStatement": {"type": "integer"}, "executionTime": {"type": "integer"}, "date": {"type": "string"}, "nb_methods": {"type": "integer"}, "nb_classes": {"type": "integer"}, "nbAngelicValue": {"type": "integer"}}, "required": ["nbStatement", "executionTime", "date", "nb_methods", "nb_cla... |
The schema below describes a JSON structure. Generate a valid example:
{"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"... | [{"postal_code" : "32693", "place_name" : "Pie de Casa (El Granjero)", "place_type" : "Fraccionamiento", "county" : "Ju\u00e1rez", "state" : "Chihuahua", "city" : "Ju\u00e1rez"}] | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type... | {"userId" : 35259, "cartId" : "1bee3e31-c901-4bf8-ac25-ea1248cb13d0", "preferredProducts" : [902, 1219, 1287, 4717], "productReviews" : [{"productId" : 1734, "reviewText" : "My tyrannosaurus rex loves to play with it.", "reviewDate" : "2020-03-09T11:57:49.8514101+02:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "... | {"ast" : null, "code" : "export { default } from './Button';\nexport { default as buttonClasses } from './buttonClasses';\nexport * from './buttonClasses';", "map" : null, "metadata" : {}, "sourceType" : "module"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": ... | {"courseCode" : "BAA6003A", "courseCredit" : "4", "description" : "This module is designed to prepare doctoral students with the necessary knowledge and skills to complete their dissertations. Methodological and econometric issues surrounding topics such as earnings management and stock market anomalies would be covere... | json_instruct | {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "string"}}}, "required": ["and"]}, "title": {"type": "strin... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "... | {"name" : "adriangus/video-maker", "description" : "Create custom videos using browser", "authors" : [{"name" : "Adrian Gusberti", "email" : "adrian.m.gusberti@gmail.com"}], "require" : {"guzzlehttp/guzzle" : "^7.0", "eloquent/enumeration" : "^6.0", "slim/slim" : "^4.9", "shotstack/shotstack-sdk-php" : "^0.1.5", "benli... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"guzzlehttp/guz... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userBarcode": {"type": "string"}, "proxyUserBarcode": {"type": "string"}, "itemBarcode": {"type": "string"}, "servicePointId": {"type": "string"}}, "required": ["userBarcode", "proxyUserBarcode", "itemBarcode", "s... | {"userBarcode" : "466983136459401", "proxyUserBarcode" : "693750137582350", "itemBarcode" : "2887532577331", "servicePointId" : "3260a6f0-0b53-4d9c-ad74-2dba3830d69f"} | json_instruct | {"type": "object", "properties": {"userBarcode": {"type": "string"}, "proxyUserBarcode": {"type": "string"}, "itemBarcode": {"type": "string"}, "servicePointId": {"type": "string"}}, "required": ["userBarcode", "proxyUserBarcode", "itemBarcode", "servicePointId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ID": {"type": "string"}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "bug_id": {"type": "string"}, "project": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}}, "requi... | {"ID" : "Patch33", "tool" : "jKali", "correctness" : "Incorrect", "bug_id" : "28", "project" : "Math", "target" : ["org/apache/commons/math3/optimization/linear/SimplexSolver.java:144"]} | json_instruct | {"type": "object", "properties": {"ID": {"type": "string"}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "bug_id": {"type": "string"}, "project": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}}, "required": ["ID", "tool", "correctness", "bug_id", "project", "target"], "$s... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "ey... | {"_id" : "55ee5e44fe270c13e408376e", "index" : 292, "guid" : "cd85f7f7-5a72-42a7-b54f-c41307e3cc30", "isActive" : false, "balance" : "$35,090.16", "picture" : "http://placehold.it/32x32", "age" : 35, "eyeColor" : "brown", "name" : "Martin Albert", "gender" : "male", "company" : "POOCHIES", "email" : "martinalbert@pooch... | 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":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}}, "required": ["wall"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "block/template_wall_post", "textures" : {"wall" : "artisanat:block/cyan_bricks"}} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"wall": {"type": "string"}}, "required": ["wall"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["ng-admin"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"escarole_and_endive": {"type": "object", "properties": {"statisticcat_desc": {"type": "array", "items": {}}}, "required": ["statisticcat_desc"]}}, "required": ["escarole_and_endive"], "$schema": "http://json-schema.org/draft-0... | {"escarole_and_endive" : {"statisticcat_desc" : []}} | json_instruct | {"type": "object", "properties": {"escarole_and_endive": {"type": "object", "properties": {"statisticcat_desc": {"type": "array", "items": {}}}, "required": ["statisticcat_desc"]}}, "required": ["escarole_and_endive"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, ... | {"directions" : ["Preheat oven to 325 degrees F (165 degrees C). Grease a 9x13-inch baking dish.", "Mix the corn flake crumbs, Parmesan cheese, and 1/4 cup melted butter in a large bowl, then spread about 2/3 of the crumb mixture into the bottom of the prepared baking dish. Layer half the chicken breast strips over the... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"needsPopulating": {"type": "boolean"}, "repos": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["needsPopul... | {"needsPopulating" : true, "repos" : [{"name" : "readiumJsViewer", "path" : ".."}, {"name" : "readiumJs", "path" : "../readium-js"}, {"name" : "readiumSharedJs", "path" : "../readium-js/readium-shared-js"}, {"name" : "readiumCfiJs", "path" : "../readium-js/readium-shared-js/readium-cfi-js"}]} | json_instruct | {"type": "object", "properties": {"needsPopulating": {"type": "boolean"}, "repos": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "path"]}}}, "required": ["needsPopulating", "repos"], "$schema": "http://json-schema.org/draft-07/... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"},... | {"\u5de5\u5ee0\u540d\u7a31" : "\u6b63\u5de8\u4f01\u696d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "T6400647", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u9ad8\u96c4\u5e02\u5f4c\u9640\u5340\u5c71\u58e9\u70df\u8def11\u5df712\u865f", "\u5de5\u5ee0\u5e02... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "object", "pr... | {"dbId" : "2142712", "name" : "Synthesis of 12-eicosatetraenoic acid derivatives", "children" : [], "size" : 1, "symbols" : ["ALOX12B", "GPX1", "GPX4", "GPX2", "ALOX12", "ALOX15"], "gallusOrth" : {"sharedSymbols" : ["GPX1", "GPX4", "GPX2"], "count" : 3, "type" : "Part"}} | json_instruct | {"type": "object", "properties": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "object", "properties": {"sharedSymbols": {"type": "array", "items": {"type... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_rig... | {"version" : 1.0, "people" : [{"face_keypoints" : [], "pose_keypoints" : [79.6220472440945, 46.5454545454545, 0.918583452701569, 78.1102362204724, 89.1345454545455, 0.762707844376564, 45.1023622047244, 87.04, 0.645843476057053, 41.5748031496063, 143.825454545455, 0.593727134168148, 45.1023622047244, 194.792727272727, 0... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"face_keypoints": {"type": "array", "items": {}}, "pose_keypoints": {"type": "array", "items": {"type": "number"}}, "hand_right_keypoints": {"type": "array", "items": {}}, "hand_left_k... |
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": {"dev": {"type": "string"}}, "required": ["dev"]}, ... | {"name" : "gitcoin_bounty_bot", "version" : "1.0.0", "description" : "(IN ACTIVE DEVELOPMENT) This bot will use the Gitcoin API to post new bounties into different D_D channels.", "main" : "index.js", "scripts" : {"dev" : "nodemon index.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/danialhasan/G... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "repository": {"type": "object", "properties": {"type": {"type": "str... |
Create a JSON structure that matches this schema definition:
{"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"}, "seve... | {"schema_version" : "1.2.0", "id" : "GHSA-vjjh-7673-9x6q", "modified" : "2022-05-02T00:00:57Z", "published" : "2022-05-02T00:00:56Z", "aliases" : ["CVE-2008-3521"], "details" : "Race condition in the jas_stream_tmpfile function in libjasper/base/jas_stream.c in JasPer 1.900.1 allows local users to cause a denial of ser... | 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... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Resources": {"type": "object", "properties": {"MyDB": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AllocatedStorage": {"type": "string"}, "DBInstan... | {"Resources" : {"MyDB" : {"Type" : "AWS::RDS::DBInstance", "Properties" : {"AllocatedStorage" : "100", "DBInstanceClass" : "db.m1.small", "Engine" : "MySQL", "EngineVersion" : "5.6.13", "Iops" : "1000", "PubliclyAccessible" : "false", "StorageEncrypted" : false}}}} | json_instruct | {"type": "object", "properties": {"Resources": {"type": "object", "properties": {"MyDB": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AllocatedStorage": {"type": "string"}, "DBInstanceClass": {"type": "string"}, "Engine": {"type": "string"}, "EngineVersi... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integ... | {"publisher_name" : "Frontiers Media S.A.", "journals" : 32, "scihub" : 10407, "crossref_open_access" : 62989, "crossref_active" : 63994, "crossref" : 64101, "coverage" : 0.16235316, "publisher_slug" : "frontiers-media-s-a", "access_logs" : {"downloads" : 0.1123, "visitors" : 0.10659, "countries" : 0.09451, "days" : 0.... | json_instruct | {"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integer"}, "coverage": {"type": "number"}, "publisher_slug": {"type": "string... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "int... | {"nom" : "Rimbach-zell", "circ" : "2\u00e8me circonscription", "dpt" : "Haut-Rhin", "inscrits" : 174, "abs" : 94, "votants" : 80, "blancs" : 10, "nuls" : 0, "exp" : 70, "res" : [{"nuance" : "LR", "nom" : "M. Jacques CATTIN", "voix" : 36}, {"nuance" : "REM", "nom" : "M. Hubert OTT", "voix" : 34}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"mockedFieldPost": {"type": "string"}}, "required": ["mockedFieldPost"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"mockedFieldPost" : "mockedValuePost"} | json_instruct | {"type": "object", "properties": {"mockedFieldPost": {"type": "string"}}, "required": ["mockedFieldPost"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"typ... | {"id" : "toy_stand_dazzling_delights", "originalId" : 373105, "rarity" : 3, "name" : "Spielzeugstand \u2013 \u201eBunte Spielzeugwelt\u201c", "description" : "Ein Stand mit einer Vielzahl interessanter Spielzeuge, unter denen die Drachen am beliebtesten sind.\\nMan erz\u00e4hlt sich, dass die Millelithen einst Drachen ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "originalId": {"type": "integer"}, "rarity": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "load": {"type": "integer"}, "energy": {"type": "integer"}, "exp": {"type": "integer"}, "category": {"type": "array", "items": {"ty... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "it... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-82.968511, 42.508837], [-82.948145, 42.509327], [-82.947872, 42.50184], [-82.968236, 42.501514], [-82.968511, 42.508837]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 31669}}]} | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "avatar": {"type": "string"}, "status": {"type": "string"}, "mood": {"type": "string"}}, "required": ["id", "name", "ava... | {"data" : {"id" : "5725a6802d10e277a0f35724", "name" : "John Doe", "avatar" : "assets/images/avatars/profile.jpg", "status" : "online", "mood" : "it's a status....not your diary..."}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "avatar": {"type": "string"}, "status": {"type": "string"}, "mood": {"type": "string"}}, "required": ["id", "name", "avatar", "status", "mood"]}}, "required": ["data"], "$schema": "http://js... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"merged" : "/Users/JWeb56/AndroidStudioProjects/PopularMovies/app/build/intermediates/res/merged/release/mipmap-mdpi-v4/ic_launcher.png", "source" : "/Users/JWeb56/AndroidStudioProjects/PopularMovies/app/src/main/res/mipmap-mdpi/ic_launcher.png"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"css/flag-icon.css": {"type": "string"}, "css/flag-icon.min.css": {"type": "string"}}, "required": ["css/flag-icon.css", "css/flag-icon.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"css/flag-icon.css" : "sha256-O12g4R902yuzg+vGwa3e6RPaAtDI6nFWBIoR6u+Zt6Q=", "css/flag-icon.min.css" : "sha256-DnlG+JMhWY2X8j68q6OnnGSi1HMJ380QyAUGhA3U++8="} | json_instruct | {"type": "object", "properties": {"css/flag-icon.css": {"type": "string"}, "css/flag-icon.min.css": {"type": "string"}}, "required": ["css/flag-icon.css", "css/flag-icon.min.css"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cgi": {"type": "str... | {"name" : "easy-cgi", "version" : "1.0.5", "description" : "Easily create a CGI server", "main" : "index.js", "dependencies" : {"body-parser" : "^1.18.2", "cgi" : "^0.3.1", "compression" : "^1.7.1", "connect-multiparty" : "^2.1.0", "cors" : "^2.8.4", "express" : "^4.16.2", "ipware" : "^1.0.0", "serve-static" : "^1.13.1... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "cgi": {"type": "string"}, "compression": {"type": "string"}, "connect-multipar... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items":... | {"datestamp" : "Wed Apr 14 21:22:45 EDT 2021", "title" : "Replication data for: Housing Vouchers and the Price of Rental Housing", "creator" : "Michael D. Eriksen", "identifier" : ["114569", "114569", "https://doi.org/10.3886/E114569V1"], "description" : "We estimate the effect of increasing the supply of housing vouch... | json_instruct | {"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 6.0, 1.0, 3.0, 2.0, 1.0, 4.0, 0.0, 0.0, 3.0, 4.0, 0.0, 1.0, 0.0, 2.0, 1.0] | json_instruct | {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"vue2-leaflet.js": {"type": "string"}, "vue2-leaflet.min.js": {"type": "string"}}, "required": ["vue2-leaflet.js", "vue2-leaflet.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vue2-leaflet.js" : "sha512-zCczav//93wgNP5lbgps4iyWQ5nbFTCtZ6dMrndnFf2DdNS5dIecGVuLm/Gv9xvNYO168zkqQMBYCP67A9kCmw==", "vue2-leaflet.min.js" : "sha512-PFo4yAw95URhDldaihNdE//6+G/wtkt9NpTTWy3JMhj9HGkrYF8Euwj8KmZISu7NibgK1WBGZh5h4ABZSOmnjQ=="} | json_instruct | {"type": "object", "properties": {"vue2-leaflet.js": {"type": "string"}, "vue2-leaflet.min.js": {"type": "string"}}, "required": ["vue2-leaflet.js", "vue2-leaflet.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"offsets": {"type": "array", "items": {}}, "loop": {"type": "boolean"}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"t... | {"animations" : [{"offsets" : [], "loop" : false, "anim" : "singLEFT", "fps" : 24, "name" : "ness leftangry", "indices" : []}, {"offsets" : [], "loop" : false, "anim" : "singDOWN", "fps" : 24, "name" : "ness downangry", "indices" : []}, {"offsets" : [], "loop" : false, "anim" : "singUP", "fps" : 24, "name" : "ness upan... | json_instruct | {"type": "object", "properties": {"animations": {"type": "array", "items": {"type": "object", "properties": {"offsets": {"type": "array", "items": {}}, "loop": {"type": "boolean"}, "anim": {"type": "string"}, "fps": {"type": "integer"}, "name": {"type": "string"}, "indices": {"type": "array", "items": {}}}, "required":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}},... | {"short_name" : "Me:al", "name" : "A nice LGBT friendly restaurants list that you can vote them based on their friendliness", "icons" : [{"src" : "./img/icons/icon-1x.png", "type" : "image/png", "sizes" : "48x48"}, {"src" : "./img/icons/icon-2x.png", "type" : "image/png", "sizes" : "96x96"}, {"src" : "./img/icons/icon-... | json_instruct | {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}}, "required": ["src", "type", "sizes"]}}, "start_url": {"type": "string... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"plugins" : ["react-native"], "extends" : ["plugin:react-native/all"]} | json_instruct | {"type": "object", "properties": {"plugins": {"type": "array", "items": {"type": "string"}}, "extends": {"type": "array", "items": {"type": "string"}}}, "required": ["plugins", "extends"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "ite... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [212.916, 124.964, 1, 212.312, 146.839, 1, 196.257, 148.25, 1, 175.088, 172.805, 1, 197.522, 190.688, 1, 231.811, 146.382, 1, 255.336, 167.202, 1, 235.596, 168.124, 1, 199.072, 201.279, 1, 185.129, 245.725, 1, 176.21, 293.279, 1, 223.391, 199.783, 1, 246.65, 249.892,... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "stats": {"type": "object", "properties": {"vitality": {"type": "number"}, "weight": {"type": "number"}, "strength": {"type": "number"}}, "r... | {"name" : "Goblin left arm", "tags" : ["arm"], "stats" : {"vitality" : 25.0, "weight" : 10.0, "strength" : 15.0}, "vital" : false, "enabled" : true, "layer" : 2, "hitbox" : [[-7.0, -5.0], [-7.0, 55.0], [7.0, 55.0], [7.0, -5.0]], "attachments" : [{"part" : null, "offset" : [0.0, 55.0], "rotation" : 0.0, "default" : "res... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "stats": {"type": "object", "properties": {"vitality": {"type": "number"}, "weight": {"type": "number"}, "strength": {"type": "number"}}, "required": ["vitality", "weight", "strength"]}, "vital": {"type... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:... | {"type" : "Feature", "id" : "node/4975955237", "properties" : {"addr:city" : "Meersburg", "addr:country" : "DE", "addr:housenumber" : "27", "addr:postcode" : "88709", "addr:street" : "Lehrenweg", "level" : "0", "name" : "Fohrenberghof", "operator" : "Lucie Wurst", "phone" : "+49 7532 6011", "shop" : "farm", "website" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"addr:city": {"type": "string"}, "addr:country": {"type": "string"}, "addr:housenumber": {"type": "string"}, "addr:postcode": {"type": "string"}, "addr:street": {"type": "string"}, "le... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "ORAN", "frequency" : 0, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "npm-run-all": {"typ... | {"name" : "litebyte-demo-1", "version" : "1.0.0", "private" : true, "homepage" : "http://litebyte.us", "devDependencies" : {"node-sass" : "^4.5.0", "npm-run-all" : "^4.0.1", "react-scripts" : "0.9.0"}, "dependencies" : {"history" : "^2.1.2", "immutable" : "^3.8.1", "intl" : "^1.2.5", "intl-locales-supported" : "^1.0.0"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"node-sass": {"type": "string"}, "npm-run-all": {"type": "string"}, "react-scripts": {"type": "string"}}, "req... |
Construct a JSON document that adheres to this schema specification:
{"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" : "Meudon", "dpt" : "Hauts-de-Seine", "inscrits" : 31280, "abs" : 5715, "votants" : 25565, "blancs" : 310, "nuls" : 95, "exp" : 25160, "res" : [{"panneau" : "3", "voix" : 8239}, {"panneau" : "11", "voix" : 7239}, {"panneau" : "9", "voix" : 4225}, {"panneau" : "2", "voix" : 2003}, {"panneau" : "4", "voix" : 1977}... | 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": {"version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}}, "required": ["identifier"]}, "url": {"type": "strin... | {"version" : "4.9.3", "homepage" : "https://www.archimatetool.com", "description" : "The Open Source modelling toolkit for creating ArchiMate models and sketches", "license" : {"identifier" : "MIT"}, "url" : "https://www.archimatetool.com/downloads/archi/4.9.3/Archi-4.9.3-SUMSSHA1", "hash" : "07aad93b8a18cb984af4e2b888... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"identifier": {"type": "string"}}, "required": ["identifier"]}, "url": {"type": "string"}, "hash": {"type": "string"}, "depends": {"type": "str... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"recipient": {"type": "object", "properties": {"regime": {"type": "string"}, "identifier": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}, "... | {"recipient" : {"regime" : "cds", "identifier" : {"name" : "HMRC-CUS-ORG", "value" : "GB1234567890"}, "email" : "test@test.com"}, "subject" : "Test have subjects11", "renderUrl" : {"service" : "message", "url" : "/messages/6086dc1f4700009fed2f5745/content"}, "validFrom" : "2021-04-26", "externalRef" : {"id" : "12345678... | json_instruct | {"type": "object", "properties": {"recipient": {"type": "object", "properties": {"regime": {"type": "string"}, "identifier": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}, "email": {"type": "string"}}, "required": ["regime", "identifier", "ema... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"pro... | {"userId" : 30057, "cartId" : "32d1a420-a3f9-49be-a4ed-07277ad52c3f", "preferredProducts" : [1573], "productReviews" : [{"productId" : 1979, "reviewText" : "It only works when I'm Norway.", "reviewDate" : "2018-03-30T19:09:55.7937942+03:00"}]} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "column": {"type": "string"}, "intro": {"type": "string"}, "keywords": {"type": "array", "items": {... | {"name" : "\uff1c\u7279\u7a3f\uff1e\u4ece\u4fdd\u9493\u7fa4\u4f17\u8fd0\u52a8\u770b\u5f53\u4ee3\u4e2d\u56fd\u7684\u201c\u4e3b\u4e49\u4e4b\u4e89\u201d", "title" : "\uff1c\u7279\u7a3f\uff1e\u4ece\u4fdd\u9493\u7fa4\u4f17\u8fd0\u52a8\u770b\u5f53\u4ee3\u4e2d\u56fd\u7684\u201c\u4e3b\u4e49\u4e4b\u4e89\u201d", "author" : "\u4f... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "subject": {"type": "string"}, "column": {"type": "string"}, "intro": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "cover": {"type": "string"}, "date": {"type": "st... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "u... | {"authors" : [{"author" : "Marcus Derigs"}, {"author" : "Anika Pehl"}, {"author" : "Jorge Riera-Knorrenschild"}, {"author" : "Rainer Hofmann"}, {"author" : "Axel Hegele"}], "doi" : "10.1186/s12894-020-00616-3", "publication_date" : "2020-05-08", "id" : "EN111085", "url" : "https://pubmed.ncbi.nlm.nih.gov/32375712", "so... | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "a... | {"commentStamp" : "kdt 1/19/2009 10:58", "super" : "PTNamed", "category" : "Prototype-Core-Observers", "classinstvars" : [], "pools" : [], "classvars" : [], "instvars" : ["frequency", "function"], "name" : "PTTimedObserver", "type" : "normal"} | json_instruct | {"type": "object", "properties": {"commentStamp": {"type": "string"}, "super": {"type": "string"}, "category": {"type": "string"}, "classinstvars": {"type": "array", "items": {}}, "pools": {"type": "array", "items": {}}, "classvars": {"type": "array", "items": {}}, "instvars": {"type": "array", "items": {"type": "strin... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"jumpToPermissions_jump_to.txt": {"type": "object", "properties": {"global_cache": {"type": "boolean"}, "version_id": {"type": "integer"}, "version_string": {"type": "string"}, "hash": {"type": "string"}}, "required": ["global_... | {"jumpToPermissions_jump_to.txt" : {"global_cache" : false, "version_id" : 2000070, "version_string" : "2.0.0", "hash" : "da180a8dcefe421341be745d66137c62"}} | json_instruct | {"type": "object", "properties": {"jumpToPermissions_jump_to.txt": {"type": "object", "properties": {"global_cache": {"type": "boolean"}, "version_id": {"type": "integer"}, "version_string": {"type": "string"}, "hash": {"type": "string"}}, "required": ["global_cache", "version_id", "version_string", "hash"]}}, "require... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Math.abs": {"type": "string"}, "Math.max": {"type": "string"}, "Math.min": {"type": "string"}}, "required": ["Math.abs", "Math.max", "Math.min"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Math.abs" : "Returnerar absolutbeloppet av ett tal (v\u00e4rdet utan h\u00e4nsyn till huruvida det \u00e4r positivt eller negativt). \nTill exempel \u00e4r absolutbeloppet av -5 detsamma som absolutbeloppet av 5.", "Math.max" : "Returnerar det st\u00f6rre av tv\u00e5 givna numeriska uttryck.", "Math.min" : "Returnera... | json_instruct | {"type": "object", "properties": {"Math.abs": {"type": "string"}, "Math.max": {"type": "string"}, "Math.min": {"type": "string"}}, "required": ["Math.abs", "Math.max", "Math.min"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Intron maturase": {"type": "string"}, "Q9MV46": {"type": "string"}, "MATK_ABIHL": {"type": "string"}, "Maturase K": {"type": "string"}, "matK": {"type": "string"}}, "required": ["Intron maturase", "Q9MV46", "MATK_... | {"Intron maturase" : "Q9MV46", "Q9MV46" : "Q9MV46", "MATK_ABIHL" : "Q9MV46", "Maturase K" : "Q9MV46", "matK" : "Q9MV46"} | json_instruct | {"type": "object", "properties": {"Intron maturase": {"type": "string"}, "Q9MV46": {"type": "string"}, "MATK_ABIHL": {"type": "string"}, "Maturase K": {"type": "string"}, "matK": {"type": "string"}}, "required": ["Intron maturase", "Q9MV46", "MATK_ABIHL", "Maturase K", "matK"], "$schema": "http://json-schema.org/draft-... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"t... | {"title" : "Scalable Kernel Density Classification via Threshold-Based Pruning.", "fields" : ["kernel", "kernel density estimation", "variable kernel density estimation", "spatial database", "multivariate kernel density estimation"], "abstract" : "Density estimation forms a critical component of many analytics tasks in... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "pr... | {"builtin" : {"__set__" : true, "elements" : ["builtins", "copy", "ctypes", "functools", "itertools", "logging", "os", "queue", "sys", "threading", "time"]}, "questionable" : {"__set__" : true, "elements" : ["mpi4py"]}, "relative" : {"__set__" : true, "elements" : ["runtime"]}, "required" : {"__set__" : true, "elements... | json_instruct | {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}}}, "required": ["notes"], "$schema": "... | {"notes" : [{"title" : "JSON Databases", "text" : "Check them out", "id" : "1sv85eskwtyxq7z"}, {"title" : "Note One", "text" : "Note 1 text", "id" : "1sv85eskwtz9pty"}, {"title" : "UI Note Creation", "text" : "Click the plus sign and enter note details", "id" : "1sv85eskwtzgkbb"}, {"title" : "Raman's Super note", "text... | json_instruct | {"type": "object", "properties": {"notes": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "text": {"type": "string"}, "id": {"type": "string"}}, "required": ["title", "text", "id"]}}}, "required": ["notes"], "$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": "object", "properties": {"is_lock_vulnerable"... | {"contract" : "0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d", "tool" : "maian", "start" : 1565216123.023509, "end" : 1565216433.3901858, "duration" : 310.36667680740356, "analysis" : {"is_lock_vulnerable" : false, "is_prodigal_vulnerable" : false, "is_suicidal_vulnerable" : false}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"is_lock_vulnerable": {"type": "boolean"}, "is_prodigal_vulnerable": {"type": "boolean"}, "i... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"put": {"type": "string"}, "fields": {"type": "object", "properties": {"album": {"type": "string"}, "artist": {"type": "string"}, "year": {"type": "integer"}, "category_scores": {"type": "object", "properties": {"cells": {"t... | {"put" : "id:mynamespace:music::hardwired-to-self-destruct", "fields" : {"album" : "Hardwired...To Self-Destruct", "artist" : "Metallica", "year" : 2016, "category_scores" : {"cells" : [{"address" : {"cat" : "pop"}, "value" : 0}, {"address" : {"cat" : "rock"}, "value" : 1}, {"address" : {"cat" : "jazz"}, "value" : 0}]}... | json_instruct | {"type": "object", "properties": {"put": {"type": "string"}, "fields": {"type": "object", "properties": {"album": {"type": "string"}, "artist": {"type": "string"}, "year": {"type": "integer"}, "category_scores": {"type": "object", "properties": {"cells": {"type": "array", "items": {"type": "object", "properties": {"add... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "med... | {"id" : "18500879", "tms:id" : "161341", "accession_number" : "1979-91-666", "title" : "Ceiling", "url" : "http://collection.cooperhewitt.org/objects/18500879/", "department_id" : "35347503", "period_id" : null, "media_id" : "35414653", "type_id" : "35293313", "date" : null, "year_start" : "1905", "year_end" : "1915", ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"... | [{"oq" : "0", "q" : "7610", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1608645600000, "wptn" : "5", "z" : "174.07"}, {"oq" : "0", "q" : "0", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1608645600000, "wptn" : "5", "z" : "175.75"}, {"oq" : "0", "q" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "st... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"value" : ["UZ-USA", "NA-USA", "KK-USA", "JA-USA", "SK-USA", "MR-USA", "TA-USA", "TN-USA"]} | json_instruct | {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}}, "required": ["value"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "auto": {"type": "boolean"}, "contexts": {"type": "array", "items": {}}, "responses": {"type": "array", "items": {"type": "object", "properties": {"resetCont... | {"id" : "d9b5c42f-be32-486e-9728-eca24c9064a8", "name" : "support.contacts", "auto" : true, "contexts" : [], "responses" : [{"resetContexts" : false, "action" : "support.contacts", "affectedContexts" : [], "parameters" : [], "messages" : [{"type" : 0, "lang" : "en", "condition" : "", "speech" : ["You can go to my page ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "auto": {"type": "boolean"}, "contexts": {"type": "array", "items": {}}, "responses": {"type": "array", "items": {"type": "object", "properties": {"resetContexts": {"type": "boolean"}, "action": {"type": "string"}, "affectedContexts... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"t... | {"id" : "46a389e3-8389-4253-a138-f77ca28a1f6f", "name" : "St Ignatius College", "code" : "3", "address" : {"addressLine1" : "Turkey Street", "addressLine2" : "Enfield", "postcode" : "EN1 4NP"}, "organisation" : {"id" : "8eaad1be-be05-4b10-b15d-02ba86607a43", "code" : "15O", "name" : "Saint John Southworth Enterprise an... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "object", "properties": {"addressLine1": {"type": "string"}, "addressLine2": {"type": "string"}, "postcode": {"type": "string"}}, "required": ["addressLine1", "addressLine2", "postcode... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.... | {"symbol" : "HATE", "name" : "heavensgate.finance", "decimals" : 18, "address" : "0xe75d3b39d017985caf20fac7134ed55b8b47cc26"} | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "name": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}}, "required": ["symbol", "name", "decimals", "address"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema... | {"word" : "Priority", "definitions" : ["The fact or condition of being regarded or treated as more important than others.", "A thing that is regarded as more important than others.", "The right to proceed before other traffic."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"ty... | {"name" : "delete-gyazo-history", "version" : "1.0.0", "description" : "Delete your entire Gyazo history", "main" : "index.js", "keywords" : ["gyazo"], "author" : "Andreas Brekken <andreas@brekken.com>", "license" : "ISC", "dependencies" : {"async" : "2.1.5", "request" : "2.80.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "propert... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"... | {"type" : "Feature", "properties" : {"name" : "Lafayette County", "name_long" : "Lafayette County, MO", "fips" : "29107", "state_code_int" : 29, "state_code_postal" : "MO", "state_code_iso" : "US-MO", "county_code" : 107, "population" : 32708, "countrylevel_id" : "fips:29107", "census_data" : {"COUNTYNS" : "00758508", ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"perfundo-icons.css": {"type": "string"}, "perfundo-icons.min.css": {"type": "string"}, "perfundo.css": {"type": "string"}, "perfundo.min.css": {"type": "string"}}, "required": ["perfundo-icons.css", "perfundo-icon... | {"perfundo-icons.css" : "sha512-y4e5fKBYBks9mwosOY9HwKgFQlLXaDB8mdXPX0IF5ZxyuG7umdM+mu1NNJo4tG79GwXjbBpsLsarPvhmNiTHVA==", "perfundo-icons.min.css" : "sha512-ECNQeKLduH7q0a638cIO0A/xBOeKXbukZZrCsSSW8pYqcvpK9vWC9yvKs8ugdhWTiMJ73VFztccws8inn4BDWg==", "perfundo.css" : "sha512-E0ZtOemmXsLvvoei6P9/HV549ipLEDJvL+Fn+Plxgeyp2Z... | json_instruct | {"type": "object", "properties": {"perfundo-icons.css": {"type": "string"}, "perfundo-icons.min.css": {"type": "string"}, "perfundo.css": {"type": "string"}, "perfundo.min.css": {"type": "string"}}, "required": ["perfundo-icons.css", "perfundo-icons.min.css", "perfundo.css", "perfundo.min.css"], "$schema": "http://json... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type... | {"rating" : "5", "uuid" : "959", "review_date" : "2010-10-14", "helpful" : "6", "reviewer_id" : "A35H5GB2S4JXTT", "not_helpful" : "6", "review_text" : "The filter bag worked as advertised. I don't know what else is there to say about a vacuum cleaner bag, but this one is a good one.", "summary" : "Worked as advertised"... | json_instruct | {"type": "object", "properties": {"rating": {"type": "string"}, "uuid": {"type": "string"}, "review_date": {"type": "string"}, "helpful": {"type": "string"}, "reviewer_id": {"type": "string"}, "not_helpful": {"type": "string"}, "review_text": {"type": "string"}, "summary": {"type": "string"}, "product_name": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "ite... | {"name" : "Peda\u00e7o de Lazurita Varunada", "description" : "Material de Ascens\u00e3o de Personagem.\n\"Meus ideais s\u00e3o intocados.\"\n\"Eu preciso corrigir voc\u00ea. As pessoas aqui n\u00e3o cometem erros diante dos olhos dos deuses...\"", "sortorder" : 956, "rarity" : "4", "category" : "AVATAR_MATERIAL", "mat... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "rarity": {"type": "string"}, "category": {"type": "string"}, "materialtype": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "descriptio... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"WebHostBuilder": {"type": "object", "properties": {"UseUrls": {"type": "string"}}, "required": ["UseUrls"]}, "IdentityService": {"type": "object", "properties": {"Authority": {"type": "string"}}, "required": ["Authority"]}, "A... | {"WebHostBuilder" : {"UseUrls" : "http://*"}, "IdentityService" : {"Authority" : "http://kubernetes.docker.internal:30006"}, "ApiGatewayService" : {"Url" : "http://kubernetes.docker.internal:30007"}, "ConnectionStrings" : {"PermissionDBConnStr" : "User ID=postgres;Password=02020511;Host=kubernetes.docker.internal;Port=... | json_instruct | {"type": "object", "properties": {"WebHostBuilder": {"type": "object", "properties": {"UseUrls": {"type": "string"}}, "required": ["UseUrls"]}, "IdentityService": {"type": "object", "properties": {"Authority": {"type": "string"}}, "required": ["Authority"]}, "ApiGatewayService": {"type": "object", "properties": {"Url":... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "unit... | [{"subject" : "NURS", "catalog_nbr" : 456, "section" : 2, "class_nbr" : 10732, "title" : "DISCIPLINE OF NURSING II", "component" : "Lecture", "units" : 2, "bldg" : "TBA", "room" : "TBA", "days" : "Th", "time" : "13", "instructor" : "MCKENZIE,CAROLYN M", "load" : "100", "rank" : "INST", "attributes" : null, "enrl_cap" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"SNSTopic": {"type": "string"}, "Events": {"type": "array", "items": {"type": "string"}}}, "required": ["SNSTopic", "Events"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"SNSTopic" : "arn:aws:sns:us-west-2:734741078887:GMP-Glacier", "Events" : ["ArchiveRetrievalCompleted", "InventoryRetrievalCompleted"]} | json_instruct | {"type": "object", "properties": {"SNSTopic": {"type": "string"}, "Events": {"type": "array", "items": {"type": "string"}}}, "required": ["SNSTopic", "Events"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"StreamerFriendlyMode": {"type": "array", "items": {"type": "string"}}}, "required": ["StreamerFriendlyMode"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"StreamerFriendlyMode" : ["TheNewTens", "Troll", "ColorblindMode", "CardBattleGame", "PartyGame", "RacingGame", "RolePlayingGame", "SimulationGame", "ThirdPersonShooter", "VisualNovel", "WideOpenSandbox", "BreakingTheFourthWall", "Griefing", "Pinball"]} | json_instruct | {"type": "object", "properties": {"StreamerFriendlyMode": {"type": "array", "items": {"type": "string"}}}, "required": ["StreamerFriendlyMode"], "$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"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "joi": {"type": "string"}, "moment": {"ty... | {"name" : "client", "version" : "0.1.0", "private" : true, "dependencies" : {"axios" : "^0.18.0", "joi" : "^13.5.2", "moment" : "^2.22.2", "react" : "^16.4.1", "react-dom" : "^16.4.1", "react-fontawesome" : "^1.6.1", "react-map-gl" : "^3.3.4", "react-moment" : "^0.7.9", "react-router-dom" : "^4.3.1", "react-scripts" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "joi": {"type": "string"}, "moment": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "type": {"type": "string"}, "spec_version": {"type": "string"}, "id": {"type": "string"}, "created": {"type": "string"}... | {"objects" : [{"created_by_ref" : "identity--ae82a5e5-ec07-4863-ad88-6504b29f24e9", "type" : "relationship", "spec_version" : "2.1", "id" : "relationship--30dda089-a87e-418f-975d-7f21cdc82579", "created" : "2021-05-13T13:41:18.270009Z", "modified" : "2021-05-13T13:41:18.270009Z", "source_ref" : "intrusion-set--a653431d... | json_instruct | {"type": "object", "properties": {"objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "type": {"type": "string"}, "spec_version": {"type": "string"}, "id": {"type": "string"}, "created": {"type": "string"}, "modified": {"type": "string"}, "source_ref": {"type": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200872727552000, "key" : "/static/407cdf78d2233cabccfa9f85c8a677b1/5a46d/check-alerts-3.png", "val" : "fc4a02d5719c036dc89b3a8014758630"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": [... | {"number" : "16.603-1", "title" : "Description.", "children" : [{"text" : "A letter contract is a written preliminary contractual instrument that authorizes the contractor to begin immediately manufacturing supplies or performing services.", "type" : "paragraph", "level" : null}]} | json_instruct | {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": ["text", "type", "level"]}}}, "required": ["number", "titl... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "strin... | [{"namaKab" : "KUTAI KARTANEGARA", "originalFilename" : "JU8JN.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 113886, "noUrut" : 1, "nama" : "JUNARTO", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KUTAI KARTANEGARA", "originalFilename" : "FAHRUDIN.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 102927, "no... | 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", "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"graph_1": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "graph_2": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "labels_1": {"type": "array", "items": {"type": "stri... | {"graph_1" : [[0, 4], [0, 5], [0, 7], [0, 8], [0, 10], [0, 11], [4, 1], [4, 2], [4, 6], [4, 7], [4, 9], [4, 10], [4, 11], [4, 12], [5, 2], [5, 3], [5, 6], [5, 7], [5, 12], [7, 2], [7, 3], [7, 6], [7, 10], [7, 11], [7, 13], [8, 1], [8, 2], [8, 3], [8, 11], [8, 13], [10, 1], [10, 3], [10, 9], [11, 1], [11, 6], [11, 9], [... | json_instruct | {"type": "object", "properties": {"graph_1": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "graph_2": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "labels_1": {"type": "array", "items": {"type": "string"}}, "labels_2": {"type": "array", "items": {"type": "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "searchTerm": {"type": "string"}}, "required": ["languages", "searchTerm"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"languages" : ["English", "\u65e5\u672c\u8a9e", "Espa\u00f1ol", "Deutsch", "\u0420\u0443\u0441\u0441\u043a\u0438\u0439", "Fran\u00e7ais", "Italiano", "\u4e2d\u6587", "Portugu\u00eas", "Polski"], "searchTerm" : "Earth"} | json_instruct | {"type": "object", "properties": {"languages": {"type": "array", "items": {"type": "string"}}, "searchTerm": {"type": "string"}}, "required": ["languages", "searchTerm"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schem... | {"variants" : {"" : {"model" : "neutronia:block/illuminated_mossy_stone_bricks"}}} | json_instruct | {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type"... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.105274, 33.932965], [-118.100256, 33.938937], [-118.098478, 33.944105], [-118.090378, 33.931675], [-118.104768, 33.932011], [-118.105274, 33.932965]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 5224}}]} | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"m... | {"name" : "SkipAssist", "description" : "A browser extension to skip the intro credits when watching a show on Netflix", "version" : "2.0", "manifest_version" : 3, "content_scripts" : [{"matches" : ["https://*.netflix.com/*"], "js" : ["src/js/main.js"]}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type"... | {"derivation" : "of uncertain derivation;", "pron" : "aw-loosh'", "outline" : "<span class=\"literal-meaning\">Alush = "I will knead (bread)"</span><ol><li> a wilderness encampment following the Exodus</li></ol>", "kjv_def" : "Alush.", "lemma" : "\u05d0\u05b8\u05dc\u05d5\u05bc\u05e9\u05c1", "frequency" : 2, "... | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "a... | {"routes" : [{"method" : "GET", "path" : "/thingamajigs", "handler" : "Thingamajig.find", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/thingamajigs/count", "handler" : "Thingamajig.count", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/thingamajigs/:id", "handler" : "Thingamajig.findOne", ... | json_instruct | {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author... | {"id" : "21D0F9FB-6814-4CE7-B37D-FC97EBF1D0D2", "name" : "movie-roll", "codepoint" : "F07DE", "aliases" : ["film-reel"], "tags" : ["Video / Movie"], "author" : "Contributors", "version" : "2.0.46", "zhs" : ["\u7535\u5f71\u80f6\u5377", "\u7535\u5f71\u5377\u8f74"], "description" : "", "comments" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.