input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"MenyNyBehandlingIndex.NyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.ModalDescription": {"type": "string"}, "MenyNyBehandlingIndex.OpprettRevurdering": {"type": "string"}, "MenyNyBehandlingIndex... | {"MenyNyBehandlingIndex.NyForstegangsbehandling" : "Opprett ny behandling", "MenyNyBehandlingIndex.ModalDescription" : "Ny behandling", "MenyNyBehandlingIndex.OpprettRevurdering" : "Revurderingsbehandling", "MenyNyBehandlingIndex.OpprettUnntak" : "Unntakssbehandling", "MenyNyBehandlingIndex.OpprettNyForstegangsbehandli... | json_instruct | {"type": "object", "properties": {"MenyNyBehandlingIndex.NyForstegangsbehandling": {"type": "string"}, "MenyNyBehandlingIndex.ModalDescription": {"type": "string"}, "MenyNyBehandlingIndex.OpprettRevurdering": {"type": "string"}, "MenyNyBehandlingIndex.OpprettUnntak": {"type": "string"}, "MenyNyBehandlingIndex.OpprettNy... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"copyright" : "Goodybag, Inc.", "url" : "http://www.goodybag.com", "email" : "engineering@goodybag.com", "format" : "txt"} | json_instruct | {"type": "object", "properties": {"copyright": {"type": "string"}, "url": {"type": "string"}, "email": {"type": "string"}, "format": {"type": "string"}}, "required": ["copyright", "url", "email", "format"], "$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"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "aut... | {"name" : "NAKPlaybackIndicatorView", "version" : "0.1.0", "summary" : "A view that mimics the music playback indicator in the Music.app on iOS 7.", "description" : "A view that mimics the music playback indicator in the Music.app on iOS 7.\nIt has three vertical bars and they oscillate randomly.", "homepage" : "https:... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Yuji Nakayama": {... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["descri... | {"latest_version" : ["0.7.dev52"], "meta" : {"description" : "data archiving library", "homepage" : "https://github.com/stackforge/stacktach-shoebox", "license" : "Apache-2"}, "versions" : {"0.2.dev46" : {"sha256" : "6e6c5d9109e3439dca90682abc21d189682edc67b8d91eb49674366579bce455", "url" : "https://files.pythonhosted.... | json_instruct | {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin... | {"schema_version" : "1.2.0", "id" : "GHSA-qq7v-ccww-8wh3", "modified" : "2022-02-17T00:00:27Z", "published" : "2022-02-17T00:00:27Z", "aliases" : ["CVE-2021-43302"], "details" : "Read out-of-bounds in PJSUA API when calling pjsua_recorder_create. An attacker-controlled 'filename' argument may cause an out-of-bounds rea... | 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... |
Based on the schema below, produce a valid JSON object:
{"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/... | {"variants" : {"" : {"model" : "colorbuild:block/pink_stone"}}} | 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 an example JSON object that satisfies this schema:
{"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"jodit.min.css" : "sha256-n3V5SOJprGzJcMNZEhLIh8dvoVYoCLa0TJEt6oh5quI=", "jodit.min.js" : "sha256-yh+Tcrk9WUKZbmmc7Al2SgjTJpUpI6Z1jQIiY4ZnHSE="} | json_instruct | {"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"mode": {"type": "string"}, "config": {"type": "object", "properties": {"item_list": {"type": "object", "properties": {"item": {"type": "object", "properties": {"status": {"type": "boolean"}}, "required": ["status"]}... | {"mode" : "item_list", "config" : {"item_list" : {"item" : {"status" : true}}}, "user" : {"id" : "walterwhite", "firstname" : "walter", "lastname" : "white"}} | json_instruct | {"type": "object", "properties": {"mode": {"type": "string"}, "config": {"type": "object", "properties": {"item_list": {"type": "object", "properties": {"item": {"type": "object", "properties": {"status": {"type": "boolean"}}, "required": ["status"]}}, "required": ["item"]}}, "required": ["item_list"]}, "user": {"type"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "numbe... | {"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [0.480412, 0.39715, 0.679012, 0.480832, 0.429175, 0.848572, 0.395602, 0.444898, 0.865301, 0.382269, 0.508263, 0.870228, 0.424243, 0.428925, 0.76919, 0.523584, 0.428921, 0.801278, 0.60748, 0.476393, 0.777048, 0.537371, 0.436938, 0.62727, 0.508239, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"... | {"id" : 47902, "info" : {"name" : "The Summer Set Everything's Fine", "description" : "The Summer Set Everything's Fine", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2011-05-15T15:10:17.000Z", "updatedAt" : "2011-05-15T15:10:17.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema... | {"commands" : ["hit yellow key", "attack yellow key", "strike yellow key"], "response_type" : "display", "response" : "You hit the Yellow Key. But that didn't do anything."} | json_instruct | {"type": "object", "properties": {"commands": {"type": "array", "items": {"type": "string"}}, "response_type": {"type": "string"}, "response": {"type": "string"}}, "required": ["commands", "response_type", "response"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"meteor_status_connected": {"type": "string"}, "meteor_status_connecting": {"type": "string"}, "meteor_status_failed": {"type": "string"}, "meteor_status_waiting": {"type": "string"}, "meteor_status_offline": {"type":... | {"meteor_status_connected" : "Conectado", "meteor_status_connecting" : "Conectando...", "meteor_status_failed" : "A conex\u00e3o com o servidor falhou", "meteor_status_waiting" : "Aguardando pela conex\u00e3o com o servidor,", "meteor_status_offline" : "Modo offline.", "meteor_status_reconnect_in" : "tentando novamente... | json_instruct | {"type": "object", "properties": {"meteor_status_connected": {"type": "string"}, "meteor_status_connecting": {"type": "string"}, "meteor_status_failed": {"type": "string"}, "meteor_status_waiting": {"type": "string"}, "meteor_status_offline": {"type": "string"}, "meteor_status_reconnect_in": {"type": "string"}, "meteor... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, ... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Barayong, Ligao City, Albay, Bicol Region (Region V), PH", "locale" : "ph.bicol-region-region-v.albay.ligao-city.barayong", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "2", "region_refere... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"typ... | {"cam/image_array" : "6897_cam-image_array_.jpg", "user/angle" : 0.256, "user/throttle" : 0.778, "user/mode" : "user", "pos/pos_x" : 44.55238, "pos/pos_y" : 0.5556784, "pos/pos_z" : 47.98263, "pos/speed" : 12.18503, "pos/cte" : 0.0, "milliseconds" : 368454} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema":... | {"Time" : "2021-09-05T18:00:00Z", "Temp" : 25.4, "RelHum" : 66, "WindSpeed" : 3.5, "WindDir" : 330} | json_instruct | {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string... | {"title" : "Linear support vector machines via dual cached loops.", "fields" : ["on the fly", "coordinate descent", "cache", "trade off", "thread"], "abstract" : "Modern computer hardware offers an elaborate hierarchy of storage subsystems with different speeds, capacities, and costs associated with them. Furthermore, ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"--port": {"type": "integer"}, "*.js": {"type": "string"}, "*.html": {"type": "string"}}, "required": ["--port", "*.js", "*.html"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"--port" : 8888, "*.js" : "@echo 'muted'", "*.html" : "echo 'muted'"} | json_instruct | {"type": "object", "properties": {"--port": {"type": "integer"}, "*.js": {"type": "string"}, "*.html": {"type": "string"}}, "required": ["--port", "*.js", "*.html"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string... | {"issuer_ca_id" : 16418, "issuer_name" : "C=US, O=Let's Encrypt, CN=Let's Encrypt Authority X3", "name_value" : "jupyter.104.155.63.1.nip.io", "min_cert_id" : 1037256408, "min_entry_timestamp" : "2018-12-17T20:34:06.36", "not_before" : "2018-12-17T19:34:05", "not_after" : "2019-03-17T19:34:05"} | json_instruct | {"type": "object", "properties": {"issuer_ca_id": {"type": "integer"}, "issuer_name": {"type": "string"}, "name_value": {"type": "string"}, "min_cert_id": {"type": "integer"}, "min_entry_timestamp": {"type": "string"}, "not_before": {"type": "string"}, "not_after": {"type": "string"}}, "required": ["issuer_ca_id", "iss... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "reposit... | {"name" : "react-native-progresshud", "version" : "0.0.3", "description" : "react-native progress hud", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/follyxing/react-native-progresshud.git"}, "keywords" : ["reac... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "strin... | {"id" : 166702, "name" : "SNCB NMBS 2020 Fix", "description" : "The sidebar doesn't disappear anymore and has a scroller for little screens.\r\nThe topbar is now full width and is transparent.", "user" : {"id" : 754688, "name" : "Axel ANDA (ThaiXel)", "email" : "redacted", "paypal_email" : null, "homepage" : null, "abo... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about... |
Construct a JSON document that adheres to this schema specification:
{"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" : "JARINE", "frequency" : 1, "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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"siteName": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "title": {"type": "string"}}, "required": ["href",... | {"siteName" : "Name of Website", "description" : "Description of website", "links" : [{"href" : "/html-page", "title" : "HTML Page"}, {"href" : "https://example.com/", "title" : "External Page"}], "root" : ""} | json_instruct | {"type": "object", "properties": {"siteName": {"type": "string"}, "description": {"type": "string"}, "links": {"type": "array", "items": {"type": "object", "properties": {"href": {"type": "string"}, "title": {"type": "string"}}, "required": ["href", "title"]}}, "root": {"type": "string"}}, "required": ["siteName", "des... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_tok... | {"access_token" : "ya29.a0ARrdaM8in08Oa6WV1gJoqR9WlaU0A3X11Rk9665AexZd-4fcD1yiT4ClyrLIj45Auq5sWhxqFKKXVL6YYRZjYwp4isMuId2PDWZ-U31hWIelrhF9NgvjFr9-sv7b9VEhOK7P9w1SSq1zt-8stfXMg7S-14Nc", "refresh_token" : "1//09OZUHImMV67CCgYIARAAGAkSNwF-L9IrRiUK_OZKoPUcBF4Pppb4sm-QLTkcWUGwQZ_vFQcdNhy-3_6mgFir5eIDx8Ussyy5Njg", "scope" : ... | json_instruct | {"type": "object", "properties": {"access_token": {"type": "string"}, "refresh_token": {"type": "string"}, "scope": {"type": "string"}, "token_type": {"type": "string"}, "expiry_date": {"type": "integer"}}, "required": ["access_token", "refresh_token", "scope", "token_type", "expiry_date"], "$schema": "http://json-sche... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "ophidion", "definition" : "The typical genus of ophidioid fishes. [Written also Ophidium.] See Illust. under Ophidioid."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "450323206200", "text" : "\u5170\u7530\u6751\u59d4\u4f1a"}, {"id" : "450323206201", "text" : "\u4e24\u5408\u6751\u59d4\u4f1a"}, {"id" : "450323206202", "text" : "\u5357\u5773\u6751\u59d4\u4f1a"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"jodit.css": {"type": "string"}, "jodit.es2018.css": {"type": "string"}, "jodit.es2018.js": {"type": "string"}, "jodit.es2018.min.css": {"type": "string"}, "jodit.es2018.min.js": {"type": "string"}, "jodit.js": {"type... | {"jodit.css" : "sha512-MWykLCXvyOTrm37XwCSRUXA2MfNxzMZn6UCVKpbJf1TWnmQqdAkLu6/CF4b4vGulHPdu41LvM0RPHpxi+nTRUw==", "jodit.es2018.css" : "sha512-oiXA2+0JXnkN6+/0hZIghaC5cTmKH7nf7BgOQrXcX5taliZ4XhsrYZKQMcHax+CUnnOAxTUpIsUSrJhiZbVooA==", "jodit.es2018.js" : "sha512-oF+zzIQXB7enPFkznFgEoUcWoDFTXIAla/Li/FUMlDP0H9H0DR7ywnYP+w... | json_instruct | {"type": "object", "properties": {"jodit.css": {"type": "string"}, "jodit.es2018.css": {"type": "string"}, "jodit.es2018.js": {"type": "string"}, "jodit.es2018.min.css": {"type": "string"}, "jodit.es2018.min.js": {"type": "string"}, "jodit.js": {"type": "string"}, "jodit.min.css": {"type": "string"}, "jodit.min.js": {"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900097812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097813": {"type": "object", "properties": {"nam... | {"900097812" : {"nama" : "TPS 1", "dapil" : [1602, 11605, 2160102]}, "900097813" : {"nama" : "TPS 2", "dapil" : [1602, 11605, 2160102]}, "900097814" : {"nama" : "TPS 3", "dapil" : [1602, 11605, 2160102]}, "900097815" : {"nama" : "TPS 4", "dapil" : [1602, 11605, 2160102]}, "900097816" : {"nama" : "TPS 5", "dapil" : [160... | json_instruct | {"type": "object", "properties": {"900097812": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900097813": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"CIDADE" : "Col\u00f4nia Leopoldina", "IBGE" : "2702108", "ESTADO" : "Alagoas", "ID" : "27"} | json_instruct | {"type": "object", "properties": {"CIDADE": {"type": "string"}, "IBGE": {"type": "string"}, "ESTADO": {"type": "string"}, "ID": {"type": "string"}}, "required": ["CIDADE", "IBGE", "ESTADO", "ID"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"files.simpleDialog.enable": {"type": "boolean"}, "window.dialogStyle": {"type": "string"}}, "required": ["files.simpleDialog.enable", "window.dialogStyle"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files.simpleDialog.enable" : true, "window.dialogStyle" : "custom"} | json_instruct | {"type": "object", "properties": {"files.simpleDialog.enable": {"type": "boolean"}, "window.dialogStyle": {"type": "string"}}, "required": ["files.simpleDialog.enable", "window.dialogStyle"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}, "details": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "path": {"type": "stri... | {"name" : "Root", "format" : "Root", "path" : ".", "details" : [{"description" : "Current kit", "path" : "Current"}], "children" : ["$resource:Logical/Setup.json", "$resource:Logical/Kits.json", "$resource:Logical/Triggers.json"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "format": {"type": "string"}, "path": {"type": "string"}, "details": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "path": {"type": "string"}}, "required": ["description", "path"]}}, "children": {"type": "arr... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "PythonApplication1", "description" : "\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u7d4c\u9a13\u8005\u306e\u305f\u3081\u306ePython\u6700\u901f\u5165\u9580\u3000\u306e\u5199\u7d4c", "license" : null, "starNum" : 0, "folkNum" : 0, "watchNum" : 0, "topic" : [], "contributors" : ["yadac"], "packages" : [""]} | 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": {}}, "contributors": {"type": "array", "items": {"type": "str... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"copyReadmeToDocfxIndex": {"type": "boolean"}, "disableDefaultFilter": {"type": "boolean"}, "disableGitFeatures": {"type": "boolean"}, "copyFolderToDocument": {"type": "array", "items": {}}}, "required": ["copyReadmeToDocfxIndex"... | {"copyReadmeToDocfxIndex" : true, "disableDefaultFilter" : false, "disableGitFeatures" : false, "copyFolderToDocument" : []} | json_instruct | {"type": "object", "properties": {"copyReadmeToDocfxIndex": {"type": "boolean"}, "disableDefaultFilter": {"type": "boolean"}, "disableGitFeatures": {"type": "boolean"}, "copyFolderToDocument": {"type": "array", "items": {}}}, "required": ["copyReadmeToDocfxIndex", "disableDefaultFilter", "disableGitFeatures", "copyFold... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "... | [{"id" : 16382, "title" : "Ten Billion Tomorrows: How Science Fiction Technology Became Reality", "year" : 2015, "type" : "novel", "imageName" : "BC_tenbilli.jpg", "nominations" : 0, "wins" : -1}, {"id" : 16383, "title" : "How To Build a Time Machine: The Real Science of Time Travel", "year" : 2011, "type" : "novel",... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "im... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://jso... | {"_id" : "6f5d82b4", "name" : "Citrus leaf blotch virus", "abbreviation" : "CLBV", "schema" : []} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "name": {"type": "string"}, "abbreviation": {"type": "string"}, "schema": {"type": "array", "items": {}}}, "required": ["_id", "name", "abbreviation", "schema"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": ... | {"image" : "https://ipfs.infura.io/ipfs/QmTHfdRQURrMb8hZPyJgFK6etAZAK1bUkqy3TpQuX91pKD", "attributes" : [{"trait_type" : "Type", "value" : "Wolf"}, {"trait_type" : "Gender", "value" : "Male"}, {"trait_type" : "Turtleneck", "value" : "High-Neck"}, {"trait_type" : "Turtleneck Color", "value" : "Light Blue"}], "code" : "w... | json_instruct | {"type": "object", "properties": {"image": {"type": "string"}, "attributes": {"type": "array", "items": {"type": "object", "properties": {"trait_type": {"type": "string"}, "value": {"type": "string"}}, "required": ["trait_type", "value"]}}, "code": {"type": "string"}, "hash": {"type": "string"}}, "required": ["image", ... |
Create a JSON structure that matches this schema definition:
{"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... | {"id" : 404418795, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "1849d6472c668ab2a34fe12b04607e6f", "wof:id" : 404418795, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.25798314300385, 50.93230081484207, 2.31894945115085, 50.97574594048776... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNum... | {"id" : 1972, "surahNumber" : "016", "ayatNumber" : "071", "arabic" : "\u0648\u064e\u0627\u0644\u0644\u0651\u064e\u0647\u064f \u0641\u064e\u0636\u0651\u064e\u0644\u064e \u0628\u064e\u0639\u0652\u0636\u064e\u0643\u064f\u0645\u0652 \u0639\u064e\u0644\u064e\u0649\u0670 \u0628\u064e\u0639\u0652\u0636\u064d \u0641\u0650\u06... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "surahNumber": {"type": "string"}, "ayatNumber": {"type": "string"}, "arabic": {"type": "string"}, "english": {"type": "string"}, "bengali": {"type": "string"}}, "required": ["id", "surahNumber", "ayatNumber", "arabic", "english", "bengali"], "$schema": "http... |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1888, 7], [1889, 10], [1890, 13], [1891, 13], [1892, 6], [1893, 11], [1894, 14], [1895, 18], [1896, 19], [1897, 24], [1898, 26], [1899, 14], [1900, 20], [1901, 26], [1902, 18], [1903, 26], [1904, 38], [1905, 35], [1906, 27], [1907, 42], [1908, 36], [1909, 46], [1910, 55], [1911, 66], [1912, 86], [1913, 117], [1914, 1... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Authority": {"type": "string"}, "ClientId": {"type": "string"}, "ValidateAuthority": {"type": "boolean"}}, "required": ["Authority", "ClientId", "ValidateAuthority"]}, "UrlShortenerSe... | {"AzureAd" : {"Authority" : "https://login.microsoftonline.com/3fdcf61b-cd8c-4669-a094-07664fdd9987", "ClientId" : "96d174b6-5f30-4bb3-985f-5c15ad0b2624", "ValidateAuthority" : true}, "UrlShortenerSecuredService" : {"Endpoint" : "https://shortenertoolszdbf6.azurewebsites.net/"}, "DetailedErrors" : true} | json_instruct | {"type": "object", "properties": {"AzureAd": {"type": "object", "properties": {"Authority": {"type": "string"}, "ClientId": {"type": "string"}, "ValidateAuthority": {"type": "boolean"}}, "required": ["Authority", "ClientId", "ValidateAuthority"]}, "UrlShortenerSecuredService": {"type": "object", "properties": {"Endpoin... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "1104032003", "district_id" : "1104032", "name" : "LAWE SUMUR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_provinsi": {"type": "string"}, "name": {"type": "strin... | {"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "5101", "id_provinsi" : "51", "name" : "KAB. JEMBRANA"}, {"id" : "5102", "id_provinsi" : "51", "name" : "KAB. TABANAN"}, {"id" : "5103", "id_provinsi" : "51", "name" : "KAB. BADUNG"}, {"id" : "5104", "id_provinsi" : "51", "name" : "KAB. GIAN... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_provinsi": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_provinsi", "name"]}}}, "required": ["code",... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Test extension with no imports", "version" : "1.0.0", "manifest_version" : 2} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}}, "required": ["name", "version", "manifest_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http:/... | [{"name" : "GHEORGHITA", "frequency" : 1112, "males" : "54.94604316546763 %", "females" : "45.05395683453237 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "3010a2645badba52f10fe1a710000af4299a9154"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "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" : 101896123, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "3cf351f6367e956bd2e2d31a2452bb37", "wof:id" : 101896123, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [1.83671905762304, 44.64504589696298, 1.84903327213516, 44.65290892230564... | 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": ["... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "... | {"name" : "backend_prova", "version" : "1.0.0", "description" : "a test for my backend application", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "serve" : "nodemon index.js"}, "author" : "yurimonti", "license" : "ISC", "devDependencies" : {"nodemon" : "^2.0.15"}, "dependenc... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "serve": {"type": "string"}}, "required": ["test", "serve"]}, "author": {"type": "string"},... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "dimension": {"type": "integer"}, "space": {"type": "string"}, "sizes": {"type": "array", "items": {"type": "integer"}}, "space directions": {"type": "array", "items": {"type": "array", "items": {"ty... | {"type" : "float", "dimension" : 3, "space" : "left-posterior-superior", "sizes" : [84, 66, 37], "space directions" : [[0.008570277388214307, 0.5468078419065413, 8.17561098828047e-10], [-0.011444065246595705, 0.00017936532812560496, 0.5467552165491526], [-1.4661653784986433, 0.022979634422677916, -0.030695661794436006]... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "dimension": {"type": "integer"}, "space": {"type": "string"}, "sizes": {"type": "array", "items": {"type": "integer"}}, "space directions": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "kinds": {"type": "array", "items": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema":... | {"0-17" : "14", "18-44" : "747", "45-64" : "4304", "65-74" : "4748", "75+" : "9392"} | json_instruct | {"type": "object", "properties": {"0-17": {"type": "string"}, "18-44": {"type": "string"}, "45-64": {"type": "string"}, "65-74": {"type": "string"}, "75+": {"type": "string"}}, "required": ["0-17", "18-44", "45-64", "65-74", "75+"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"foreign_ids": {"type": "array", "items": {}}, "itemskills": {"type": "array", "items": {"type": "object", "properties": {"ChargeTime": {"type": "number"}, "ChargeType": {"type": "integer"}, "Cooldown": {"type":... | {"foreign_ids" : [], "itemskills" : [{"ChargeTime" : 1.5, "ChargeType" : 2, "Cooldown" : 5, "Costs" : [{"CostTarget" : 4112, "CostType" : 2, "CostVal" : 1}], "Functions" : [{"AttackType" : 0, "AttackVal" : 0, "BuffID" : 4001, "Duration" : 946728000, "Odds" : 100}], "RangeType" : 0, "RangeVal1" : 1000, "RangeVal2" : 300... | json_instruct | {"type": "object", "properties": {"foreign_ids": {"type": "array", "items": {}}, "itemskills": {"type": "array", "items": {"type": "object", "properties": {"ChargeTime": {"type": "number"}, "ChargeType": {"type": "integer"}, "Cooldown": {"type": "integer"}, "Costs": {"type": "array", "items": {"type": "object", "proper... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"kiraApp": {"type": "object", "properties": {"categories": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLa... | {"kiraApp" : {"categories" : {"home" : {"title" : "Categories", "createLabel" : "Maak een nieuwe Categories", "createOrEditLabel" : "Maak of wijzig een Categories", "notFound" : "No Categories found"}, "created" : "A new Categories is created with identifier {{ param }}", "updated" : "A Categories is updated with ident... | json_instruct | {"type": "object", "properties": {"kiraApp": {"type": "object", "properties": {"categories": {"type": "object", "properties": {"home": {"type": "object", "properties": {"title": {"type": "string"}, "createLabel": {"type": "string"}, "createOrEditLabel": {"type": "string"}, "notFound": {"type": "string"}}, "required": [... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"kl_train": {"type": "number"}, "kl_targ": {"type": "number"}, "time_train": {"type": "number"}, "time_est": {"type": "number"}}, "required": ["kl_train", "kl_targ", "time_train", "time_est"], "$schema": "http://json-schema.org... | {"kl_train" : 0.006574598122914521, "kl_targ" : 0.006447610358653179, "time_train" : 3.232491479, "time_est" : 0.8428662270000018} | json_instruct | {"type": "object", "properties": {"kl_train": {"type": "number"}, "kl_targ": {"type": "number"}, "time_train": {"type": "number"}, "time_est": {"type": "number"}}, "required": ["kl_train", "kl_targ", "time_train", "time_est"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://js... | {"id" : 2227, "cites" : 3, "cited_by" : 18, "reference" : ["(January), pp. 41-50. Denison, Edward F. (1957). Theoretical Aspects of Quality Change, Capital Consumption, and Net Capital Formation, ~ Conce~ts~ Measurement and Contro11in~ Factor~, Studies in Income and Wealth, vol. 19. Princeton: Princeton University Pres... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http:/... | [{"name" : "SKYLEN", "frequency" : 148, "males" : "41.21621621621622 %", "females" : "58.78378378378378 %"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["memoize-cache"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"debug": {"type": "string"}, "test": {"type": "string"}}, "req... | {"name" : "botkit-twilio-ipm-example", "version" : "1.0.0", "description" : "An example Twilio IP Messaging node.js chatbot built with Botkit and integrated with Dialog Analytics", "main" : "bot.js", "scripts" : {"debug" : "node debug bot.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Dialog ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"debug": {"type": "string"}, "test": {"type": "string"}}, "required": ["debug", "test"]}, "author": {"type": "string"},... |
Create a JSON structure that matches this schema definition:
{"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/dr... | {"word" : "Whoop", "definitions" : ["A loud cry of joy or excitement.", "A long rasping indrawn breath, characteristic of whooping cough.", "(in motorcycling or cycling) a bump or dip on an off-road racetrack or rally course."], "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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"product_added_into_your_favorites": {"type": "string"}, "product_couldnt_be_added_into_your_favorites": {"type": "string"}, "product_removed_from_your_favorites": {"type": "string"}, "product_couldnt_be_remov... | {"product_added_into_your_favorites" : "Product was added into your favorites!", "product_couldnt_be_added_into_your_favorites" : "Product couldn't be added into your favorites!", "product_removed_from_your_favorites" : "Product was removed from your favorites!", "product_couldnt_be_removed_from_your_favorites" : "Prod... | json_instruct | {"type": "object", "properties": {"product_added_into_your_favorites": {"type": "string"}, "product_couldnt_be_added_into_your_favorites": {"type": "string"}, "product_removed_from_your_favorites": {"type": "string"}, "product_couldnt_be_removed_from_your_favorites": {"type": "string"}, "product_removed_from_your_cart"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t... | {"name" : "categorize", "version" : "1.0.0", "description" : "", "main" : "main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "MIT", "dependencies" : {"axios" : "^0.18.0", "bytewise" : "^1.1.0", "charwise" : "^3.0.1", "compression" : "^1.7.3", "cors" : "^2.8.4", "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "... | {"name" : "Yae Miko \u2013 Fuchs im Traum", "description" : "Ein Motiv f\u00fcr Namensk\u00e4rtchen.\nWo in aller Welt k\u00f6nnte man eigentlich Yae Mikos Fuchsgestalt sehen? Vielleicht nur im Traum.", "sortorder" : 210112, "source" : ["Ab Freundschaftsstufe 10 mit Yae Miko zu erhalten"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "sortorder": {"type": "integer"}, "source": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "sortorder", "source"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"css/pushy.css": {"type": "string"}, "css/pushy.min.css": {"type": "string"}, "js/pushy.js": {"type": "string"}, "js/pushy.min.js": {"type": "string"}}, "required": ["css/pushy.css", "css/pushy.min.css", "js/pushy.js", "js/push... | {"css/pushy.css" : "sha256-MTG9Xb1DiTgHZRn/48UWkFX7hGQy8fXKU9vR1x8BTG8=", "css/pushy.min.css" : "sha256-40eG3Vg8mGUEtZ/3UkVse9F0WmzAsW1P8RtWvHjBqrM=", "js/pushy.js" : "sha256-sLygMHL8KXYDL9y/wWauNAR4+1PIg7S8wNrk3ji/PpE=", "js/pushy.min.js" : "sha256-Jd95WHwNnGNIGO6Jcv72adFYcMaeWp/JYghTDmSTqak="} | json_instruct | {"type": "object", "properties": {"css/pushy.css": {"type": "string"}, "css/pushy.min.css": {"type": "string"}, "js/pushy.js": {"type": "string"}, "js/pushy.min.js": {"type": "string"}}, "required": ["css/pushy.css", "css/pushy.min.css", "js/pushy.js", "js/pushy.min.js"], "$schema": "http://json-schema.org/draft-07/sch... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"TestKafkaSinkStress/.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/as... | {"TestKafkaSinkStress/.tps" : 350, "TestKafkaSinkStress/N=10,messageSize=100.tps" : 200, "TestKafkaSinkStress/N=10,messageSize=1000.tps" : 150, "TestKafkaSinkStress/async=true.tps" : 400, "TestKafkaSinkStress/messageSize=1000.tps" : 300, "TestKafkaSinkStress/replicas=2.tps" : 400, "TestKafkaSourceStress/.tps" : 1100, "... | json_instruct | {"type": "object", "properties": {"TestKafkaSinkStress/.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=100.tps": {"type": "integer"}, "TestKafkaSinkStress/N=10,messageSize=1000.tps": {"type": "integer"}, "TestKafkaSinkStress/async=true.tps": {"type": "integer"}, "TestKafkaSinkStress/messageSize=1000.t... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type":... | [{"fees" : -2500000000, "ts" : "1534819108", "txid" : "9ace32f8dfe1478c5d6c220c6a8940d5a1b14096efa2c92e39c58557e4fe1cfb", "block" : 1416970, "in" : [{"coinbase" : "030a9f1504247b7b5b084400eb6f00000000052f6d70682f"}], "sent" : 2500000000, "out" : [{"value" : 0}, {"addr" : "MJpTHvn5TSgzr6mNsdEu28zMnQX232jr9q", "value" : ... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"fees": {"type": "integer"}, "ts": {"type": "string"}, "txid": {"type": "string"}, "block": {"type": "integer"}, "in": {"type": "array", "items": {"type": "object", "properties": {"coinbase": {"type": "string"}}, "required": ["coinbase"]}}, "sent": {"type": "... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"... | {"name" : "luatdolphin/vietnamese", "type" : "flarum-extension", "description" : "Vietnamese language pack for Flarum.", "homepage" : "https://github.com/maelsoucaze/flarum", "keywords" : ["Vietnamese", "language", "locale", "localization", "translation"], "license" : "MIT", "authors" : [{"name" : "Luat Dolphin", "emai... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"typ... | {"info" : {"_postman_id" : "cdc867c1-8321-441b-b902-8d0b9d784f7a", "name" : "BR TRANSPARENTE", "schema" : "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"}, "item" : [{"name" : "Deputados", "item" : [{"name" : "/id/despesas", "request" : {"method" : "GET", "header" : [], "url" : {"raw" : "{{url}}/... | json_instruct | {"type": "object", "properties": {"info": {"type": "object", "properties": {"_postman_id": {"type": "string"}, "name": {"type": "string"}, "schema": {"type": "string"}}, "required": ["_postman_id", "name", "schema"]}, "item": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "item... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "ti... | {"body" : "This PR also slightly changes the behavior in ci_rebuild().\r\nWe now still attempt to submit `spack install` results to CDash\r\neven if the initial registration failed due to connection issues.\r\n\r\nThis commit follows in the spirit of #24299. We do not want `spack install`\r\nto exit with a non-zero sta... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"catch-2.10.2.tar.gz": {"type": "string"}}, "required": ["catch-2.10.2.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema... | {"Signatures" : {"catch-2.10.2.tar.gz" : "79aa46ee6c5a87bc5306bfffc6ecde6a1ad6327715b208ee2e846873f282a494"}} | json_instruct | {"type": "object", "properties": {"Signatures": {"type": "object", "properties": {"catch-2.10.2.tar.gz": {"type": "string"}}, "required": ["catch-2.10.2.tar.gz"]}}, "required": ["Signatures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id_8847": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8847"], "$schema": "http://json-schema.org/draft-07/s... | {"id_8847" : {"publicdate" : "2015-07-17 01:00:44", "downloads" : 0}} | json_instruct | {"type": "object", "properties": {"id_8847": {"type": "object", "properties": {"publicdate": {"type": "string"}, "downloads": {"type": "integer"}}, "required": ["publicdate", "downloads"]}}, "required": ["id_8847"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org... | [{"year" : 2004, "sex" : "F", "n" : 12, "prop" : 5.95e-06}, {"year" : 2005, "sex" : "F", "n" : 10, "prop" : 4.93e-06}, {"year" : 2006, "sex" : "F", "n" : 12, "prop" : 5.74e-06}, {"year" : 2007, "sex" : "F", "n" : 7, "prop" : 3.31e-06}, {"year" : 2008, "sex" : "F", "n" : 7, "prop" : 3.36e-06}, {"year" : 2008, "sex" : "M... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"css/fontawesome-iconpicker.css": {"type": "string"}, "css/fontawesome-iconpicker.min.css": {"type": "string"}, "js/fontawesome-iconpicker.js": {"type": "string"}, "js/fontawesome-iconpicker.min.js": {"type": "string"}}, "requi... | {"css/fontawesome-iconpicker.css" : "sha256-xuH43oz0TVSnoGyu0b+Lbc4IXgcj+1DWNkAd/MClvPo=", "css/fontawesome-iconpicker.min.css" : "sha256-kJhyJ6v3GqIHeDv1t2bWTyIPVtWHxc/2V1moXgm2qgg=", "js/fontawesome-iconpicker.js" : "sha256-KHQsHYh8IwwT9JCp/nlhfYdmmwmQzZY4S2xfuEceDf4=", "js/fontawesome-iconpicker.min.js" : "sha256-2r... | json_instruct | {"type": "object", "properties": {"css/fontawesome-iconpicker.css": {"type": "string"}, "css/fontawesome-iconpicker.min.css": {"type": "string"}, "js/fontawesome-iconpicker.js": {"type": "string"}, "js/fontawesome-iconpicker.min.js": {"type": "string"}}, "required": ["css/fontawesome-iconpicker.css", "css/fontawesome-i... |
Following the schema specification below, generate a valid JSON instance:
{"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",... | {"ast" : null, "code" : "var _jsxFileName = \"C:\\\\Users\\\\REHA SRI\\\\Desktop\\\\React\\\\hi\\\\default\\\\src\\\\components\\\\Namelist.js\";\nimport React from 'react';\n\nfunction Namelist() {\n const names = ['Bruce', 'Clark', 'Diana'];\n const nameList = names.map(name => /*#__PURE__*/React.createElement(\"h2... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"clusters": {"type": "object", "properties": {"0": {"type": "object", "properties": {"centroid": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required"... | {"clusters" : {"0" : {"centroid" : {"x" : 0.0532858, "y" : 0.0205459, "z" : 0.725955}, "model_id" : 19018}}} | json_instruct | {"type": "object", "properties": {"clusters": {"type": "object", "properties": {"0": {"type": "object", "properties": {"centroid": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}, "z": {"type": "number"}}, "required": ["x", "y", "z"]}, "model_id": {"type": "integer"}}, "required": ["c... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"immer": {"type": "string"}, "pixi.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pixi-fiber": {"type": "string"}}, "required": ["... | {"dependencies" : {"immer" : "^3.2.0", "pixi.js" : "^5.2.0", "react" : "^16.9.0", "react-dom" : "^16.9.0", "react-pixi-fiber" : "^0.9.2"}, "homepage" : "https://hibikinekage.github.io/flappy-rico", "scripts" : {"start" : "parcel index.html", "build" : "parcel build index.html --public-url '/ricopyon'", "predeploy" : "p... | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"immer": {"type": "string"}, "pixi.js": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-pixi-fiber": {"type": "string"}}, "required": ["immer", "pixi.js", "react", "react-dom", "react-pixi-fiber"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": ["postinstall"]}}, "required": ["name", "scripts"], "$schema": "http://json-schema.org/d... | {"name" : "test-1", "scripts" : {"postinstall" : "cp -R fake_node_modules/* ./node_modules/"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "scripts": {"type": "object", "properties": {"postinstall": {"type": "string"}}, "required": ["postinstall"]}}, "required": ["name", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rmse" : [27.672427825087976]} | json_instruct | {"type": "object", "properties": {"rmse": {"type": "array", "items": {"type": "number"}}}, "required": ["rmse"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}... | {"name" : "ng-text-truncate", "version" : "1.0.0", "description" : "This is a simple, but fully functional, directive for truncating text in angularjs apps", "main" : "ng-text-truncate.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}... | {"id" : 1474, "source" : "barnes", "verse_id" : 18381, "verse_count" : 1, "reference" : "37:28", "title" : "", "html" : " <p> <em>But I know </em>—The language of God. ‘I am well acquainted with all that pertains to you. You neither go out to war, nor return, nor abide in your capital without my providentia... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "source": {"type": "string"}, "verse_id": {"type": "integer"}, "verse_count": {"type": "integer"}, "reference": {"type": "string"}, "title": {"type": "string"}, "html": {"type": "string"}, "audit": {"type": "integer"}}, "required": ["id", "source", "verse_id"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "532923108201", "text" : "\u4e09\u5bb6\u6751\u6751\u59d4\u4f1a"}, {"id" : "532923108202", "text" : "\u7c73\u7538\u6751\u59d4\u4f1a"}, {"id" : "532923108203", "text" : "\u514b\u660c\u6751\u59d4\u4f1a"}, {"id" : "532923108204", "text" : "\u5c94\u6c9f\u6751\u59d4\u4f1a"}, {"id" : "532923108205", "text" : "\u5927\... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"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" : [[[150.625, 20.083333333333332], [150.625, 20.166666666666668], [150.75, 20.166666666666668], [150.75, 20.083333333333332], [150.625, 20.083333333333332]]]}, "properties" : {"code" : 305015, "url" : "http://madefor.github.io/0410/api/v1/305015.geojs... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_popup": {"typ... | {"name" : "click game", "description" : "click it's tjat simple", "version" : "1.0.0", "manifest_version" : 2, "browser_action" : {"default_popup" : "popup/popup.html"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}}, "required": ["default_popup"]}}, "required": ["name", "descri... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "appPath": {"type": "string"}, "testPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {"a... | {"name" : "droidlinguist", "version" : "1.0.0", "description" : "A tool that helps you easily translate your killer android apps in a nice & clear interface, using popular translator engines like Microsoft Translator, Yandex Translate or Google Translate!", "appPath" : "src/main/webapp", "testPath" : "src/test/javascri... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "appPath": {"type": "string"}, "testPath": {"type": "string"}, "dependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "angular-sanitize": {"type": "string"}, "angular... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "conquest:block/woven_granite_design_slab_eighth"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"},... | [{"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO.jpg", "namaPartai" : "PARTAI DEMOKRASI INDONESIA PERJUANGAN", "id" : 47912, "noUrut" : 1, "nama" : "YUSUF NIKOLAS SORU, A.Md. Par, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "TIMOR TENGAH SELATAN", "originalFilename" : "PAS FOTO 001.jpg", ... | 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", "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "strin... | {"name" : "mood-front", "version" : "1.0.0", "description" : "Mood Frontend", "author" : "Dave Li", "license" : "MIT", "scripts" : {"build" : "roc build", "dev" : "roc dev", "start" : "roc start"}, "dependencies" : {"bootstrap" : "^4.0.0-alpha.6", "moment" : "^2.18.1", "react-emojione" : "^3.1.10", "reselect" : "^3.0.1... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "dev": {"type": "string"}, "start": {"type": "string"}}, ... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "c... | {"ETag" : "W/\"61446589d3caf669abbb69625f6edb290886d99440325bae75e67223cb0d88a3\"", "Last-Modified" : "Fri, 08 Oct 2021 15:09:31 GMT", "base" : {"repo" : {"name" : "autode-feedstock"}}, "closed_at" : "2021-10-08T15:09:31Z", "created_at" : "2021-10-01T11:06:58Z", "draft" : false, "head" : {"ref" : "1.1.1_h871059"}, "htm... | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri... |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "sequence_gan", "description" : "Generative adversarial networks (GAN) applied to sequential data via recurrent neural networks (RNN).", "license" : null, "starNum" : 264, "folkNum" : 98, "watchNum" : 264, "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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id_798": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"t... | {"id_798" : {"title" : "Idle Thoughts Of An Idle Fellow", "language" : "English", "totaltime" : "5:01:19", "url_librivox" : "http://librivox.org/idle_thoughts_of_an_idle_fellow_by_jerome_k_jerome/", "url_iarchive" : "http://www.archive.org/details/idle_thoughts_librivox", "readers" : ["969"], "authors" : "529", "genres... | json_instruct | {"type": "object", "properties": {"id_798": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"type... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "s... | {"vendor" : "liberica", "filename" : "bellsoft-jre13.0.1-linux-aarch64.deb", "release_type" : "ga", "version" : "13.0.1", "java_version" : "13.0.1", "jvm_impl" : "hotspot", "os" : "linux", "architecture" : "aarch64", "file_type" : "deb", "image_type" : "jre", "features" : [], "url" : "https://github.com/bell-sw/Liberic... | json_instruct | {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"license": {"type": "string"}, "meta": {"type": "object", "properties": {"artifact_doi_url": {"type": "string"}, "artifact_sources": {"type": "string"}, "artifact_sources_url": {"type": "string"}, "authors": {"type": "string"}, "... | {"license" : "CC BY-SA 4.0", "meta" : {"artifact_doi_url" : "https://doi.org/10.1145/3229773", "artifact_sources" : "GitHub", "artifact_sources_url" : "https://github.com/dividiti/ck-request-asplos18-mobilenets-armcl-opencl", "authors" : "Anton Lokhmotov, Nikolay Chunosov, Flavio Vella, Grigori Fursin", "badge_acm_arti... | json_instruct | {"type": "object", "properties": {"license": {"type": "string"}, "meta": {"type": "object", "properties": {"artifact_doi_url": {"type": "string"}, "artifact_sources": {"type": "string"}, "artifact_sources_url": {"type": "string"}, "authors": {"type": "string"}, "badge_acm_artifact_available": {"type": "string"}, "badge... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, ... | {"title" : "Diffusion-Convolutional Neural Networks.", "fields" : ["diffusion", "isomorphism", "tensor", "absolute deviation", "convolutional neural network", "probabilistic logic", "levy flight", "invariant", "decision model"], "abstract" : "We present diffusion-convolutional neural networks (DCNNs), a new model for g... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"deployPath": {"type": "string"}, "templateName": {"type": "string"}, "deployFileName": {"type": "string"}, "unpack": {"type": "boolean"}, "contentType": {"type": "string"}, "entity": {"type": "object", "properties": {"type"... | {"deployPath" : "/deploy/path", "templateName" : "template-name.war.tpl", "deployFileName" : "deploy-file-name.war", "unpack" : false, "contentType" : "application/zip", "entity" : {"type" : "GROUPED_APPS", "group" : "test-group", "target" : "test-webapp", "deployToJvms" : false}} | json_instruct | {"type": "object", "properties": {"deployPath": {"type": "string"}, "templateName": {"type": "string"}, "deployFileName": {"type": "string"}, "unpack": {"type": "boolean"}, "contentType": {"type": "string"}, "entity": {"type": "object", "properties": {"type": {"type": "string"}, "group": {"type": "string"}, "target": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer... | [{"id" : 104117, "Name" : "Hrastje", "state_id" : 4299, "state_code" : "117", "state_name" : "\u0160en\u010dur Municipality", "country_id" : 201, "country_code" : "SI", "country_name" : "Slovenia", "latitude" : "46.21667000", "longitude" : "14.40000000", "wikiDataId" : "Q2348978"}, {"id" : 104351, "Name" : "\u0160en\u0... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "Name": {"type": "string"}, "state_id": {"type": "integer"}, "state_code": {"type": "string"}, "state_name": {"type": "string"}, "country_id": {"type": "integer"}, "country_code": {"type": "string"}, "country_name": {"type": "string... |
Using the following JSON schema, generate a compatible JSON instance:
{"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": {... | {"nom" : "Montlay-en-Auxois", "circ" : "4\u00e8me circonscription", "dpt" : "C\u00f4te-d'Or", "inscrits" : 122, "abs" : 69, "votants" : 53, "blancs" : 6, "nuls" : 1, "exp" : 46, "res" : [{"nuance" : "REM", "nom" : "Mme Yolaine DE COURSON", "voix" : 23}, {"nuance" : "LR", "nom" : "M. Charles BARRIERE", "voix" : 23}]} | 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"... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"chenddcoder": {"type": "stri... | {"name" : "libx264-iOS", "version" : "1.3", "license" : "MIT", "summary" : "libx264 build for iOS", "homepage" : "https://github.com/chenddcoder/libx264-iOS", "authors" : {"chenddcoder" : "chenddcoder@foxmail.com"}, "source" : {"git" : "https://github.com/chenddcoder/libx264-iOS.git", "tag" : "1.3", "submodules" : true... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "object", "properties": {"chenddcoder": {"type": "string"}}, "required": ["chenddcoder"]}, "source": {"type": "ob... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"ty... | {"IsRecentlyVerified" : false, "ID" : 61240, "UUID" : "AD8CFEE7-24E7-4096-A2DF-2BBBD4144246", "DataProviderID" : 1, "OperatorID" : 101, "UsageTypeID" : 4, "AddressInfo" : {"ID" : 61586, "Title" : "Zoologischer Garten", "AddressLine1" : "Am Wasserfall 2", "Town" : "Eberswalde", "StateOrProvince" : "Landkreis Barnim", "P... | json_instruct | {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "properties": {"ID": {"type": "integer"}, "T... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coord... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-89.63181, 42.805343]}, "properties" : {"marker-symbol" : "star", "marker-color" : "#607D8B", "marker-size" : "small", "name" : "New Glarus Brewing Company", "address" : "2400 State Highway 69, New Glarus,... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"team": {"type": "string"}, "players": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["team", "players"], "$schema": "http://json-sch... | {"team" : "Detroit Red Wings", "players" : [{"name" : "Pavel Datsyuk"}, {"name" : "Nicklas Lidstr\u00f6m"}, {"name" : "Darren Helm"}]} | json_instruct | {"type": "object", "properties": {"team": {"type": "string"}, "players": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["team", "players"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_id" : "5c0c1f2b86f77455912eaf05", "_tpl" : "5b3f7c005acfc4704b4a1de8", "parentId" : "5c0c1f2b86f77455912eaf04", "slotId" : "mod_mount"} | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer... | [{"id" : 84426, "idParent" : 13617, "namaWilayah" : "EMPAT KOTO PULAU PUNJUNG", "tingkatWilayah" : 4, "idPro" : 12920, "idKab" : 13608, "idKec" : 13617, "idKel" : 84426, "namaPro" : "SUMATERA BARAT", "namaKab" : "DHARMASRAYA", "namaKec" : "PULAU PUNJUNG", "namaKel" : "EMPAT KOTO PULAU PUNJUNG", "kodeWilayah" : "13.10.0... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "nama... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "dependencies": {"type": "object", "prope... | {"name" : "thingsboard-advanced-attribute-widget", "version" : "0.9.2", "author" : "Jan Sch\u00e4r <jan.schaer@sbb.ch>", "scripts" : {"docs" : "./node_modules/jsdoc/jsdoc.js -c ./.jsdoc.conf.json"}, "dependencies" : {"jsdoc" : "^3.6.10"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "scripts": {"type": "object", "properties": {"docs": {"type": "string"}}, "required": ["docs"]}, "dependencies": {"type": "object", "properties": {"jsdoc": {"type": "string"}}, "required": ["jsdoc"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"loss": {"type": "number"}, "accuracy": {"type": "number"}, "val_accuracy": {"type": "number"}, "pred": {"type": "integer"}, "real": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integ... | {"loss" : 0.0013077214825898409, "accuracy" : 2.6, "val_accuracy" : 3.0, "pred" : 18, "real" : 0, "_runtime" : 10, "_timestamp" : 1621311099, "_step" : 1} | json_instruct | {"type": "object", "properties": {"loss": {"type": "number"}, "accuracy": {"type": "number"}, "val_accuracy": {"type": "number"}, "pred": {"type": "integer"}, "real": {"type": "integer"}, "_runtime": {"type": "integer"}, "_timestamp": {"type": "integer"}, "_step": {"type": "integer"}}, "required": ["loss", "accuracy", ... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.