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": {"locale": {"type": "string"}, "name": {"type": "string"}, "is_mobile": {"type": "boolean"}, "msg_max": {"type": "integer"}, "c_quit": {"type": "boolean"}, "c_debug": {"type": "boolean"}, "c_interface": {"type": "boo... | {"locale" : "en", "name" : "MyUserName", "is_mobile" : true, "msg_max" : 20, "c_quit" : true, "c_debug" : true, "c_interface" : true, "c_internet" : true, "c_network" : true} | json_instruct | {"type": "object", "properties": {"locale": {"type": "string"}, "name": {"type": "string"}, "is_mobile": {"type": "boolean"}, "msg_max": {"type": "integer"}, "c_quit": {"type": "boolean"}, "c_debug": {"type": "boolean"}, "c_interface": {"type": "boolean"}, "c_internet": {"type": "boolean"}, "c_network": {"type": "boole... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}}, "requir... | {"name" : "MediaStreamTrackAudioSourceOptions", "lastModifiedAt" : 1629769816000, "entries" : [{"name" : "__type__", "lastModifiedAt" : 1629769816000}, {"name" : "mediaStreamTrack", "lastModifiedAt" : 1604977032464}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}, "entries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "lastModifiedAt": {"type": "integer"}}, "required": ["name", "lastModifiedAt"]}}}, "required": ["name", "lastModifiedAt... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["tokgen"] | 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": {"/ledgers/*": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}, "changeOrigin": {"type": "boolean"}, "logLevel": {"type": "string"}, "pathRewrite": {"type": "object", "pr... | {"/ledgers/*" : {"target" : "https://dev-modelbank-ledgers.cloud.adorsys.de", "secure" : false, "changeOrigin" : true, "logLevel" : "debug", "pathRewrite" : {"^/ledgers" : ""}}, "/certgen/*" : {"target" : "https://dev-modelbank-certificate-generator.cloud.adorsys.de", "secure" : false, "changeOrigin" : true, "logLevel"... | json_instruct | {"type": "object", "properties": {"/ledgers/*": {"type": "object", "properties": {"target": {"type": "string"}, "secure": {"type": "boolean"}, "changeOrigin": {"type": "boolean"}, "logLevel": {"type": "string"}, "pathRewrite": {"type": "object", "properties": {"^/ledgers": {"type": "string"}}, "required": ["^/ledgers"]... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"matrix.js": {"type": "string"}, "matrix.min.js": {"type": "string"}}, "required": ["matrix.js", "matrix.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"matrix.js" : "sha256-fcr7HF7MbH6IYfPlvb0UcMU4Q6dcSLx0bI4nuMctXhg=", "matrix.min.js" : "sha256-6eF/FNEpGKCBoKd4p3DFYMhjcTxu1OX5CaJ0dln4W3I="} | json_instruct | {"type": "object", "properties": {"matrix.js": {"type": "string"}, "matrix.min.js": {"type": "string"}}, "required": ["matrix.js", "matrix.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"ty... | {"userId" : 24891, "cartId" : "aef20cee-4621-4963-966e-2fc40f792365", "preferredProducts" : [2011, 3862, 510, 4225, 1188, 1255, 481, 3168, 1441], "productReviews" : [{"productId" : 525, "reviewText" : "I saw one of these in Moldova and I bought one.", "reviewDate" : "2020-02-21T08:46:57.3136706+02:00"}, {"productId" : ... | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"aws-sdk.js" : "sha512-3x5TaNL3x707rJzMRhMPS1cG0rRUKwGznyXBKrxLpJw4BsS8aY5ni2ZMerTH1XoEjzo02rXs44kPmV9+4xIM2Q==", "aws-sdk.min.js" : "sha512-f+lJYlLPZ8pPrBn0n9DmATghxPRjPcT3t4X4C8OZhZi9OCU0Pt3CLFnYshCHSvakduxCnDeR9xPiZG7mr8Jfdw=="} | json_instruct | {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties":... | {"name" : "colortxt", "displayName" : "ColorTXT", "description" : "Raw text highlights", "publisher" : "tanialx", "homepage" : "https://github.com/tanialx/colortxt/blob/main/README.md", "repository" : {"type" : "git", "url" : "https://github.com/tanialx/colortxt"}, "icon" : "icons/ext_icon.png", "galleryBanner" : {"col... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "publisher": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}},... | {"n_dim" : 34, "n_trials" : 340, "objective" : "markowitz_skew_on_cube", "white" : "ultraopt_forest", "black" : "optuna_random_clone_1", "traceback" : ["passing", "passing"], "best_val" : [8.789344098770549, 10.537769604682925], "best_x" : [[0.10890657515159796, 0.13747169253481295, 0.06158425941795487, 0.2787837736421... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": ... | {"name" : "Volksschule Lohr a.Main-Sendelbach", "id" : "BY-7855", "address" : "Ostlandstr. 19 97816 Lohr Sendelbach", "school_type" : "Grundschule", "fax" : "09352 807244", "phone" : "09352 2872", "website" : "http://www.gssendelbach.de", "state" : "BY", "programs" : {"programs" : []}, "full_time_school" : false, "lon"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "fax": {"type": "string"}, "phone": {"type": "string"}, "website": {"type": "string"}, "state": {"type": "string"}, "programs": {"type": "object", "properties": {"pro... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$sc... | {"private" : true, "sideEffects" : false, "main" : "./Jnt.js", "module" : "./Jnt.esm.js", "types" : "./Jnt.d.ts"} | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["private", "sideEffects", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type":... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : "0-9", "SERIES_NAME" : "MALE", "X_CALENDAR_YEAR" : 2008, "Y_PREVALENCE_1000PP" : 0.01852}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Observation recorded from EHR", "COUNT_VALUE" : 75}, "A... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "string"}, "SERIES_NAME": {"type": "string"}, "X_CALENDAR_YEAR": {"type": "integer"}, "Y_PREVALENCE_1000PP": {"type": "number"}}, "required": ["TRELLIS_NAME", "SERIES_NAME", "X_CALENDAR_YEAR", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "h... | {"assessment" : [{"name" : "Situational analysis report", "weight" : 30}, {"name" : "Marketing Plan Development (Group)", "weight" : 35}, {"name" : "Final Exam", "weight" : 35}]} | json_instruct | {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "l... | {"citations" : [{"textCitation" : "[See abv1 on Metamath](http://us.metamath.org/mpegif/abv1.html)"}], "argumentText" : "ARGUMENT\n\n| Step | Hyp | Ref | Expression |\n|---|---|---|---|\n\n| 1 | | abv0.a | |- A = ( AbsVal ` R ) |\n| 2 | | abv1.p | |- .1. = ( 1r ` R ) |\n| 3 | | #P_id | |- ( F e. A -> F e. A ) |\n| 4... | json_instruct | {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "argumentText": {"type": "string"}, "conclusion": {"type": "string"}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items":... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"waves.css": {"type": "string"}, "waves.js": {"type": "string"}, "waves.min.css": {"type": "string"}, "waves.min.js": {"type": "string"}}, "required": ["waves.css", "waves.js", "waves.min.css", "waves.min.js"], "$sche... | {"waves.css" : "sha256-fxFmyAYN9NlmwYC/vX1PYPBTMyj8J+2+pO/hybLGYnY=", "waves.js" : "sha256-iWFJFNOfoDPIWPQMV7hknZdKwzkmMWF41XbchE4QJMI=", "waves.min.css" : "sha256-Obokk27q8AYn5+ofZqgMEZbeWmjLw0n9Aym+IcxrFpA=", "waves.min.js" : "sha256-P3ARLm042czftoOR2AjIYP/471qs8/zQ55GeZUCtDAA="} | json_instruct | {"type": "object", "properties": {"waves.css": {"type": "string"}, "waves.js": {"type": "string"}, "waves.min.css": {"type": "string"}, "waves.min.js": {"type": "string"}}, "required": ["waves.css", "waves.js", "waves.min.css", "waves.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", ... | {"city" : {"name" : "PORTO ALEGRE DO TOCANTINS", "state" : "TO"}, "borders" : [[{"lat" : -11.349969390375009, "lng" : -46.922423834092626}, {"lat" : -11.403089323713289, "lng" : -46.926927246794946}, {"lat" : -11.503342518642285, "lng" : -46.956834802184346}, {"lat" : -11.529526822304945, "lng" : -47.03625507241361}, {... | json_instruct | {"type": "object", "properties": {"city": {"type": "object", "properties": {"name": {"type": "string"}, "state": {"type": "string"}}, "required": ["name", "state"]}, "borders": {"type": "array", "items": {"type": "array", "items": {"type": "object", "properties": {"lat": {"type": "number"}, "lng": {"type": "number"}}, ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "label": {"type": "string"}, "message": {"type": "string"}, "color": {"type": "string"}}, "required": ["schemaVersion", "label", "message", "color"], "$schema": "http://json-schema.org/draf... | {"schemaVersion" : 1, "label" : "uptime 24h", "message" : "15.13%", "color" : "red"} | json_instruct | {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "label": {"type": "string"}, "message": {"type": "string"}, "color": {"type": "string"}}, "required": ["schemaVersion", "label", "message", "color"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"billing_autorenew_service_update_no_payment_mean_description": {"type": "string"}, "billing_autorenew_service_update_no_payment_mean_add": {"type": "string"}}, "required": ["billing_autorenew_service_update_no_payme... | {"billing_autorenew_service_update_no_payment_mean_description" : "You have selected automatic payment for your {{ service }} service", "billing_autorenew_service_update_no_payment_mean_add" : "To use this renewal method, please enter a payment method in the \u201cMy payment methods\u201d section."} | json_instruct | {"type": "object", "properties": {"billing_autorenew_service_update_no_payment_mean_description": {"type": "string"}, "billing_autorenew_service_update_no_payment_mean_add": {"type": "string"}}, "required": ["billing_autorenew_service_update_no_payment_mean_description", "billing_autorenew_service_update_no_payment_mea... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array"... | {"name" : "pynq", "description" : "Python implementation of Microsoft's .Net Language Integrated Query (LINQ)", "license" : null, "starNum" : 133, "folkNum" : 12, "watchNum" : 133, "topic" : []} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"ty... | {"id" : 20431, "title" : "Hoozuki no Reitetsu", "title_en" : "Hozuki no Reitetsu", "title_jp" : "\u9b3c\u706f\u306e\u51b7\u5fb9", "picture" : "http://cdn.myanimelist.net/images/anime/9/55913.jpg", "synopsis" : "Hell is a bureaucracy, and business is running smoother than ever thanks to the demonic efficiency of Hoozuki... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "title_en": {"type": "string"}, "title_jp": {"type": "string"}, "picture": {"type": "string"}, "synopsis": {"type": "string"}, "type": {"type": "string"}, "episodes": {"type": "integer"}, "tags": {"type": "array", "items": {"type"... |
Based on the schema below, produce a valid JSON object:
{"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": "integ... | {"nom" : "Francheville", "dpt" : "Meurthe-et-Moselle", "inscrits" : 241, "abs" : 31, "votants" : 210, "blancs" : 5, "nuls" : 0, "exp" : 205, "res" : [{"panneau" : "2", "voix" : 99}, {"panneau" : "11", "voix" : 36}, {"panneau" : "3", "voix" : 22}, {"panneau" : "9", "voix" : 18}, {"panneau" : "1", "voix" : 13}, {"panneau... | 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"... |
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"}, "dependencies": {"type": "object", "properties": {"ajs": {"type": "string"}, "ajv": {"typ... | {"name" : "json-validater", "version" : "1.0.0", "description" : "A function which can validate data according to specified schema", "main" : "index.js", "dependencies" : {"ajs" : "^1.3.3", "ajv" : "^7.0.3", "body-parser" : "^1.19.0", "express" : "^4.17.1", "mongodb" : "^3.6.3", "mongoose" : "^5.11.11", "morgan" : "^1.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"ajs": {"type": "string"}, "ajv": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "paleness", "long" : "<i>Meaning:</i> \"paleness\", whether of persons (from fright), or of plants (from drought).<br/><i>Usage:</i> greenish, yellow.<br/><i>Source:</i> from \"H3418\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "str... | {"t" : "sapihifangaw", "h" : [{"d" : [{"f" : "\u60f3\u6b47\u5de5\u3001\u7aa9\u5de5\u3002", "e" : ["\ufff9`Sapihifang~`aw~ `noya~ `koli~ `anocila~.\ufffa\ufffb\u90a3\u4e9b\u5de5\u4eba\u60f3\u660e\u5929\u6b47\u5de5\u3002"]}]}], "stem" : "hifang"} | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "e... | {"name" : "DIPROGENTA SALEP KULIT 5 G", "harga" : " Rp. 59.533/ kemasan", "golongan" : "http://medicastore.com/image_banner/obat_keras_dan_psikotropika.gif", "kandungan" : "Betamethasone/Betametason dipropionat 0,05 %, Gentamisin sulfat 0,1 %.", "indikasi" : "Meredakan manifestasi peradangan dari dermatosis dengan kom... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "harga": {"type": "string"}, "golongan": {"type": "string"}, "kandungan": {"type": "string"}, "indikasi": {"type": "string"}, "kontraindikasi": {"type": "string"}, "perhatian": {"type": "string"}, "efeksamping": {"type": "string"}, "indeksamanwanitahamil": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "dependencies"... | {"name" : "example", "version" : "1.0.0", "main" : "index.js", "license" : "MIT", "scripts" : {"dev" : "parcel serve src/index.html"}, "dependencies" : {"@glide.js/core" : "../"}, "devDependencies" : {"parcel" : "^2.0.0-rc.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "dependencies": {"type": "object", "properties": {"@glide.js/core": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "text": {"type": "object",... | {"resourceType" : "CodeSystem", "id" : "shr-core-QualitativeFrequencyCS", "meta" : {"profile" : ["http://hl7.org/fhir/StructureDefinition/codesystem-shareable-definition"]}, "text" : {"status" : "generated", "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n<p><b>SHR QualitativeFrequencyCS CodeSystem</b></p>\n<p/>... | json_instruct | {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"profile": {"type": "array", "items": {"type": "string"}}}, "required": ["profile"]}, "text": {"type": "object", "properties": {"status": {"type": "string"}, "div": {"type": "string"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "strin... | {"t" : "tikokayay", "h" : [{"d" : [{"f" : "\u7ffb\u8ddf\u6597\u4e86\uff0c\u7ffb\u7b4b\u6597\u4e86\u3002", "e" : ["\ufff9`Tikokay~`ay~ `cangra~ `i~ `rengorengosan~.\ufffa\ufffb\u4ed6\u5011\u6b63\u5728\u8349\u5730\u4e0a\u7ffb\u8ddf\u6597\u3002"]}, {"f" : "\u6307\u7ffb\u8ddf\u6597\u7684\uff08\u4eba\uff09\u3002", "e" : ["\... | json_instruct | {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "e"]}}}, "required": ["d"]}}, "s... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"... | {"nodes" : [{"name" : "BOND & COMPANY", "id" : 0}, {"name" : "VILLAGE FOUNDATION", "id" : 5}, {"name" : "NATIONS FOUNDATION", "id" : 7}, {"name" : "VISION INTERNATIONAL CORP.", "id" : 2}, {"name" : "MOSSFON MANAGERS LTD.", "id" : 1}, {"name" : "HERITAGE GLOBAL FOUNDATION", "id" : 8}, {"name" : "THE ALEXANDER HERITAGE F... | json_instruct | {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}}, "required": ["name", "id"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "integer"}, "target": {"type": "integer"}... |
Based on the schema below, produce a valid JSON object:
{"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": {"type"... | {"directions" : ["Trim both ends off the lemon, then stand it on a cut side and use a sharp paring knife to cut off the peel, including the white pith; discard the peel. Cut the segments free from the membranes.", "Feed the lemon segments, apple, celery, kale, and parsley through a juicer. Stir in the turmeric and serv... | 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": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"... |
Create an example JSON object that satisfies this schema:
{"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" : "1006", "provinceId" : "32", "regencyId" : "10", "districtId" : "20", "name" : "Cicenang"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}}, "required": ["dev"]}, "dependenc... | {"name" : "practice-prisma2", "version" : "1.0.0", "description" : "- \uc774 \ud504\ub85c\uc81d\ud2b8\ub294 Prisma2 \ub97c \uc5f0\uc2b5\ud574\ubcf4\uae30 \uc704\ud55c \ud504\ub85c\uc81d\ud2b8\uc785\ub2c8\ub2e4.", "main" : "index.js", "scripts" : {"dev" : "ts-node ./index.ts"}, "dependencies" : {"@prisma/client" : "^2.2... | 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"]}, "dependencies": {"type": "object", "properties": {"@prisma/client": {... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "build": {"type": "string"}, "lint": {"type":... | {"private" : true, "workspaces" : ["./packages/*"], "scripts" : {"prepare" : "yarn workspaces run prepare", "build" : "yarn workspaces run build", "lint" : "yarn workspaces run lint", "tsc" : "yarn workspaces run tsc", "test" : "yarn workspaces run test", "release" : "yarn prepare && cp README.md packages/repack && yar... | json_instruct | {"type": "object", "properties": {"private": {"type": "boolean"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"prepare": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}, "tsc": {"type": "string"}, "test": {"type": "string"}, "rel... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "obj... | {"manifest_version" : 2, "name" : "Productivity Enforcer", "description" : "A simple Chrome Extension that prevents the browser from launching websites, which you specify.", "version" : "3.2", "permissions" : ["activeTab", "tabs"], "browser_action" : {"default_icon" : "icon.png", "default_popup" : "popup.html"}, "icons... | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1983, 6], [1989, 5], [1991, 9], [1992, 7], [1993, 9], [1994, 14], [1995, 13], [1996, 10], [1997, 17], [1998, 7], [1999, 12], [2000, 8], [2001, 7], [2002, 5], [2003, 5], [2005, 5], [2011, 7]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"notifications": {"type": "object", "properties": {"loading": {"type": "string"}, "configuration_success": {"type": "string"}, "configuration_error": {"type": "string"}, "not_reachable": {"type": "string"}}, "required... | {"notifications" : {"loading" : "Laedt...", "configuration_success" : "Konfiguration abgeschlossen, bitte warten...", "configuration_error" : "Oops, es ist ein Fehler aufgetreten!", "not_reachable" : "Dieses Modul kann die Station nicht erreichen. Ueberpruefen Sie den Batteriestatus oder bringen Sie es naeher an die St... | json_instruct | {"type": "object", "properties": {"notifications": {"type": "object", "properties": {"loading": {"type": "string"}, "configuration_success": {"type": "string"}, "configuration_error": {"type": "string"}, "not_reachable": {"type": "string"}}, "required": ["loading", "configuration_success", "configuration_error", "not_r... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"an5.152:0.1": {"type": "string"}, "an5.152:0.2": {"type": "string"}, "an5.152:0.3": {"type": "string"}, "an5.152:1.1": {"type": "string"}, "an5.152:1.2": {"type": "string"}, "an5.152:1.3": {"type": "string"}, "an5.152:1.4": {"ty... | {"an5.152:0.1" : "A\u1e45guttara Nik\u0101ya 5 ", "an5.152:0.2" : "16. Saddhammavagga ", "an5.152:0.3" : "152. Dutiyasammattaniy\u0101masutta ", "an5.152:1.1" : "\u201cPa\u00f1cahi, bhikkhave, dhammehi samann\u0101gato su\u1e47antopi saddhamma\u1e41 abhabbo niy\u0101ma\u1e41 okkamitu\u1e41 kusalesu dhammesu sammatta\u1... | json_instruct | {"type": "object", "properties": {"an5.152:0.1": {"type": "string"}, "an5.152:0.2": {"type": "string"}, "an5.152:0.3": {"type": "string"}, "an5.152:1.1": {"type": "string"}, "an5.152:1.2": {"type": "string"}, "an5.152:1.3": {"type": "string"}, "an5.152:1.4": {"type": "string"}, "an5.152:2.1": {"type": "string"}, "an5.1... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}},... | {"n_dim" : 8, "n_trials" : 210, "objective" : "markowitz_return_on_cube", "white" : "optuna_random_clone_1", "black" : "pysot_srbf", "traceback" : ["passing", "passing"], "best_val" : [3749.1589335280405, 3396.2719779265312], "best_x" : [[0.6039594593350766, 0.28658673846541094, 0.7168450083348954, 0.35292755789452335,... | json_instruct | {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string"}, "xlit": ... | {"derivation" : "of uncertain derivation;", "pron" : "ab-at-tee'-akh", "outline" : "", "kjv_def" : "melon.", "lemma" : "\u05d0\u05b2\u05d1\u05b7\u05d8\u05bc\u05b4\u05d9\u05d7\u05b7", "frequency" : "", "strongs_def" : "a melon (only plural)", "xlit" : "\u02bc\u0103ba\u1e6d\u1e6d\u00eeyach"} | json_instruct | {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "string"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "s... | {"name" : "Showcase.Client.App", "version" : "1.0.0", "repository" : {"type" : "git", "url" : "https://github.com/TelerikAcademy/ShowcaseSystem"}, "license" : "MIT", "description" : "Showcase system for students projects in Telerik Academy", "devDependencies" : {"gulp" : "^3.9.0", "gulp-concat" : "^2.6.0", "gulp-uglify... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "description": {"type": "string"}, "devDependencies": {"type":... |
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" : [[[-83.341094, 41.603441], [-83.344928, 41.603431], [-83.344969, 41.607994], [-83.341037, 41.606294], [-83.33806, 41.605], [-83.338059, 41.605314], [-83.338062, 41.605589], [-83.338065, 41.606032], [-83.338061, 41.606611], [... | 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": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["CKY"] | json_instruct | {"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": {"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" : "Legacydusttrust", "scores" : [{"xp" : 58540, "rank" : 68, "cardId" : 7}, {"xp" : 66333, "rank" : 123, "cardId" : 1}, {"xp" : 38146, "rank" : 438, "cardId" : 115}, {"xp" : 38826, "rank" : 235, "cardId" : 32}, {"xp" : 29162, "rank" : 102, "cardId" : 5}, {"xp" : 3615, "rank" :... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"BusinessEntityId": {"type": "integer"}, "PersonType": {"type": "string"}, "NameStyle": {"type": "boolean"}, "Title": {"type": "string"}, "FirstName": {"type": "string"}, "MiddleName": {"type": "string"}, "Las... | {"BusinessEntityId" : 887, "PersonType" : "SC", "NameStyle" : false, "Title" : "Mr.", "FirstName" : "Duane", "MiddleName" : "R.", "LastName" : "Fitzgerald", "Suffix" : "Jr.", "EmailPromotion" : 1, "AdditionalContactInfo" : null, "Demographics" : "<IndividualSurvey xmlns=\"http://schemas.microsoft.com/sqlserver/2004/07/... | json_instruct | {"type": "object", "properties": {"BusinessEntityId": {"type": "integer"}, "PersonType": {"type": "string"}, "NameStyle": {"type": "boolean"}, "Title": {"type": "string"}, "FirstName": {"type": "string"}, "MiddleName": {"type": "string"}, "LastName": {"type": "string"}, "Suffix": {"type": "string"}, "EmailPromotion": {... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"compile_duration": {"type": "number"}, "execution_duration": {"type": "number"}, "example_size": {"type": "integer"}, "batch_size": {"type": "integer"}, "model": {"type": "string"}}, "required": ["compile_duration", "execution_d... | {"compile_duration" : 13.720216989517212, "execution_duration" : 0.323438435792923, "example_size" : 16, "batch_size" : 16, "model" : "inception_v3"} | json_instruct | {"type": "object", "properties": {"compile_duration": {"type": "number"}, "execution_duration": {"type": "number"}, "example_size": {"type": "integer"}, "batch_size": {"type": "integer"}, "model": {"type": "string"}}, "required": ["compile_duration", "execution_duration", "example_size", "batch_size", "model"], "$schem... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"page-index-hero-image-alt": {"type": "string"}, "page-index-meta-description": {"type": "string"}, "page-index-meta-title": {"type": "string"}, "page-index-sections-developers-desc": {"type": "string"}, "page... | {"page-index-hero-image-alt" : "temeljna slika za ethereum.org", "page-index-meta-description" : "Ethereum je globalna, decentralizirana platforma za denar in nove vrste aplikacij. V Ethereumu lahko pi\u0161ete programsko kodo, ki upravlja denar, in gradite aplikacije, ki so dostopne povsod po svetu.", "page-index-meta... | json_instruct | {"type": "object", "properties": {"page-index-hero-image-alt": {"type": "string"}, "page-index-meta-description": {"type": "string"}, "page-index-meta-title": {"type": "string"}, "page-index-sections-developers-desc": {"type": "string"}, "page-index-sections-developers-image-alt": {"type": "string"}, "page-index-sectio... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "inte... | {"appid" : 602200, "name" : "Dreamlike Worlds", "windows" : true, "mac" : true, "linux" : false, "early_access" : false, "lookup_time" : 1491011267} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"three.js": {"type": "string"}, "three.min.js": {"type": "string"}}, "required": ["three.js", "three.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"three.js" : "sha512-VFGs6fwRVAJTOMlFF0AAJAO8K7uGCF1leT+CmP1dhbn35UX1cFlP5JxJ9EresWlw1iVe30BPQZEojrlBDdvilw==", "three.min.js" : "sha512-8nTz763dVVRsEMtuvt+3qpj/q68MvrRvxT/tAUGmxT75Vy/S2pBOhFXR58CHRMSa8UNh0Az0PNnRgxPhqxPfcQ=="} | json_instruct | {"type": "object", "properties": {"three.js": {"type": "string"}, "three.min.js": {"type": "string"}}, "required": ["three.js", "three.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"ctfname": {"type": "string"}, "challenges": {"type": "array", "items": {}}}, "required": ["ctfname", "challenges"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ctfname" : "hackthevote20", "challenges" : []} | json_instruct | {"type": "object", "properties": {"ctfname": {"type": "string"}, "challenges": {"type": "array", "items": {}}}, "required": ["ctfname", "challenges"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": ... | {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.292614, 54.685143]}, "properties" : {"point" : "POINT(-1.292614 54.685143)", "site" : "BR17 - North Farm", "minimum-net-dwellings" : "14", "hectares" : "0.73", "planning-permission-type" : "full planning permission", "planning-permission-status" :... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"point": {"type": "string"}, "site... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "ite... | {"ast" : null, "code" : "import React from 'react';\nimport createSvgIcon from './utils/createSvgIcon';\nexport default createSvgIcon(React.createElement(React.Fragment, null, React.createElement(\"defs\", null, React.createElement(\"path\", {\n id: \"a\",\n d: \"M0 0h24v24H0z\"\n})), React.createElement(\"g\", null,... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "s... | {"slug" : "wp-stats", "name" : "WP-Stats", "latest_version" : "2.54", "last_updated" : "2018-03-27T17:47:18.614Z", "vulnerabilities" : [{"id" : "8049", "title" : "WP-Stats <= 2.51 - CSRF & Stored Cross-Site Scripting (XSS)", "created_at" : "2015-06-17T14:38:38Z", "updated_at" : "2015-06-29T15:29:33Z", "published_date" ... | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "name": {"type": "string"}, "latest_version": {"type": "string"}, "last_updated": {"type": "string"}, "vulnerabilities": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "created_at": {"type"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"react-transition-group.js": {"type": "string"}, "react-transition-group.min.js": {"type": "string"}}, "required": ["react-transition-group.js", "react-transition-group.min.js"], "$schema": "http://json-schema.org/draft-07/sche... | {"react-transition-group.js" : "sha256-OUQERVpexQ+YVvGFHSfVLV1OiQlOkDtAzSCrZm2M1I0=", "react-transition-group.min.js" : "sha256-rhtPFQN7qa/qUizevQh41ZWv80AHlqTUIA/orBfxs34="} | json_instruct | {"type": "object", "properties": {"react-transition-group.js": {"type": "string"}, "react-transition-group.min.js": {"type": "string"}}, "required": ["react-transition-group.js", "react-transition-group.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "proper... | {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.859104, 53.720393]}, "properties" : {"hectares" : "0.11", "start-date" : "2017-12-20", "notes" : "15/00828/CON - Conversion of lower and ground floors from Restaurant (A3) to three apartments (C3). Granted 17.09.15. 14/57019 - Prior approval appli... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"hectares": {"type": "string"}, "s... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"url": {"type": "string"}, "id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "curator": {"type": "object", "properties": {"name": {"type": "string"}, "url"... | {"url" : "https://developer.apple.com/documentation/xcode_release_notes/xcode_11_beta_5_release_notes", "id" : 103, "title" : "Xcode 11 Beta 5 is out!", "date" : "2019-07-29T23:55:00Z", "description" : "SwiftUI and Combine keeping getting updated in each beta and this one isn't an exception!", "curator" : {"name" : "Pe... | json_instruct | {"type": "object", "properties": {"url": {"type": "string"}, "id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "description": {"type": "string"}, "curator": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}, "tags": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPat... | {"name" : "love2d-hx", "url" : "https://github.com/darkwater/love2d-hx", "license" : "BSD", "tags" : ["cross", "game", "lua", "android", "framework"], "description" : "Externs for the L\u00d6VE framework", "version" : "0.10.2-alpha", "classPath" : "src/", "releasenote" : "Initial release", "contributors" : ["darkwater"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPath": {"type": "string"}, "releasenote": {"type": "string"}, "contribut... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", ... | {"userId" : 73864, "cartId" : "7e6fac5f-15f9-4632-87aa-58732202f42d", "preferredProducts" : [103, 157], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Cotacao": {"type": "number"}, "Cresc. Rec.5a": {"type": "number"}, "Div.Brut/ Patrim.": {"type": "number"}, "Div.Yield": {"type": "number"}, "EV/EBIT": {"type": "number"}, "EV/EBITDA": {"type": "number"}, "Liq. Corr.": {"type"... | {"Cotacao" : 30.0, "Cresc. Rec.5a" : -0.452, "Div.Brut/ Patrim." : 3.21, "Div.Yield" : 0.0673, "EV/EBIT" : 9.89, "EV/EBITDA" : 6.97, "Liq. Corr." : 1.04, "Liq.2meses" : 66492.7, "Mrg Ebit" : 0.1027, "Mrg. Liq." : 0.0316, "P/Ativ Circ.Liq" : -0.33, "P/Ativo" : 0.196, "P/Cap.Giro" : 20.17, "P/EBIT" : 3.17, "P/L" : 10.32,... | json_instruct | {"type": "object", "properties": {"Cotacao": {"type": "number"}, "Cresc. Rec.5a": {"type": "number"}, "Div.Brut/ Patrim.": {"type": "number"}, "Div.Yield": {"type": "number"}, "EV/EBIT": {"type": "number"}, "EV/EBITDA": {"type": "number"}, "Liq. Corr.": {"type": "number"}, "Liq.2meses": {"type": "number"}, "Mrg Ebit": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "i... | {"ast" : null, "code" : "var _jsxFileName = \"D:\\\\vislme\\\\c2o\\\\start3\\\\port-backup\\\\port\\\\src\\\\pages\\\\resume\\\\Resume.js\";\nimport React from 'react';\nimport ResumeSide from './../../components/resumeSide/ResumeSide';\n\nconst Resume = () => React.createElement(React.Fragment, null, React.createEleme... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "PIRAPAT", "frequency" : 1, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-0": {"type": "string"}}, "required": ["ctrl-alt-0"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"atom-workspace" : {"ctrl-alt-0" : "clean-ally:clean"}} | json_instruct | {"type": "object", "properties": {"atom-workspace": {"type": "object", "properties": {"ctrl-alt-0": {"type": "string"}}, "required": ["ctrl-alt-0"]}}, "required": ["atom-workspace"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"VideoGamesOfThe1980s": {"type": "array", "items": {"type": "string"}}}, "required": ["VideoGamesOfThe1980s"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"VideoGamesOfThe1980s" : ["MouseTrap", "Atlantis", "HauntedHouse", "ImpossibleMission", "DejaVu", "HauntedCastle", "DejaVu"]} | json_instruct | {"type": "object", "properties": {"VideoGamesOfThe1980s": {"type": "array", "items": {"type": "string"}}}, "required": ["VideoGamesOfThe1980s"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"js/multiselect.js": {"type": "string"}, "js/multiselect.min.js": {"type": "string"}}, "required": ["js/multiselect.js", "js/multiselect.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"js/multiselect.js" : "sha256-nTmAjrvd7wp+11zrzM7LoU/ydNhVnN0pTx155ditN5s=", "js/multiselect.min.js" : "sha256-Pn9YSsQPhLbHQT2cy+BWY+KuENF3g+qpzbIG+WrsP54="} | json_instruct | {"type": "object", "properties": {"js/multiselect.js": {"type": "string"}, "js/multiselect.min.js": {"type": "string"}}, "required": ["js/multiselect.js", "js/multiselect.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Awa Railroad": {"type": "object", "properties": {"nicknames": {"type": "array", "items": {"type": "string"}}, "home": {"type": "string"}}, "required": ["nicknames", "home"]}, "Tosa Electric Rail": {"type": "obj... | {"Awa Railroad" : {"nicknames" : ["AR"], "home" : "D17"}, "Tosa Electric Rail" : {"nicknames" : ["TR", "TER"], "home" : "G10"}, "Tosa Kuroshio Railroad" : {"nicknames" : ["KU", "TKR"], "home" : "I6"}, "Iyo Railroad" : {"nicknames" : ["IR", "Iyo"], "home" : "D5"}, "Takamatsu-Kotohira Electric Rail" : {"nicknames" : ["KO... | json_instruct | {"type": "object", "properties": {"Awa Railroad": {"type": "object", "properties": {"nicknames": {"type": "array", "items": {"type": "string"}}, "home": {"type": "string"}}, "required": ["nicknames", "home"]}, "Tosa Electric Rail": {"type": "object", "properties": {"nicknames": {"type": "array", "items": {"type": "stri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "va... | {"nft" : {"id" : 3320, "image" : "ipfs://QmPTcq2QVjznEm4m7nXuy5oAzPFTaT9f6NcT8AFLZFDw1e", "attributes" : [{"trait_type" : "Background", "value" : "Purple"}, {"trait_type" : "Eyes", "value" : "Crazy"}, {"trait_type" : "Hat", "value" : "Cowboy Hat"}, {"trait_type" : "Fur", "value" : "Dark Brown"}, {"trait_type" : "Clothe... | json_instruct | {"type": "object", "properties": {"nft": {"type": "object", "properties": {"id": {"type": "integer"}, "image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}}, "required"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"uuid": {"type": "string"}, "shortName": {"type": "string"}, "longName": {"type": "string"}, "companyName": {"type": "string"}, "versionCode": {"type": "integer"}, "versionLabel": {"type": "string"}, "watchapp": {"ty... | {"uuid" : "7d60b4e6-6ea4-43a4-9e15-821a48b93e54", "shortName" : "Template App", "longName" : "Pebble Template App", "companyName" : "Your Company", "versionCode" : 1, "versionLabel" : "1.0.0", "watchapp" : {"watchface" : false}, "appKeys" : {"dummy" : 0}, "resources" : {"media" : [{"type" : "raw", "name" : "TEST_IMAGE"... | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "shortName": {"type": "string"}, "longName": {"type": "string"}, "companyName": {"type": "string"}, "versionCode": {"type": "integer"}, "versionLabel": {"type": "string"}, "watchapp": {"type": "object", "properties": {"watchface": {"type": "boolean"}}, "requ... |
Based on the schema below, produce a valid JSON object:
{"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": "i... | {"id" : 101893445, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "28ee5e6ec4144eb5197848ed62771d3f", "wof:id" : 101893445, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.05876571735843, 45.93986680484261, 4.06983155525916, 45.94690373659427... | 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": ["... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"\u6cd5\u898f\u6027\u8cea": {"type": "string"}, "\u6cd5\u898f\u540d\u7a31": {"type": "string"}, "\u6cd5\u898f\u7db2\u5740": {"type": "string"}, "\u6cd5\u898f\u985e\u5225": {"type": "string"}, "\u6700\u65b0\u7570\u52d5\u65e5\... | {"\u6cd5\u898f\u6027\u8cea" : "\u547d\u4ee4", "\u6cd5\u898f\u540d\u7a31" : "\u884c\u653f\u9662\u52de\u5de5\u59d4\u54e1\u6703\u8077\u696d\u8a13\u7df4\u5c40\u6280\u80fd\u6aa2\u5b9a\u59d4\u54e1\u6703\u7d44\u7e54\u898f\u7a0b", "\u6cd5\u898f\u7db2\u5740" : "https://law.moj.gov.tw/LawClass/LawAll.aspx?pcode=N0000004", "\u6cd... | json_instruct | {"type": "object", "properties": {"\u6cd5\u898f\u6027\u8cea": {"type": "string"}, "\u6cd5\u898f\u540d\u7a31": {"type": "string"}, "\u6cd5\u898f\u7db2\u5740": {"type": "string"}, "\u6cd5\u898f\u985e\u5225": {"type": "string"}, "\u6700\u65b0\u7570\u52d5\u65e5\u671f": {"type": "string"}, "\u5ee2\u6b62\u8a3b\u8a18": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"applications": {"type": "array", "items": {"type": "string"}}, "mailer": {"type": "object", "properties": {"default_sender": {"type": "string"}, "endpoints": {"type": "object", "properties": {"default": {"type": "object", "prope... | {"applications" : ["guillotina_mailer"], "mailer" : {"default_sender" : "foo@bar.com", "endpoints" : {"default" : {"type" : "smtp", "host" : "localhost", "port" : 25}}, "debug" : false, "use_html2text" : true, "domain" : null}} | json_instruct | {"type": "object", "properties": {"applications": {"type": "array", "items": {"type": "string"}}, "mailer": {"type": "object", "properties": {"default_sender": {"type": "string"}, "endpoints": {"type": "object", "properties": {"default": {"type": "object", "properties": {"type": {"type": "string"}, "host": {"type": "st... |
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-client": {"type": "string"}, "dev-server": {"... | {"name" : "epibuilder-server", "version" : "1.1.0", "description" : "", "main" : "index.js", "scripts" : {"dev-client" : "cd client && yarn start", "dev-server" : "source etc/local.env && nodemon server.js", "client" : "node bin/generateClientConfig.js && cd client && npm install && npm run build", "start" : "npm run c... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev-client": {"type": "string"}, "dev-server": {"type": "string"}, "client": {"type": "string"}, "start": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "strin... | {"directions" : ["Preheat oven to 375 degrees F (190 degrees C). Grease a bread pan.", "Mix flour, sugar, cinnamon, baking soda, baking powder, and cloves in a large bowl.", "Beat egg and milk together in a separate bowl; add to flour mixture and stir to moisten dry ingredients evenly. Pour mixture into a bread pan.", ... | json_instruct | {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type":... | {"id" : 11866, "title" : ["[Aqueduct]"], "description" : ["A dimly lit cavern opens up to allow passage of a glowing emerald stream barely a foot deep. The stream fills the cavern from wall to wall, though, entering from a tunnel to the north and exiting through a tunnel to the west. In a small alcove on the eastern ... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"11867"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"shadydom.min.js": {"type": "string"}}, "required": ["shadydom.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"shadydom.min.js" : "sha256-03uTp4s0EIB5Jvw8+aHbz/Qh/UHLyJccTz4ECWpXF2Q="} | json_instruct | {"type": "object", "properties": {"shadydom.min.js": {"type": "string"}}, "required": ["shadydom.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01028094": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "proper... | {"type" : "Topology", "objects" : {"E01028094" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00143149", "LAD11CD" : "E07000172"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01028094": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"propertyid": {"type": "string"}, "property": {"type": "string"}}, "required": ["propertyid", "property"]}}}, "required": ["properties"], "$sc... | {"properties" : [{"propertyid" : "1234", "property" : "foo"}, {"propertyid" : "4321", "property" : "bar"}]} | json_instruct | {"type": "object", "properties": {"properties": {"type": "array", "items": {"type": "object", "properties": {"propertyid": {"type": "string"}, "property": {"type": "string"}}, "required": ["propertyid", "property"]}}}, "required": ["properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "1302092001", "nama" : "Taruang-Taruang"}, {"id" : "1302092002", "nama" : "Siaro-Aro"}, {"id" : "1302092003", "nama" : "Pianggu"}, {"id" : "1302092004", "nama" : "Sungai Durian"}, {"id" : "1302092005", "nama" : "Bukik Bais"}, {"id" : "1302092006", "nama" : "Sungai Jambur"}, {"id" : "1302092007", "nama" : "Gugu... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_a... | {"generated_at" : "2017-01-27T09:37:25.075218", "required_by" : ["plone.app.collection", "plone.app.standardtiles"], "requires" : ["setuptools", "plone.app.querystring"], "package" : "plone.formwidget.querystring"} | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}... | {"name" : "bitcointfaucets", "version" : "1.0.0", "private" : true, "description" : "bitcointfaucets", "author" : "nanorocks", "keywords" : ["gatsby"], "scripts" : {"develop" : "gatsby develop", "start" : "gatsby develop", "build" : "gatsby build", "serve" : "gatsby serve", "clean" : "gatsby clean", "deploy" : "gatsby ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"develop": {"type": "stri... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "70cb06622d41580f5f1824b48a2fcfe1583cb713"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$sche... | {"width" : 0.20067634, "rotation" : -0.32792222, "xCenter" : 0.34578806, "yCenter" : 0.50337833, "height" : 0.35675794} | json_instruct | {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"openInApp": {"type": "string"}, "view": {"type": "string"}}, "required": ["openInApp", "view"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"openInApp" : "M\u1edf b\u1eb1ng {appName}", "view" : "Xem"} | json_instruct | {"type": "object", "properties": {"openInApp": {"type": "string"}, "view": {"type": "string"}}, "required": ["openInApp", "view"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["adama-web", "angular-gizmos", "atomic-ui", "barcode.js", "buildbot-data", "dtsmake", "element-calcum", "element-calcum-style", "evp", "fackel", "generator-bower-rjs", "gulp-depcheck", "gulp-raml-client-generator", "gulp-rollup", "hubot-octopus-deploy", "json-schema-model", "macx-sass-mixins", "octopus-deploy-client",... | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft... | {"name" : "potter's wheel", "sample1" : "1SnKjJnmG2Qb4G-lcxbfjwX9IFJWC5spS", "sample2" : "1g-MLGV8u753ICfmCJBUgWUQVo3BFpZPj", "sample3" : "16GDT0gMN1UCBK7f78Ky0dhmxPCpLFA9t"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}... | {"Id" : "key_west_205", "IsStatic" : false, "useGravity" : false, "randomRotation" : false, "Position" : {"x" : -311.650024, "y" : -61.636, "z" : 486.583984}, "Rotation" : {"x" : 87.03819, "y" : 4.59911062e-05, "z" : 180}, "IsGroupPosition" : false, "GroupPositions" : [], "Root" : "key_west205", "Items" : [{"_id" : "ke... | json_instruct | {"type": "object", "properties": {"Id": {"type": "string"}, "IsStatic": {"type": "boolean"}, "useGravity": {"type": "boolean"}, "randomRotation": {"type": "boolean"}, "Position": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts"... | {"name" : "hapijs-namespace", "version" : "2.0.0", "description" : "Apply namespaced routes in Hapi", "author" : "Thomas Gibbons <thomas.gibbons@i9t-solutions.com>", "homepage" : "https://github.com/twgibbons/hapijs-namespace#readme", "license" : "ISC", "main" : "index.js", "scripts" : {"test" : "jest", "test-cov" : "j... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"noCommands": {"type": "string"}, "restrictSuccess": {"type": "string"}}, "required": ["noCommands", "restrictSuccess"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"noCommands" : "You need to specify which commands to restrict!", "restrictSuccess" : "Restricted the following commands: {{ commands }}"} | json_instruct | {"type": "object", "properties": {"noCommands": {"type": "string"}, "restrictSuccess": {"type": "string"}}, "required": ["noCommands", "restrictSuccess"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "requi... | {"contract" : "0xb69096a89389638518725adfcf279f3f82efa2de", "tool" : "manticore", "start" : 1564056572.9853983, "end" : 1564058375.22713, "duration" : 1802.2417316436768, "analysis" : [[], []]} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["contract", "tool", "start", "end", "duration", "ana... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"vendor": {"type": "array", "items": {"type": "string"}}, "application": {"type": "array", "items": {"type": "string"}}}, "required": ["vendor", "application"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vendor" : ["app/components/angular/angular.js", "app/components/angular-route/angular-route.js"], "application" : ["app/js/angular-velocity.js", "app/js/directives/velocity-group.js", "app/js/directives/velocity.js", "app/js/directives/velocity-toggle.js"]} | json_instruct | {"type": "object", "properties": {"vendor": {"type": "array", "items": {"type": "string"}}, "application": {"type": "array", "items": {"type": "string"}}}, "required": ["vendor", "application"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty... | {"name" : "@dolittle/boilerplates.veracity.bounded-context.csharp", "version" : "3.1.3", "description" : "Standard veracity bounded context boilerPlates", "repository" : {"type" : "git", "url" : "git+https://github.com/dolittle-boilerplates/Veracity.CSharp.BoundedContext.git"}, "keywords" : ["dolittle", "tooling", "boi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}... |
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" : [[[-121.292061, 38.652681], [-121.272409, 38.652816], [-121.27262, 38.647609], [-121.271943, 38.645325], [-121.27262, 38.642462], [-121.27096, 38.636899], [-121.268985, 38.633388], [-121.28606, 38.620604], [-121.289612, 38.6... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "depende... | {"name" : "material-icon-font", "version" : "0.1.0", "description" : "create Truetype fonts of Material Design SVGs", "main" : "makeMaterial.js", "directories" : {"lib" : "lib"}, "dependencies" : {"cheerio" : "^1.0.0-rc.2", "command-line-args" : "^5.0.2", "command-line-usage" : "^5.0.5", "file-system" : "^2.2.2", "svg2... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "dependencies": {"type": "object", "properties": {"cheerio": {"ty... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"VisitOccurrence": {"type": "object", "properties": {"visit_start_date": {"type": "string"}, "visit_end_datetime": {"type": "string"}, "care_site_id": {"type": "number"}, "visit_type_concept_id": {"type": "number"}, "visit_end_... | {"VisitOccurrence" : {"visit_start_date" : "2009-07-04", "visit_end_datetime" : "2009-07-04T17:50:00-04:00", "care_site_id" : 2534455697.0, "visit_type_concept_id" : 44818520.0, "visit_end_date" : "2009-07-04", "visit_concept_id" : 9202, "visit_occurrence_id" : 3072332577.0, "visit_start_datetime" : "2009-07-04T17:20:0... | json_instruct | {"type": "object", "properties": {"VisitOccurrence": {"type": "object", "properties": {"visit_start_date": {"type": "string"}, "visit_end_datetime": {"type": "string"}, "care_site_id": {"type": "number"}, "visit_type_concept_id": {"type": "number"}, "visit_end_date": {"type": "string"}, "visit_concept_id": {"type": "in... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "word": {"type": "string"}, "wordOptions": {"type": "array", "items": {"type": "string"}}, "audioPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "word", "wo... | {"id" : 6, "word" : "bail", "wordOptions" : ["bail", "bile"], "audioPaths" : ["assets/audio/03-bail-0.m4a"]} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "word": {"type": "string"}, "wordOptions": {"type": "array", "items": {"type": "string"}}, "audioPaths": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "word", "wordOptions", "audioPaths"], "$schema": "http://json-schema.org/draft-07/sche... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"$schema": {"type": "string"}, "dest": {"type": "string"}, "deleteDestPath": {"type": "boolean"}, "lib": {"type": "object", "properties": {"entryFile": {"type": "string"}}, "required": ["entryFile"]}, "whitelistedN... | {"$schema" : "../../node_modules/ng-packagr/ng-package.schema.json", "dest" : "../../dist/@rxweb/ngx-translate-extension", "deleteDestPath" : true, "lib" : {"entryFile" : "index.ts"}, "whitelistedNonPeerDependencies" : ["@rxweb/translate", "@ngx-translate/core"]} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "dest": {"type": "string"}, "deleteDestPath": {"type": "boolean"}, "lib": {"type": "object", "properties": {"entryFile": {"type": "string"}}, "required": ["entryFile"]}, "whitelistedNonPeerDependencies": {"type": "array", "items": {"type": "string"}}}, "r... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-0... | {"id" : "010300030501", "variable1" : 0.2578, "variable2" : 1.2143, "variable3" : "B"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"from": {"type": "integer"}, "to": {"type": "integer"}, "transactionData": {"type": "array", "items": {"type": "o... | {"success" : true, "code" : "SUCCESS", "data" : {"from" : 1577817000000, "to" : 1585333800000, "transactionData" : [{"name" : "Merchant payments", "paymentInstruments" : [{"type" : "TOTAL", "count" : 100337738, "amount" : 35200130304.82776}]}, {"name" : "Peer-to-peer payments", "paymentInstruments" : [{"type" : "TOTAL"... | json_instruct | {"type": "object", "properties": {"success": {"type": "boolean"}, "code": {"type": "string"}, "data": {"type": "object", "properties": {"from": {"type": "integer"}, "to": {"type": "integer"}, "transactionData": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "paymentInstruments"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"repository": {"type": "string"}, "maintainer": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "developers": {"type": "array", "items": {"type": "string... | {"repository" : "https://github.com/forensictool/forensictool-plugin-detectubuntu.git", "maintainer" : {"name" : "Evgenii Sopov", "email" : "mrseakg@gmail.com"}, "developers" : ["Evgenii Sopov <mrseakg@gmail.com>"], "build" : [{"type" : "lib", "description" : "Plugin detection os of Ubuntu (15.04 | 15.10) for forensict... | json_instruct | {"type": "object", "properties": {"repository": {"type": "string"}, "maintainer": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "developers": {"type": "array", "items": {"type": "string"}}, "build": {"type": "array", "items": {"type": "object... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"description": {"type": "string"}, "usage": {"type": "string"}, "usageHelp": {"type": "string"}, "noOutput": {"type": "string"}}, "required": ["description", "usage", "usageHelp", "noOutput"], "$schema": "http... | {"description" : "Ejecuta un comando en el servidor.", "usage" : "{emotes.use} | Usuario {prefix}execute <texto>", "usageHelp" : "execute <texto>", "noOutput" : "{emotes.success} | Ejecutado, sin salida dada"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "usage": {"type": "string"}, "usageHelp": {"type": "string"}, "noOutput": {"type": "string"}}, "required": ["description", "usage", "usageHelp", "noOutput"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {}}, "t... | {"directions" : ["Preheat oven to 350 degrees F (175 degrees C). Line two 12 cup muffin pans with paper liners. Sift together the flour, baking soda, cocoa powder and salt. Set aside.", "In a large bowl, whisk together 1 cup sugar, oil and water until blended. Stir in the vinegar and vanilla. Beat in the flour mixtu... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"t... | {"name" : "nuwira/laravel-sms-notification", "description" : "Nuwira SMS Notifications for Laravel", "homepage" : "https://github.com/Nuwira/laravel-sms-notification", "license" : "MIT", "authors" : [{"name" : "Muhammad Zamroni", "email" : "zam@nuwira.co.id", "homepage" : "https://matriphe.com", "role" : "Developer"}],... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"},... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.