input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"C": {"type": "integer"}, "Objective-C": {"type": "integer"}}, "required": ["C", "Objective-C"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"C" : 1109242, "Objective-C" : 128909} | json_instruct | {"type": "object", "properties": {"C": {"type": "integer"}, "Objective-C": {"type": "integer"}}, "required": ["C", "Objective-C"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId"... | {"id" : "1003", "provinceId" : "53", "regencyId" : "01", "districtId" : "06", "name" : "Naibonat"} | 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 a JSON structure that matches this schema definition:
{"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}, "logChannel": {"type": "string"}}, "required": ["token", "prefix", "logChannel"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"token" : "the_bot_token", "prefix" : "o!", "logChannel" : "542497765146492929"} | json_instruct | {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}, "logChannel": {"type": "string"}}, "required": ["token", "prefix", "logChannel"], "$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" : 85933289, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "21bb75e8e838b3fb716fe54cea2885dc", "wof:id" : 85933289, "wof:repo" : "whosonfirst-data-admin-in"}, "bbox" : [73.78967285155016, 15.46818901744015, 73.8188989257502, 15.49611363728782]... | 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": ["... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type... | {"uuid" : "7188a83d-dc23-414f-8731-6a526d0ec3d5", "name" : "FindOwnerPage", "children" : ["5bdd6d67-5bc1-4872-b384-32c177aa2c85"], "befores" : [], "afters" : [], "links" : [], "start" : 1625840695692, "stop" : 1625840698044} | json_instruct | {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "befores": {"type": "array", "items": {}}, "afters": {"type": "array", "items": {}}, "links": {"type": "array", "items": {}}, "start": {"type": "integer"}, "stop": {"type... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "venue": {"type": "string"}, "year": {"type": "string"}, "publisher": {"type": "string"}, "address": {"type": "... | {"type" : "conference", "title" : "Context-Aware Online Collective Inference for Templated Graphical Models", "authors" : ["Charles Dickens*", "Connor Pryor*", "Eriq Augustine", "Alex Miller", "Lise Getoor"], "venue" : "International Conference on Machine Learning", "year" : "2021", "publisher" : "PMLR", "address" : "V... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "venue": {"type": "string"}, "year": {"type": "string"}, "publisher": {"type": "string"}, "address": {"type": "string"}, "links": {"type": "array", "items": {"type": "obj... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublish": ... | {"name" : "json-criteria", "version" : "2.7.0", "description" : "Evaluate criteria queries on JSON objects MongoDB style.", "main" : "lib/index.js", "scripts" : {"test" : "grunt test", "prepublish" : "grunt recompile"}, "repository" : "mirek/node-json-criteria", "homepage" : "https://github.com/mirek/node-json-criteria... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "prepublish"]}, "repository": {"typ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/sc... | {"name" : "nevergrad_hammersley_cube", "package" : "nevergrad", "strategy" : "nevergrad_hammersley", "traceback" : "passing"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "421224103001", "text" : "\u53a6\u94fa\u793e\u533a"}, {"id" : "421224103200", "text" : "\u53a6\u94fa\u6751\u59d4\u4f1a"}, {"id" : "421224103201", "text" : "\u6865\u53e3\u6751\u59d4\u4f1a"}, {"id" : "421224103202", "text" : "\u53cc\u6cb3\u6751\u59d4\u4f1a"}, {"id" : "421224103203", "text" : "\u7af9\u6797\u6751\... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"t... | {"Update" : "2022-04-06 16:00:52", "answer" : ["C", "D", "F"], "category" : "sap", "choices" : ["A. Purchase a Reserved Instance of the matching type <--> \u8d2d\u4e70\u5339\u914d\u7c7b\u578b\u7684\u9884\u7559\u5b9e\u4f8b", "B. Create an AMI of the application instance. Use the AMI to launch instances that host the app... | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id_6409": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "rea... | {"id_6409" : {"title" : "Well-Beloved", "language" : "English", "totaltime" : "6:28:24", "url_librivox" : "http://librivox.org/the-well-beloved-by-thomas-hardy/", "url_iarchive" : "http://archive.org/details/well-beloved_1203_librivox", "readers" : ["1255"], "authors" : "92", "genres" : "General Fiction"}} | json_instruct | {"type": "object", "properties": {"id_6409": {"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": {"typ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "note"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Bossa Labs", "tagline" : "Creative and Tech Ventures", "note" : "Don't delete this file! It's used internally to help with page regeneration."} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "tagline": {"type": "string"}, "note": {"type": "string"}}, "required": ["name", "tagline", "note"], "$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": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "conver... | [{"name" : "\u8c6a\u534e\u5957\u623f\u8fce\u6765\u4e24\u5bf9\u7537\u5973\u5078\u60c5\u56db\u773c\u603b\u7ecf\u7406\u7ea6\u4f1a\u5c5e\u4e0b\u98ce\u97f5\u5927\u5976\u4eba\u59bb\u5c11\u5987\u5e72\u4e86\u4e00\u70ae\u540e\u4f11\u606f\u4e00\u4e0b\u64b8\u786c\u53c8\u641e\u8d77\u6765", "size" : 312449605, "link" : "https://str... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "size": {"type": "integer"}, "link": {"type": "string"}, "created_at": {"type": "string"}, "downloads": {"type": "integer"}, "linkid": {"type": "string"}, "convert": {"type": "string"}, "achorname": {"type": "string"}, "subscribe":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string... | {"name" : "Herderschule\nGymnasium", "id" : "NI-66680-0", "address" : "Ochtmisser Kirchsteig 27, 21339\u00a0L\u00fcneburg", "school_type" : "Gymnasium - SEK I -", "phone" : "04131 6726-0", "full_time_school" : true, "email" : "info@herderschule-lueneburg.de", "programs" : {"programs" : []}, "state" : "NI", "lon" : 10.3... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "address": {"type": "string"}, "school_type": {"type": "string"}, "phone": {"type": "string"}, "full_time_school": {"type": "boolean"}, "email": {"type": "string"}, "programs": {"type": "object", "properties": {"programs": {"type": ... |
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" : "YANBO", "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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "med... | {"id" : "18800359", "tms:id" : "180342", "accession_number" : "1983-14-6", "title" : "Pattern For Embroidery, \"Napoleon\" and \"Josephine\"", "url" : "http://collection.cooperhewitt.org/objects/18800359/", "department_id" : "35347501", "period_id" : null, "media_id" : "35432537", "type_id" : "35293565", "date" : null,... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da... |
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"}, "license": {"type": "object", "properties": {"type": {"type": "string"... | {"name" : "Tracery", "version" : "0.0.1", "summary" : "Powerful extensible content generation library inspired by Tracery.io", "description" : "Tracery is a content generation library originally created by @GalaxyKate; you can find more information at Tracery.io\nThis implementation, while heavily inspired by the origi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"weekDays": {"type": "array", "items": {"type": "string"}}, "months": {"type": "array", "items": {"type": "string"}}, "formats": {"type": "object", "properties": {"date": {"type": "string"}}, "required": ["date"]}, ... | {"weekDays" : ["Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag", "Sonntag"], "months" : ["Januar", "Februar", "M\u00e4rz", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"], "formats" : {"date" : "{{=it.day}}. {{=it.monthName}} {{=it.year}}"}, "daily" : {"each... | json_instruct | {"type": "object", "properties": {"weekDays": {"type": "array", "items": {"type": "string"}}, "months": {"type": "array", "items": {"type": "string"}}, "formats": {"type": "object", "properties": {"date": {"type": "string"}}, "required": ["date"]}, "daily": {"type": "object", "properties": {"each": {"type": "string"}, ... |
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" : "cookshop", "definition" : "An eating house. \"A subterranean cookshop.\" Macaulay."} | 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": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_P... | {"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "CONDITIONS_BY_TYPE" : {"CONCEPT_NAME" : "Claim- Inpatient: Primary diagnosis", "COUNT_VALUE" : 7}, "AGE_AT_FIR... | json_instruct | {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"corn_acres_production_county": {"type": "object", "properties": {}, "required": []}}, "required": ["corn_acres_production_county"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"corn_acres_production_county" : {}} | json_instruct | {"type": "object", "properties": {"corn_acres_production_county": {"type": "object", "properties": {}, "required": []}}, "required": ["corn_acres_production_county"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-mate... | {"angular-material.css" : "sha256-tEk2VVk6stsO4d/iz827x48UB5faDDjrXeOknKNi5/0=", "angular-material.js" : "sha256-lziVzrJ9K2S7RDrYB67mPovctTdmFV7wA5XqF0XrDeY=", "angular-material.min.css" : "sha256-n6bR62/XsLN28UjMw4HgeX2WWJuz3emwBLpFj3pWVjc=", "angular-material.min.js" : "sha256-U8EQak/INug8iLHp+RMWAUEs9D/H5v/t3mwDUdLN... | json_instruct | {"type": "object", "properties": {"angular-material.css": {"type": "string"}, "angular-material.js": {"type": "string"}, "angular-material.min.css": {"type": "string"}, "angular-material.min.js": {"type": "string"}}, "required": ["angular-material.css", "angular-material.js", "angular-material.min.css", "angular-materi... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type... | {"alias" : "video/2900/nicos-flexibles-experimentieren-an-groforschung", "category" : "PyCon DE 2011", "copyright_text" : "http://www.youtube.com/t/terms", "description" : "", "duration" : null, "id" : 2900, "language" : "deu", "quality_notes" : "", "recorded" : "2011-10-05", "slug" : "nicos-flexibles-experimentieren-a... | json_instruct | {"type": "object", "properties": {"alias": {"type": "string"}, "category": {"type": "string"}, "copyright_text": {"type": "string"}, "description": {"type": "string"}, "duration": {"type": "null"}, "id": {"type": "integer"}, "language": {"type": "string"}, "quality_notes": {"type": "string"}, "recorded": {"type": "stri... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name_en": {"type": "string"}, "name_th": {"type": "null"}, "img_en": {"type": "string"}, "img_th": {"type": "null"}, "is_active": {"type": "string"}, "created_at": {"type":... | [{"id" : 1, "name_en" : "Pop-Up", "name_th" : null, "img_en" : "20191211161341.png", "img_th" : null, "is_active" : "N", "created_at" : "2019-12-09 15:47:41", "updated_at" : "2019-12-11 16:13:43", "link" : null, "user_id" : null}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name_en": {"type": "string"}, "name_th": {"type": "null"}, "img_en": {"type": "string"}, "img_th": {"type": "null"}, "is_active": {"type": "string"}, "created_at": {"type": "string"}, "updated_at": {"type": "string"}, "link": {"typ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1914, 6], [1915, 6], [1916, 5], [1917, 12], [1918, 8], [1919, 14], [1920, 11], [1921, 8], [1922, 15], [1923, 7], [1924, 10], [1925, 12], [1928, 8], [1929, 6], [1930, 6], [1932, 6], [1935, 6]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {".source.scss, .source.sass": {"type": "object", "properties": {"Inline Block List Container Shorthand": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "string"}}, "required":... | {".source.scss, .source.sass" : {"Inline Block List Container Shorthand" : {"prefix" : "iblc", "body" : "@include inline-block-list-container;$0"}, "Inline Block List Container" : {"prefix" : "inlineblocklistcontainer", "body" : "@include inline-block-list-container;$0"}, "Inline Block List Item Shorthand" : {"prefix" ... | json_instruct | {"type": "object", "properties": {".source.scss, .source.sass": {"type": "object", "properties": {"Inline Block List Container Shorthand": {"type": "object", "properties": {"prefix": {"type": "string"}, "body": {"type": "string"}}, "required": ["prefix", "body"]}, "Inline Block List Container": {"type": "object", "prop... |
Based on the schema below, produce a valid JSON object:
{"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": "a... | {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[20.969185, 52.174547], [20.968892, 52.174997], [20.969917, 52.175266], [20.97021, 52.174907], [20.969185, 52.174547]]]}, "properties" : {"classification" : "plane", "identificationscore" : 0.9999436140... | 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": "array", "items": {"type": "arra... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type"... | {"code" : 6474010005, "parent" : 6474010, "name" : "TANJUNG LAUT", "latitude" : null, "longitude" : null, "postal" : [75321], "children" : []} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "jquery"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.or... | {"globalDependencies" : {"angular" : "registry:dt/angular#1.5.0+20160619025852", "jquery" : "registry:dt/jquery#1.10.0+20160620094458"}} | json_instruct | {"type": "object", "properties": {"globalDependencies": {"type": "object", "properties": {"angular": {"type": "string"}, "jquery": {"type": "string"}}, "required": ["angular", "jquery"]}}, "required": ["globalDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"code": {"type": "string"}, "fieldcode": {"type": "string"}, "description": {"type": "string"}, "groupcode": {"type": "string"}, "subgroupcode": {"type": "string"}, "@context": {"type": "string"}, "descriptionFull": {"type": "s... | {"code" : "91.160.10", "fieldcode" : "91", "description" : "Interior lighting", "groupcode" : "160", "subgroupcode" : "10", "@context" : "https://isoics.org/ics/ns/subgroup.jsonld", "descriptionFull" : "Construction materials and building. Lighting. Interior lighting.", "notes" : [{"text" : "Including workplace lightin... | json_instruct | {"type": "object", "properties": {"code": {"type": "string"}, "fieldcode": {"type": "string"}, "description": {"type": "string"}, "groupcode": {"type": "string"}, "subgroupcode": {"type": "string"}, "@context": {"type": "string"}, "descriptionFull": {"type": "string"}, "notes": {"type": "array", "items": {"type": "obje... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "prop... | {"id" : "72542", "name" : {"en" : "Burlington / Congers Mobile Home Park"}, "country" : "US", "region" : "IA", "identifiers" : {"wmo" : "72542", "icao" : "KBRL", "iata" : "BRL", "ghcn" : "USW00014931", "wban" : "14931", "usaf" : "725420"}, "location" : {"latitude" : 40.7832, "longitude" : -91.1255, "elevation" : 213}, ... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "icao": {"type": "string"}, "iata... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Material": {"type": "object", "properties": {"Directory Material": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "Type": {"type": "integer"}, "Last Write": {"type": "integer... | {"Material" : {"Directory Material" : "Assets/pressed_play.png", "UUID Resource" : 857775245, "Name" : "pressed_play.png", "Type" : 2, "Last Write" : 1521978173}} | json_instruct | {"type": "object", "properties": {"Material": {"type": "object", "properties": {"Directory Material": {"type": "string"}, "UUID Resource": {"type": "integer"}, "Name": {"type": "string"}, "Type": {"type": "integer"}, "Last Write": {"type": "integer"}}, "required": ["Directory Material", "UUID Resource", "Name", "Type",... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "rechiseled_compat:block/quark_green_stained_planks_diagonal_stripes_connecting"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"typ... | {"best_index" : [34, 89, 154, 96, 175], "auroc" : [0.4987714987714988, 0.44275184275184276, 0.5154791154791155, 0.4073710073710074, 0.49287469287469293], "acc" : [0.41304347826086957, 0.5543478260869565, 0.5978260869565217, 0.5978260869565217, 0.5869565217391305], "aps" : [0.4035607883932929, 0.3650615692404686, 0.4038... | json_instruct | {"type": "object", "properties": {"best_index": {"type": "array", "items": {"type": "integer"}}, "auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "a... |
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": "object", "properties": {"name"... | {"contract" : "0x80e38d47b1dda527e45c353f6fadd133c7c21f35", "tool" : "smartcheck", "start" : 1563772157.6535258, "end" : 1563772165.6402245, "duration" : 7.986698627471924, "analysis" : [{"name" : "SOLIDITY_DIV_MUL", "patternId" : "09hhh1", "severity" : 2, "line" : 109, "column" : 36, "content" : "(10000-remainPackage)... | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "patternId": {"type": "string"}, "sev... |
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": {"test": {"type": "string"}, "start": {"type": "string"}}, "req... | {"name" : "skb_db_script", "version" : "1.0.0", "description" : "script to get that data", "main" : "script.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "node script.js"}, "author" : "", "license" : "ISC", "dependencies" : {"axios" : "^0.18.0", "cheerio" : "^1.0.0-rc.2", "dotenv" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}}, "required": ["test", "start"]}, "author": {"type": "string"},... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "country_code": {"type": "string"}, "name": {"type": "string"}, "parent_code": {"type": "null"}, "type": {"type": "string"}}, "required": ["code", "countr... | [{"code" : "LU-D", "country_code" : "LU", "name" : "Diekirch", "parent_code" : null, "type" : "District"}, {"code" : "LU-G", "country_code" : "LU", "name" : "Grevenmacher", "parent_code" : null, "type" : "District"}, {"code" : "LU-L", "country_code" : "LU", "name" : "Luxembourg", "parent_code" : null, "type" : "Distric... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "country_code": {"type": "string"}, "name": {"type": "string"}, "parent_code": {"type": "null"}, "type": {"type": "string"}}, "required": ["code", "country_code", "name", "parent_code", "type"]}, "$schema": "http://json-schema.org/... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "img": {"type": "string"}, "xivdb": {"type": "string"}, "behavior": {"type": "string"}, "race": {"type": "string"}, "info": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type"... | {"id" : 207, "img" : "068000/068688.png", "xivdb" : "/minion/207/noko", "behavior" : "Independent", "race" : "Monster", "info" : {"de" : "Dieser Schlangen-Yo-kai hat es schwer. Er hat Angst, dass Leute ihn entdecken, ist aber schlecht im Verstecken.", "en" : "Noko is always scared of being seen by humans. Which happens... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "img": {"type": "string"}, "xivdb": {"type": "string"}, "behavior": {"type": "string"}, "race": {"type": "string"}, "info": {"type": "object", "properties": {"de": {"type": "string"}, "en": {"type": "string"}, "fr": {"type": "string"}, "jp": {"type": "string"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"s8_py": {"type": "object", "properties": {"index": {"type": "object", "properties": {"relative_filename": {"type": "string"}, "html_filename": {"type": "string"}, "nums":... | {"files" : {"s8_py" : {"index" : {"relative_filename" : "s8.py", "html_filename" : "s8_py.html", "nums" : [1, 0, 0, 0, 0, 0, 0]}, "hash" : "eef1bc6a4630e20d1fc10b7474fc01f8"}}, "version" : "4.0.3", "settings" : "7951c26c07896c342fcadfecf84d2e59", "format" : 1} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"s8_py": {"type": "object", "properties": {"index": {"type": "object", "properties": {"relative_filename": {"type": "string"}, "html_filename": {"type": "string"}, "nums": {"type": "array", "items": {"type": "integer"}}}, "required": ["relativ... |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]},... | [{"content" : "<p><a href=\"https://mathematicswithoutapologies.wordpress.com/2018/09/11/guest-post-by-kevin-buzzard/\" target=\"_blank\" title=\"https://mathematicswithoutapologies.wordpress.com/2018/09/11/guest-post-by-kevin-buzzard/\">https://mathematicswithoutapologies.wordpress.com/2018/09/11/guest-post-by-kevin-b... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}, "id": {"type": "integer"}, "sender_full_name": {"type": "string"}, "timestamp": {"type": "integer"}}, "required": ["content", "id", "sender_full_name", "timestamp"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"School": {"type": "object", "properties": {"Id": {"type": "integer"}, "Name": {"type": "string"}, "CountyId": {"type": "integer"}, "DistrictId": {"type": "integer"}, "Lat": {"type": "number"}, "Lon": {"type":... | {"School" : {"Id" : 280001019, "Name" : "Beveridge Magnet School", "CountyId" : 28, "DistrictId" : 280001, "Lat" : 41.2422981262207, "Lon" : -96.10140228271484}, "EnrollmentByYear" : [{"Year" : "20022003", "Teachers" : 50, "Students" : 767, "GradeEnrollment" : [{"Grade" : "07", "EnrollmentSize" : 389}, {"Grade" : "08",... | json_instruct | {"type": "object", "properties": {"School": {"type": "object", "properties": {"Id": {"type": "integer"}, "Name": {"type": "string"}, "CountyId": {"type": "integer"}, "DistrictId": {"type": "integer"}, "Lat": {"type": "number"}, "Lon": {"type": "number"}}, "required": ["Id", "Name", "CountyId", "DistrictId", "Lat", "Lon... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["glsl-transition-thumbnail-cli", "glsl-transition-validator-cli"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"t... | {"id" : 6269, "name" : "Cryptseeker", "description" : "", "requirement" : "Create etchings of three amber keystones around the Echovald Wilds.", "locked_text" : "", "type" : "Default", "flags" : ["RequiresUnlock", "Permanent"], "bits" : [{"type" : "Text", "text" : "Recorded the symbols on the keystone at Saint Anjeka's... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "requirement": {"type": "string"}, "locked_text": {"type": "string"}, "type": {"type": "string"}, "flags": {"type": "array", "items": {"type": "string"}}, "bits": {"type": "array", "items": {"type... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "ea:block/cryptic/door/cryptic_necrocite_trapdoor_bottom"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "buil... | {"name" : "weblink", "version" : "1.0.0", "main" : "src/index.js", "bin" : "src/index.js", "license" : "MIT", "scripts" : {"start" : "node .", "build" : "pkg ."}, "pkg" : {"targets" : ["node17-win-x64"], "outputPath" : "dist"}, "dependencies" : {"make-dir" : "^3.1.0", "node-pause" : "^1.0.1", "protocol-registry" : "^1.... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "pkg... |
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": {"test": {"type": "string"}}, "required": ["test"]}, "repositor... | {"name" : "wn-command-init", "version" : "0.0.3", "description" : "wn project scaffold", "main" : "index.js", "scripts" : {"test" : "test"}, "repository" : {"type" : "git", "url" : "https://github.com/snail-team/wn-command-init.git"}, "keywords" : ["scaffold", "wn"], "author" : "snail-team <passtome@foxmail.com>", "lic... | 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... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "s... | {"name" : "glsl-film-grain", "version" : "1.0.4", "description" : "natural looking film grain using noise functions", "main" : "index.js", "license" : "MIT", "author" : {"name" : "Matt DesLauriers", "email" : "dave.des@gmail.com", "url" : "https://github.com/mattdesl"}, "dependencies" : {"glsl-noise" : "0.0.0"}, "devDe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "req... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Coronha Magpul PRS GEN3", "ShortName" : "PRS 3GER", "Description" : "Coronha PRS GEN3 feita pela Magpul."} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"t... | {"body" : "Hi Fritz,\n\n\nThe usual strategy is to convert to Radiance format, like obj2rad. I don't\nknow how often it's used, but the .OBJ format has a NURBS specification,\nand it should be easy enough to support it with obj2mesh. That would have\nthe advantage of including surface normal smoothing and uv textures... | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "attachments": {"type": "array", "items": {}}, "created_by_name": {"type": "string"}, "created_at": {"type": "string"}, "created_by": {"type": "string"}, "parent_id": {"type": "string"}, "id": {"type": "string"}}, "required": ["body", "attachments", "created... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"$schema": {"type": "string"}, "configValues": {"type": "object", "properties": {"invite": {"type": "object", "properties": {"id": {"type": "string"}, "secret": {"type": "string"}, "endpoint": {"type": "string... | {"$schema" : "./values-schema.json", "configValues" : {"invite" : {"id" : "did:trust:tc:dev:id:XLzBJd69tqEgq7oqqdEsHW", "secret" : "client", "endpoint" : "https://api.gateway1.dev.trustcerts.de"}, "name" : "client", "keyPairs" : []}, "filePath" : "./tests/testFile.json", "cloud" : "https://platform.dev.trustcerts.de", ... | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "configValues": {"type": "object", "properties": {"invite": {"type": "object", "properties": {"id": {"type": "string"}, "secret": {"type": "string"}, "endpoint": {"type": "string"}}, "required": ["id", "secret", "endpoint"]}, "name": {"type": "string"}, "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "items": {"type": "array", "items": {"ty... | {"_id" : "page.court-tribunal-complaint", "_type" : "page.singlequestion", "components" : [{"_id" : "page.court-tribunal-complaint--radios.auto_name__23", "_type" : "radios", "items" : [{"_id" : "page.court-tribunal-complaint--radios.auto_name__23--radio.auto_value__15", "_type" : "radio", "label" : "Court", "value" : ... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "components": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_type": {"type": "string"}, "items": {"type": "array", "items": {"type": "object", "properties": {"_id": {"type": "string"}, "_... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "505795ce21db604d69867e7f581baee807fa94c0"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dep... | {"name" : "open-source-guide", "description" : "This guide is a collection of resources to help individuals, communities, and companies sustainably embrace open source software. It explains not only how to accomplish a task, but why you'd want to, and how that task fits into the larger story of consuming, contributing ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"anchor-js": {"type": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "o... | {"version" : "1.0.0-beta7", "description" : "ASP.NET 5 middleware that enables an application to support Facebook's OAuth 2.0 authentication workflow.", "repository" : {"type" : "git", "url" : "git://github.com/aspnet/security"}, "dependencies" : {"Microsoft.AspNet.Authentication.OAuth" : "1.0.0-beta7", "Microsoft.Fram... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"Microsoft.AspNet.Authentication.OAu... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "i... | {"version" : "4.5.6", "flags" : {}, "shapes" : [{"label" : "null", "points" : [[375, 474], [585, 470], [586, 572], [375, 572]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, {"label" : "null", "points" : [[35, 487], [351, 491], [361, 655], [32, 658]], "group_id" : 0, "shape_type" : "polygon", "flags" : {}}, ... | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "flags": {"type": "object", "properties": {}, "required": []}, "shapes": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "points": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "grou... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["00001", "00002", "00003", "00004", "00005", "00006", "00011", "00012", "00014", "00018", "00019", "00022", "00024", "00026", "00027", "00028", "00030", "00032", "00035", "00036"] | 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": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at... | {"generated_at" : "2017-01-27T09:37:38.952949", "required_by" : ["gibe"], "requires" : ["TurboGears"], "package" : "TurboTinyMCE"} | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, ... | {"_id" : "beer_Raspberry_Wheat", "brewery" : "Big Buck Brewery", "name" : "Raspberry Wheat", "abv" : "4.8", "description" : "An American wheat beer made with malted barley and malted wheat. Lightly flavored with pure fruit to impart a subtle raspberry nose, a delicate fruit flavor and a slight pink hue.", "category" :... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv",... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "statistics": {"type": "string"}, "pred_score": {"type": "number"}}, "required": ["start", "end", "statistics", "pred_score"], "$schema": "http://json-schema.org/draft-07/sc... | {"start" : "18:32:18", "end" : "19:32:20", "statistics" : "auto-sklearn results:\n Dataset name: d8efef70ef846f4c75a26ab4abe4a14e\n Metric: roc_auc\n Best validation score: 0.794176\n Number of target algorithm runs: 18\n Number of successful target algorithm runs: 8\n Number of crashed target algorithm runs: 0\n... | json_instruct | {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}, "statistics": {"type": "string"}, "pred_score": {"type": "number"}}, "required": ["start", "end", "statistics", "pred_score"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"start": {"type": "string"}, "test": {"type": "string"}}, "req... | {"name" : "Flying Oranger", "version" : "1.0.0", "description" : "Reddit Application that sends desktop notificiations flying across your screen.", "main" : "index.js", "scripts" : {"start" : "node ./start_scripts/windows_start.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["reddit", "scrip... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array",... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "hello_29002", "displayName" : "hello_29002"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "runs": {"type": "array", "items": {"type": "string"}}, "address": {"type": "string"}... | {"slug" : "radiusnetworks", "relevant-countries" : ["all"], "name" : "Radius Networks, Inc", "runs" : ["Flybuy"], "address" : "3299 K Street NW Suite 400\nWashington DC 20007\nUnited States", "email" : "privacy@radiusnetworks.com", "web" : "http://www.radiusnetworks.com/", "sources" : ["https://www.flybuy.com/privacy-p... | json_instruct | {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "runs": {"type": "array", "items": {"type": "string"}}, "address": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01028635": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"},... | {"type" : "Topology", "objects" : {"E01028635" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00145854", "LAD11CD" : "E07000179"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01028635": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"animate.css": {"type": "string"}, "bootstra... | {"name" : "vendor", "author" : "Hydra", "version" : "0.0.0", "private" : true, "dependencies" : {"animate.css" : "^3.7.2", "bootstrap" : "^4.3.1", "chart.js" : "^2.9.3", "counterup" : "^1.0.2", "font-awesome" : "^4.7.0", "ionicons" : "^4.6.3", "isotope-layout" : "^3.0.6", "jquery" : "^3.4.1", "jquery-migrate" : "^3.1.0... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"animate.css": {"type": "string"}, "bootstrap": {"type": "string"}, "chart.js": {"type": "string"}, "counterup": {"... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type":... | {"files" : {"main.css" : "/storygram/static/css/main.9c9f97b6.chunk.css", "main.js" : "/storygram/static/js/main.4ab85971.chunk.js", "main.js.map" : "/storygram/static/js/main.4ab85971.chunk.js.map", "runtime-main.js" : "/storygram/static/js/runtime-main.d74254aa.js", "runtime-main.js.map" : "/storygram/static/js/runti... | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.8e8dc18c.chunk.js": {"type": "string"}, "static/js... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin-lte-plugin.css": {"type": "string"}, "/js/admin-lte-plugin.js": {"type": "string"}, "/fonts/glyphicons-halflings-regular.eot": {"type": "string"}, ... | {"/js/app.js" : "/js/app.js", "/css/app.css" : "/css/app.css", "/css/admin-lte-plugin.css" : "/css/admin-lte-plugin.css", "/js/admin-lte-plugin.js" : "/js/admin-lte-plugin.js", "/fonts/glyphicons-halflings-regular.eot" : "/fonts/glyphicons-halflings-regular.eot", "/fonts/glyphicons-halflings-regular.svg" : "/fonts/glyp... | json_instruct | {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}, "/css/admin-lte-plugin.css": {"type": "string"}, "/js/admin-lte-plugin.js": {"type": "string"}, "/fonts/glyphicons-halflings-regular.eot": {"type": "string"}, "/fonts/glyphicons-halflings-regular.svg": {"type": "stri... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "proper... | {"name" : "testaddress-org", "version" : "0.0.0", "main" : "./index.js", "scripts" : {"test" : "node_modules/grunt-cafe-mocha/node_modules/mocha/bin/mocha --ui bdd --reporter spec --require should test/index.js"}, "repository" : {"type" : "git", "url" : "git://github.com/tleen/testaddress-org.git"}, "author" : {"name" ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"stm32f746xx": {"type": "object", "properties": {"vid_hex": {"type": "string"}, "pid_hex": {"type": "string"}, "test_cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["vid_hex", "pid_hex", "test_cmd... | {"stm32f746xx" : {"vid_hex" : "0483", "pid_hex" : "374b", "test_cmd" : ["pytest", "tests/micro/zephyr/test_zephyr.py", "--microtvm-platforms=stm32f746xx"]}, "nrf5340dk" : {"vid_hex" : "1366", "pid_hex" : "1055", "test_cmd" : ["pytest", "tests/micro/zephyr/test_zephyr.py", "--microtvm-platforms=nrf5340dk"]}} | json_instruct | {"type": "object", "properties": {"stm32f746xx": {"type": "object", "properties": {"vid_hex": {"type": "string"}, "pid_hex": {"type": "string"}, "test_cmd": {"type": "array", "items": {"type": "string"}}}, "required": ["vid_hex", "pid_hex", "test_cmd"]}, "nrf5340dk": {"type": "object", "properties": {"vid_hex": {"type"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "rec... | {"name" : "Black Cake", "description" : "A nice creamy Blackberry Cheesecake...I love Caps Blackberry It's so delicious!! I went with a mix of different cakes and custards to give a nice Cake body to this...I think it came out great and have vaped it many times!", "id" : 107256, "image_url" : "https://storage.googleapi... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "id": {"type": "integer"}, "image_url": {"type": "string"}, "updated_at": {"type": "string"}, "deleted_at": {"type": "null"}, "recipe_type": {"type": "integer"}, "recipe_flavors": {"type": "array", "items": {"type": "object... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"ty... | {"station" : [{"pref_cd" : 28, "line_cd" : 99630, "line_name" : "\u795e\u6238\u9ad8\u901f\u6771\u897f\u7dda", "station_cd" : 9963009, "station_g_cd" : 9963009, "station_name" : "\u897f\u4ee3", "lon" : 135.144085, "lat" : 34.662374}]} | json_instruct | {"type": "object", "properties": {"station": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_g_cd": {"type": "integer"}, "station_name": {"type": "string"}, "lon": {"... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "string"}, "output": {"type": "string"}, "fix_bones": {"type": "array", "items": {"type": "string"}}, "muscle_starting_strength": {"type": "number"}, "QS_steps": {"type": "integer"}, "multiplier_st... | {"data" : "/home/vismay/recode/fast_muscles/data/realistic_upper", "output" : "/home/vismay/recode/fast_muscles/data/realistic_upper", "fix_bones" : ["scapula"], "muscle_starting_strength" : 10.0, "QS_steps" : 30, "multiplier_strength_each_step" : 1.5, "contract_muscles_at_index" : [0], "bfgs_convergence_crit_fast" : t... | json_instruct | {"type": "object", "properties": {"data": {"type": "string"}, "output": {"type": "string"}, "fix_bones": {"type": "array", "items": {"type": "string"}}, "muscle_starting_strength": {"type": "number"}, "QS_steps": {"type": "integer"}, "multiplier_strength_each_step": {"type": "number"}, "contract_muscles_at_index": {"ty... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["virtual-hyperscript-mount"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"var": {"type": "object", "properties": {"RAILS_ENV": {"type": "string"}}, "required": ["RAILS_ENV"]}, "links": {"type": "object", "properties": {"self": {"type": "object", "properties": {"href": {"type": "string"}},... | {"var" : {"RAILS_ENV" : "production"}, "links" : {"self" : {"href" : "https://api.example.org/v3/apps/[guid]/environment_variables"}, "app" : {"href" : "https://api.example.org/v3/apps/[guid]"}}} | json_instruct | {"type": "object", "properties": {"var": {"type": "object", "properties": {"RAILS_ENV": {"type": "string"}}, "required": ["RAILS_ENV"]}, "links": {"type": "object", "properties": {"self": {"type": "object", "properties": {"href": {"type": "string"}}, "required": ["href"]}, "app": {"type": "object", "properties": {"href... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"ty... | {"name" : "rce", "private" : true, "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "reinstall" : "rm -rf node_modules/ package-lock.json && npm i", "upgrade" : "ncu -u && npm install", "lint" : "npm run lint-pure -- --fix --cache", "lint... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "reinstall": {"type": "string"}, "upgrade": {"type": "strin... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"trifid": {"type": "string"}, "trifid-handler-fetch": {... | {"name" : "gont", "version" : "3.0.13", "description" : "Zazuko aLOD is a software to manage archival finding aids using Linked Data", "main" : "index.js", "dependencies" : {"trifid" : "^2.3.4", "trifid-handler-fetch" : "^1.3.0"}, "devDependencies" : {}, "license" : "UNLICENSED", "scripts" : {"start" : "trifid --config... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"trifid": {"type": "string"}, "trifid-handler-fetch": {"type": "string"}}, "required": ["trifid", "trifid-handler-... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object",... | {"name" : "@tygen/monorepo", "version" : "0.0.10", "private" : true, "description" : "Documentation generator for TypeScript", "workspaces" : ["packages/*"], "scripts" : {"build" : "rm -rf packages/tygen-html/lib && rm -rf packages/tygen-reflector/lib && tsc -b && cd packages/tygen-html && npm run build"}, "repository"... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "workspaces": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]},... |
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" : "341225201200", "text" : "\u90b5\u6865\u6751\u59d4\u4f1a"}, {"id" : "341225201201", "text" : "\u4e1c\u65b9\u6751\u59d4\u4f1a"}, {"id" : "341225201202", "text" : "\u90b5\u6768\u6751\u59d4\u4f1a"}, {"id" : "341225201203", "text" : "\u90b0\u5e84\u6751\u59d4\u4f1a"}, {"id" : "341225201204", "text" : "\u5218\u5c97\... | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"alternativeSigns": {"type": "array", "items": {}}, "ISO4217Code": {"type": "string"}, "ISO4217Number": {"type": "string"}, "sign": {"type": "string"}, "subunits": {"type": "integer"}, "title": {"type": "string"}, "... | {"alternativeSigns" : [], "ISO4217Code" : "SDP", "ISO4217Number" : "736", "sign" : "\u20a4", "subunits" : 1000, "title" : "Sudanese pound", "usage" : [{"ISO8601From" : "1957-04-08", "ISO8601To" : "1998-06-01", "ISO3166Code" : "SD"}]} | json_instruct | {"type": "object", "properties": {"alternativeSigns": {"type": "array", "items": {}}, "ISO4217Code": {"type": "string"}, "ISO4217Number": {"type": "string"}, "sign": {"type": "string"}, "subunits": {"type": "integer"}, "title": {"type": "string"}, "usage": {"type": "array", "items": {"type": "object", "properties": {"I... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "s... | [{"namaKab" : "KOTA PADANG", "originalFilename" : "endre.jpg", "namaPartai" : "Partai NasDem", "id" : 17314, "noUrut" : 1, "nama" : "ENDRE SAIFOEL", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PADANG", "originalFilename" : "Syamsu Rahim.jpg", "namaPartai" : "Partai NasDem", "id" : 73869, "noUrut" : 2, "nama... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"addons/kefir-jquery.js": {"type": "string"}, "addons/kefir-jquery.min.js": {"type": "string"}, "kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["addons/kefir-jquery.js", "addons/kefir-jquery.min.... | {"addons/kefir-jquery.js" : "sha512-f3GdApDdsSZ/81FxSTdbMBVcX+L6sl4x72pl7LAgps5TRLYNMamwz7IVG+mysPSwjtV18E+R/1KUVLTeqAj7Pw==", "addons/kefir-jquery.min.js" : "sha512-sb8JMh8HmE4jz6kLoKBoQJzPszUXxzw6BvlN+BLq+2UGa52CNg5dMD60IBxaMsgbAm7atIzjBDL18NSeMJJ77Q==", "kefir.js" : "sha512-OUIgz2wlTBjMqdWfO/cNtpE+eujPxVZMJfJ4Ptz5Fk... | json_instruct | {"type": "object", "properties": {"addons/kefir-jquery.js": {"type": "string"}, "addons/kefir-jquery.min.js": {"type": "string"}, "kefir.js": {"type": "string"}, "kefir.min.js": {"type": "string"}}, "required": ["addons/kefir-jquery.js", "addons/kefir-jquery.min.js", "kefir.js", "kefir.min.js"], "$schema": "http://json... |
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": {"build": {"type": "string"}, "test": {"type": "string"}, "form... | {"name" : "prisma-schema-dsl", "version" : "1.0.6", "description" : "JavaScript interface for Prisma Schema DSL", "main" : "dist/index.js", "scripts" : {"build" : "tsc", "test" : "jest", "format" : "prettier --write src", "check-format" : "prettier --check src", "prepare" : "npm run build"}, "keywords" : ["prisma", "sc... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}, "format": {"type": "string"}, "check-format": {"type": "string... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "propert... | {"type" : "MultiPolygon", "coordinates" : [[[[-81.248585, 37.419444], [-81.248388, 37.419875], [-81.248269, 37.420255], [-81.246303, 37.421623], [-81.246173, 37.421648], [-81.245981, 37.421679], [-81.244964, 37.421826], [-81.244786, 37.422255], [-81.244744, 37.422262], [-81.243978, 37.421886], [-81.242873, 37.422118], ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "count": {"type": "integer"}}, "required": ["url", "title", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"url" : "https://bbs.byr.cn/article/Friends/1879888", "title" : "\u5e2e95\u53ef\u7231\u5c0f\u59d0\u59d0\u5f81\u53cb\u5566(\u591a\u738b\u9053)", "count" : 143}, {"url" : "https://bbs.byr.cn/article/AimGraduate/1146779", "title" : "\u5b66\u5341\u7535\u68af\u53c8\u4e00\u6b21\u4ece5\u697c\u6389\u52302\u697c\u3002\u53ef\u... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "title": {"type": "string"}, "count": {"type": "integer"}}, "required": ["url", "title", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {... | {"name" : "Maheshwar", "lsg_code" : "250909", "district" : "Khargone", "state" : "Madhya Pradesh", "no_of_wards" : 15, "wards" : [{"ward_no" : "1", "ward_name" : "AHILYA BAI WARD", "ward_id" : "22882"}, {"ward_no" : "8", "ward_name" : "DR. AMBEDKAR WARD", "ward_id" : "22889"}, {"ward_no" : "12", "ward_name" : "SHIVAJI ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "lsg_code": {"type": "string"}, "district": {"type": "string"}, "state": {"type": "string"}, "no_of_wards": {"type": "integer"}, "wards": {"type": "array", "items": {"type": "object", "properties": {"ward_no": {"type": "string"}, "ward_name": {"type": "strin... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "tools": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "slots": {"type": "object", "properties": {"defense": {"type": "integer"}}, "required": ["def... | {"type" : "tconstruct:modifier_salvage", "tools" : {"tag" : "tconstruct:modifiable/armor"}, "slots" : {"defense" : 1}, "modifier" : "tconstruct:golden", "min_level" : 1} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "tools": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "slots": {"type": "object", "properties": {"defense": {"type": "integer"}}, "required": ["defense"]}, "modifier": {"type": "string"}, "min_level": {"type": "integer"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"900742890": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900742891": {"type": "object", "properties": {"na... | {"900742890" : {"nama" : "TPS 1", "dapil" : [7401, 17404, 2740401]}, "900742891" : {"nama" : "TPS 2", "dapil" : [7401, 17404, 2740401]}, "900742892" : {"nama" : "TPS 3", "dapil" : [7401, 17404, 2740401]}} | json_instruct | {"type": "object", "properties": {"900742890": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900742891": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"io... | {"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"io_01" : {"title" : "iO_01", "channel_id" : 126980400, "link" : "http://twitch... | json_instruct | {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"io_01": {"type": "object", "properties": {"title": {"type": "... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"venvPath": {"type": "string"}, "venv": {"type": "string"}, "executionEnvironments": {"type": "array", "items": {"type": "object", "properties": {"root": {"type": "string"}, "extraPaths": {"type": "array", "it... | {"venvPath" : ".", "venv" : "venv", "executionEnvironments" : [{"root" : ".", "extraPaths" : [], "pythonVersion" : "3.9", "pythonPlatform" : "Linux"}]} | json_instruct | {"type": "object", "properties": {"venvPath": {"type": "string"}, "venv": {"type": "string"}, "executionEnvironments": {"type": "array", "items": {"type": "object", "properties": {"root": {"type": "string"}, "extraPaths": {"type": "array", "items": {}}, "pythonVersion": {"type": "string"}, "pythonPlatform": {"type": "s... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "stat... | {"coverage" : {"US Census" : {"geoid" : "29097", "name" : "Jasper County", "state" : "Missouri"}, "country" : "us", "state" : "mo", "county" : "Jasper"}, "data" : "https://services6.arcgis.com/f6278XvXrNz6PmsX/ArcGIS/rest/services/Address_Points_View/FeatureServer/0", "protocol" : "ESRI", "conform" : {"format" : "geojs... | json_instruct | {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state"]}, "country": {"type": "string"}, "state": {"type": "string"}, "coun... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "seve... | {"schema_version" : "1.2.0", "id" : "GHSA-63rf-qrfc-rr7q", "modified" : "2022-05-13T01:19:43Z", "published" : "2022-05-13T01:19:43Z", "aliases" : ["CVE-2018-18966"], "details" : "osCommerce 2.3.4.1 has an incomplete '.htaccess' for blacklist filtering in the \"product\" page. The .htaccess file in catalog/images/ bans ... | 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": {"type": "object", "properti... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"desc" : "behave is behaviour-driven development, Python style", "home" : "http://github.com/behave/behave", "license" : "BSD"} | json_instruct | {"type": "object", "properties": {"desc": {"type": "string"}, "home": {"type": "string"}, "license": {"type": "string"}}, "required": ["desc", "home", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"all_configured": {"type": "string"}, "already_configured": {"type": "string"}, "already_in_progress": {"type": "string"}, "... | {"config" : {"abort" : {"all_configured" : "Tots els enlla\u00e7os Philips Hue ja estan configurats", "already_configured" : "L'enlla\u00e7 ja est\u00e0 configurat", "already_in_progress" : "El flux de dades de configuraci\u00f3 per l'enlla\u00e7 ja est\u00e0 en curs.", "cannot_connect" : "No s'ha pogut connectar amb l... | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"all_configured": {"type": "string"}, "already_configured": {"type": "string"}, "already_in_progress": {"type": "string"}, "cannot_connect": {"type": "string"}, "discover_timeout": {"type": "string"}... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"qui-page": {"type": "string"}, "qui-notification": {"type": "string"}, "qui-load-more": {"type": "string"}, "uni-p... | {"navigationBarTitleText" : "\u901a\u77e5", "usingComponents" : {"qui-page" : "/components/qui-page/qui-page", "qui-notification" : "/components/qui-notification/qui-notification", "qui-load-more" : "/components/qui-load-more/qui-load-more", "uni-popup" : "/components/uni-popup/uni-popup", "uni-popup-dialog" : "/compon... | json_instruct | {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"qui-page": {"type": "string"}, "qui-notification": {"type": "string"}, "qui-load-more": {"type": "string"}, "uni-popup": {"type": "string"}, "uni-popup-dialog": {"type": "string"}}, "req... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "qty": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}}... | {"data" : [{"id" : 1, "title" : "\u0925\u093e\u0932\u0940 \u092a\u0940\u0920 \u092d\u093e\u091c\u0923\u0940 ", "qty" : "\u0967 \u0915\u093f\u0932\u094b ", "price" : "\u0968\u0968\u0966/-", "image" : "https://i.ytimg.com/vi/OayAsfSTVVk/hqdefault.jpg"}, {"id" : 2, "title" : "\u0909\u092a\u0935\u093e\u0938 \u092d\u093e\u0... | json_instruct | {"type": "object", "properties": {"data": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "qty": {"type": "string"}, "price": {"type": "string"}, "image": {"type": "string"}}, "required": ["id", "title", "qty", "price", "image"]}}}, "required": ["data... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["150428106200", "\u4e8c\u9053\u8425\u5b50\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150428106201", "\u6069\u5dde\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["150428106202", "\u897f\u6865\u6751\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["150428106203", "\u571f\u57ce\u5b50\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"... | json_instruct | {"type": "array", "items": {"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": {"count": {"type": "integer"}, "results": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "uuid": {"type": "string"}, "name": {"type": "string"}, "_last_modified": {"type": "string"}, "local... | {"count" : 1, "results" : [{"url" : "https://10.79.168.231/api/tenant/admin", "uuid" : "admin", "name" : "admin", "_last_modified" : "1605099759106883", "local" : true, "macro_in_progress" : 0, "tenant_force_delete_in_progress" : false}]} | json_instruct | {"type": "object", "properties": {"count": {"type": "integer"}, "results": {"type": "array", "items": {"type": "object", "properties": {"url": {"type": "string"}, "uuid": {"type": "string"}, "name": {"type": "string"}, "_last_modified": {"type": "string"}, "local": {"type": "boolean"}, "macro_in_progress": {"type": "in... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ruleName": {"type": "string"}, "leftParamConfig": {"type": "object", "properties": {"parameterName": {"type": "string"}, "parameterClass": {"type": "string"}}, "required": ["parameterName", "parameterClass"]}, "oper... | {"ruleName" : "BetweenDatesRule", "leftParamConfig" : {"parameterName" : "date", "parameterClass" : "DateTime"}, "operator" : "BETWEEN", "rightParamConfig" : {"parameterName" : "dateRange", "parameterClass" : "DateSet", "parameterStaticValue" : "[\"2015-01-01\",\"2015-12-31\"]"}, "responseConfig" : {"response" : "true"... | json_instruct | {"type": "object", "properties": {"ruleName": {"type": "string"}, "leftParamConfig": {"type": "object", "properties": {"parameterName": {"type": "string"}, "parameterClass": {"type": "string"}}, "required": ["parameterName", "parameterClass"]}, "operator": {"type": "string"}, "rightParamConfig": {"type": "object", "pro... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "files": {... | {"name" : "@uidu/themes-uidu", "version" : "0.4.0", "description" : "uidu main theme", "repository" : "https://github.com/uidu-org/guidu/tree/main/themes/uidu", "license" : "ISC", "author" : "", "main" : "index.scss", "files" : ["scss", "index.scss"], "dependencies" : {"tslib" : "^2.3.1"}, "devDependencies" : {"@uidu/d... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencie... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"name" : "MADHUR", "frequency" : 0, "gender" : "female"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "s... | {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["2104683"], "\uc81c\uc548\uc77c\uc790" : ["2020-10-27"], "\uc81c\uc548\uc790" : ["\uc815\uc9c4\uc11d\uc758\uc6d0\ub4f113\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c21\ub300(2020~2024)\uc81c382\ud68... | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "s... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.