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": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "stri... | {"player_id" : 1954, "name" : "Cary Blanchard", "position" : "K", "height" : "6-1", "weight" : "227", "current_team" : null, "birth_date" : "1968-11-05", "birth_place" : "Fort Worth, TX", "death_date" : "2016-09-12", "college" : "Oklahoma St.", "high_school" : "L.D. Bell, TX", "draft_team" : null, "draft_round" : null,... | json_instruct | {"type": "object", "properties": {"player_id": {"type": "integer"}, "name": {"type": "string"}, "position": {"type": "string"}, "height": {"type": "string"}, "weight": {"type": "string"}, "current_team": {"type": "null"}, "birth_date": {"type": "string"}, "birth_place": {"type": "string"}, "death_date": {"type": "strin... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "stri... | {"type" : "FeatureCollection", "title" : "Urbana", "id" : "433176", "bbox" : [14.028092, 41.123207, 14.03722, 41.12333], "description" : "An ancient place, cited: BAtlas 44 F3 Urbana", "names" : ["Urbana"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [14.032656, 41.1232685]}, "pro... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"tron": {"type": "string"}, "binance-smart-chain": {"type": "string"}}, "required": ["tron", "bi... | {"id" : "bittorrent-2", "symbol" : "btt", "name" : "BitTorrent", "platforms" : {"tron" : "1002000", "binance-smart-chain" : "0x8595f9da7b868b1822194faed312235e43007b49"}, "hashing_algorithm" : "Delegated Proof-of-Stake", "categories" : ["Protocol", "Storage"], "description" : {"en" : "BitTorrent was initially conceived... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "symbol": {"type": "string"}, "name": {"type": "string"}, "platforms": {"type": "object", "properties": {"tron": {"type": "string"}, "binance-smart-chain": {"type": "string"}}, "required": ["tron", "binance-smart-chain"]}, "hashing_algorithm": {"type": "string... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"CVE": {"type": "string"}, "state": {"type": "string"}, "repository": {"type": "string"}, "prePatch": {"type": "object", "properties": {"commit": {"type": "string"}, "weaknesses": {"type": "array", "items": {"... | {"CVE" : "CVE-2017-16034", "state" : "PUBLISHED", "repository" : "https://github.com/soyuka/pidusage.git", "prePatch" : {"commit" : "e3660d8a8e5e61afad9b02af67356a1e239d6bde", "weaknesses" : [{"location" : {"file" : "lib/stats.js", "line" : 103}, "explanation" : "Unsafe shell command constructed from library input"}]},... | json_instruct | {"type": "object", "properties": {"CVE": {"type": "string"}, "state": {"type": "string"}, "repository": {"type": "string"}, "prePatch": {"type": "object", "properties": {"commit": {"type": "string"}, "weaknesses": {"type": "array", "items": {"type": "object", "properties": {"location": {"type": "object", "properties": ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "private", "main", "module", "types"], "$s... | {"name" : "react-bootstrap/ButtonToolbar", "private" : true, "main" : "../cjs/ButtonToolbar.js", "module" : "../esm/ButtonToolbar.js", "types" : "../esm/ButtonToolbar.d.ts"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "private", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type"... | {"name" : "@ryanpromax/eslint-config", "version" : "2.0.0", "description" : "", "keywords" : [], "license" : "MIT", "author" : "Ryan", "main" : "index.js", "dependencies" : {"@antfu/eslint-config" : "^0.20.2"}, "publishConfig" : {"access" : "public"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@antfu/e... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "express-request-id": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["express", "express-request-id", "uuid"]}}, "required": ["depend... | {"dependencies" : {"express" : "^4.17.2", "express-request-id" : "^2.0.1", "uuid" : "^8.3.2"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"express": {"type": "string"}, "express-request-id": {"type": "string"}, "uuid": {"type": "string"}}, "required": ["express", "express-request-id", "uuid"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/sch... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"requestRecordReference": {"type": "string"}, "merchantAcquiringFacilityFulfillmentArrangementInstanceRecord": {"type": "object", "properties": {"merchantAcquiringFacilityPositionLimits": {"type": "object", "properties": {"merc... | {"requestRecordReference" : "RRR770194", "merchantAcquiringFacilityFulfillmentArrangementInstanceRecord" : {"merchantAcquiringFacilityPositionLimits" : {"merchantPositionLimitValue" : "merchantPositionLimitValue", "merchantPositionLimitSettings" : "merchantPositionLimitSettings", "merchantPositionLimitType" : "merchant... | json_instruct | {"type": "object", "properties": {"requestRecordReference": {"type": "string"}, "merchantAcquiringFacilityFulfillmentArrangementInstanceRecord": {"type": "object", "properties": {"merchantAcquiringFacilityPositionLimits": {"type": "object", "properties": {"merchantPositionLimitValue": {"type": "string"}, "merchantPosit... |
Generate sample JSON data that conforms to the following schema definition:
{"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-sche... | [{"year" : 1980, "sex" : "M", "n" : 5, "prop" : 2.7e-06}, {"year" : 1982, "sex" : "M", "n" : 5, "prop" : 2.65e-06}, {"year" : 1983, "sex" : "M", "n" : 8, "prop" : 4.29e-06}, {"year" : 1985, "sex" : "M", "n" : 5, "prop" : 2.6e-06}, {"year" : 1986, "sex" : "M", "n" : 8, "prop" : 4.16e-06}, {"year" : 1987, "sex" : "M", "n... | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1992, 5], [1994, 6], [1995, 9], [1996, 6], [1997, 10], [1998, 5], [1999, 7], [2000, 18], [2001, 11], [2002, 8], [2004, 12], [2005, 13], [2006, 15], [2007, 21], [2008, 11], [2009, 15], [2010, 6], [2011, 10], [2012, 12], [2013, 7], [2014, 14]] | 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": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "c... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Dinwede East, Cervantes, Ilocos Sur, Ilocos Region (Region I), PH", "locale" : "ph.ilocos-region-region-i.ilocos-sur.cervantes.dinwede-east", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "... | 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": {... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"DEPLOYMENT": {"type": "object", "properties": {"ACCOUNT": {"type": "string"}, "ACCOUNT_NUMBER": {"type": "string"}, "SUBNETS": {"type": "array", "items": {"type": "string"}}, "SECURITY_GROUPS": {"type": "array", "ite... | {"DEPLOYMENT" : {"ACCOUNT" : "itx-062", "ACCOUNT_NUMBER" : "736711708563", "SUBNETS" : ["subnet-0928f8c9de7cc55a1", "subnet-07b36be9c0dc330a2"], "SECURITY_GROUPS" : ["sg-03dc05f5186de1392"], "DEPLOYMENT_BUCKET" : "dev-account-provisioning-lambda-package-ramvasi9-us-west-2", "STATIC_CF_TEMPLATE_BUCKET" : "dev-account-pr... | json_instruct | {"type": "object", "properties": {"DEPLOYMENT": {"type": "object", "properties": {"ACCOUNT": {"type": "string"}, "ACCOUNT_NUMBER": {"type": "string"}, "SUBNETS": {"type": "array", "items": {"type": "string"}}, "SECURITY_GROUPS": {"type": "array", "items": {"type": "string"}}, "DEPLOYMENT_BUCKET": {"type": "string"}, "S... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "d3-scale": {... | {"name" : "d3-testing-ground", "version" : "1.0.0", "description" : "testing ground", "main" : "index.js", "dependencies" : {"d3" : "^5.0.0", "d3-scale" : "^2.0.0"}, "devDependencies" : {}, "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"}, "dependencies": {"type": "object", "properties": {"d3": {"type": "string"}, "d3-scale": {"type": "string"}}, "required": ["d3", "d3-scale"]}, "devDependencies": {"t... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "year": {"type": "integer"}, "runtime": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}, "release-date": {"type": "string"}, "director": {"type": "string... | {"name" : "A.I. Artificial Intelligence", "year" : 2001, "runtime" : 146, "categories" : ["drama", "sci-fi"], "release-date" : "2001-06-26", "director" : "Steven Spielberg", "writer" : ["Brian Aldiss", "Ian Watson", "Steven Spielberg"], "actors" : ["Haley Joel Osment", "Frances O'Connor", "Sam Robards", "Jake Thomas", ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "year": {"type": "integer"}, "runtime": {"type": "integer"}, "categories": {"type": "array", "items": {"type": "string"}}, "release-date": {"type": "string"}, "director": {"type": "string"}, "writer": {"type": "array", "items": {"type": "string"}}, "actors":... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"react-select.js": {"type": "string"}, "react-select.min.js": {"type": "string"}}, "required": ["react-select.js", "react-select.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"react-select.js" : "sha256-7EooLZyL5YY4QUFOcNs7dxRXuyWx/1XuJvra6nao2dI=", "react-select.min.js" : "sha256-GRX8/VypMRzHurjSSmtVQ1GzUerZVAMtvILBXj40xDE="} | json_instruct | {"type": "object", "properties": {"react-select.js": {"type": "string"}, "react-select.min.js": {"type": "string"}}, "required": ["react-select.js", "react-select.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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"}, "stringJe... | [{"namaKab" : "KOTA PALANGKARAYA", "originalFilename" : "1. KRISWANSON.jpg", "namaPartai" : "Persatuan Indonesia", "id" : 48502, "noUrut" : 1, "nama" : "KRISWANSON, A.Md.Kep., S.K.M", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA PALANGKARAYA", "originalFilename" : "2. ELIWATI ERMAN KAMIS.jpg", "namaPartai" :... | 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", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d320-22", "text" : "- 19\n58, MS, Producer=>Director TV TEACHER? (SYNC) And then we'd\ndoubtfully considering\nthe aquarium, get briefly into the technical\nproblems of man's adjusting to the\nsea. What does he wear? How does\nhe breathe? How does he eat?\nNkybe show him solving some of\nthese technical proble... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]... | {"name" : "SwimplyCache", "version" : "1.0.0", "summary" : "NSCache replacement written in Swift.", "homepage" : "https://github.com/docterd/SwimplyCache", "license" : {"type" : "MIT"}, "authors" : {"Dennis Oberhoff" : "dennis@obrhoff.de"}, "source" : {"git" : "https://github.com/docterd/swimplycache.git", "tag" : "1.0... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "authors": {"type": "object", "properties": {"Dennis Oberhoff": {"t... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200873369334000, "key" : "/static/53e7f5e9d56afcb6a409a643dfdcbf99/54376/charles-deluvio-547196-unsplash.webp", "val" : "7e02d14a315598e423046c1cab855e02"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"CTTOF": {"type": "number"}, "OSTIY": {"type": "number"}, "BPOSY": {"type": "number"}, "SPSTF": {"type": "number"}, "SPSTY": {"type": "number"}, "ROYMF": {"type": "number"}, "ROYMY": {"type": "number"}, "DPSGY... | {"CTTOF" : 1.0000000000000002, "OSTIY" : 0.3819069354032509, "BPOSY" : 0.35216991958950256, "SPSTF" : 0.3222068110974616, "SPSTY" : 0.3222068110974616, "ROYMF" : 0.2901323851428046, "ROYMY" : 0.2901323851428046, "DPSGY" : 0.26595322120673287, "DPSTF" : 0.26595322120673287, "XPO" : 0.2565716651153268, "CDNIF" : 0.253573... | json_instruct | {"type": "object", "properties": {"CTTOF": {"type": "number"}, "OSTIY": {"type": "number"}, "BPOSY": {"type": "number"}, "SPSTF": {"type": "number"}, "SPSTY": {"type": "number"}, "ROYMF": {"type": "number"}, "ROYMY": {"type": "number"}, "DPSGY": {"type": "number"}, "DPSTF": {"type": "number"}, "XPO": {"type": "number"}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"companyName": {"type": "string"}, "productName": {"type": "string"}, "productVersion": {"type": "string"}, "dataUrl": {"type": "string"}, "wasmCodeUrl": {"type": "string"}, "wasmFrameworkUrl": {"type": "string"}, "graphicsAPI"... | {"companyName" : "JPM-Boy", "productName" : "SocieCiv: Rock", "productVersion" : "0.1.5", "dataUrl" : "web version socieciv2.data.unityweb", "wasmCodeUrl" : "web version socieciv2.wasm.code.unityweb", "wasmFrameworkUrl" : "web version socieciv2.wasm.framework.unityweb", "graphicsAPI" : ["WebGL 2.0", "WebGL 1.0"], "webg... | json_instruct | {"type": "object", "properties": {"companyName": {"type": "string"}, "productName": {"type": "string"}, "productVersion": {"type": "string"}, "dataUrl": {"type": "string"}, "wasmCodeUrl": {"type": "string"}, "wasmFrameworkUrl": {"type": "string"}, "graphicsAPI": {"type": "array", "items": {"type": "string"}}, "webglCon... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]... | {"name" : "react-native-shimmer", "version" : "0.4.1", "description" : "Simple shimmering effect in React Native", "main" : "index.js", "scripts" : {"test" : "eslint index.js"}, "keywords" : ["react-native", "react-component", "react-native-component", "react", "mobile", "ios", "ui", "shimmer", "activityindicator", "in... | 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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "stri... | {"manifest_version" : 2, "name" : "Sustitu.CAT", "version" : "1.3", "icons" : {"16" : "icon16.png", "48" : "icon48.png", "128" : "icon128.png"}, "description" : "\u00a1Elimina el independentismo catal\u00e1n de tu navegador!", "content_scripts" : [{"matches" : ["*://*/*"], "js" : ["stfu.js"], "run_at" : "document_end"}... | json_instruct | {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "version": {"type": "string"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]}, "description": {"type": "stri... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "organic": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string... | {"type" : "Feature", "id" : "node/7780934630", "properties" : {"name" : "Hofladen Demeter Familie Schneider", "organic" : "yes", "shop" : "farm", "id" : "node/7780934630"}, "geometry" : {"type" : "Point", "coordinates" : [8.9735234, 49.2590107]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "organic": {"type": "string"}, "shop": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "organic", "shop", "id"]}, "geometry": {"type": "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"fjson.js": {"type": "string"}, "fjson.min.js": {"type": "string"}}, "required": ["fjson.js", "fjson.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"fjson.js" : "sha256-1BgO0sbPAvqeBJdJjr08vRBy0pRKg7aSKf/+rOmLYp8=", "fjson.min.js" : "sha256-pxoZS45hoetM8nIF3Nb0eDw+uKsJfn83OySAUxTKLi4="} | json_instruct | {"type": "object", "properties": {"fjson.js": {"type": "string"}, "fjson.min.js": {"type": "string"}}, "required": ["fjson.js", "fjson.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "937252de431a14ef05d590af8c1d5afd0c04fb43"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "interval": {"type": "integer"}, "onset_delay": {"type": "integer"}, "damage": {"type": "integer"}, "damage_easy": {"type": "integer"}, ... | {"name" : "Over Watered", "description" : "You can't stay in water for too long, or else you start to take damage.", "type" : "origins:damage_over_time", "interval" : 160, "onset_delay" : 120, "damage" : 2, "damage_easy" : 1, "damage_source" : {"name" : "hurt_by_water", "unblockable" : true, "bypasses_armor" : true}, "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "interval": {"type": "integer"}, "onset_delay": {"type": "integer"}, "damage": {"type": "integer"}, "damage_easy": {"type": "integer"}, "damage_source": {"type": "object", "properties": {"name": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "requi... | {"h" : [{"d" : [{"e" : ["\ufff9`Sasimsimsimsa~ `ko~ `rakat~ `naira~ `a~ `ma~`emin~.\ufffa\ufffb\u4ed6\u5011\u7684\u8173\u6b65\u90fd\u5c0f\u5fc3\u7ffc\u7ffc\u7684\u6a23\u5b50\u3002"], "f" : "\u8655\u65bc\u683c\u5916\u5c0f\u5fc3\u3001\u5c0f\u5fc3\u7ffc\u7ffc\u7684\u72c0\u614b\u3001\u5c0f\u5fc3\u7ffc\u7ffc\u7684\u6a23\u5b... | json_instruct | {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "tag": {"type": "string"}, ... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "dire... | {"name" : "@apollosoftwarexyz/cinnamon-core", "license" : "MIT", "private" : true, "main" : "src/main.ts", "repository" : {"type" : "git", "url" : "git+https://github.com/apollosoftwarexyz/cinnamon.git", "directory" : "packages/core/"}, "dependencies" : {"toml" : "^3.0.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}, "directory": {"type": "string"}}, "required": ["type", "url", "d... |
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" : "IS-0", "country_code" : "IS", "name" : "Reykjav\u00edk", "parent_code" : null, "type" : "City"}, {"code" : "IS-1", "country_code" : "IS", "name" : "H\u00f6fu\u00f0borgarsv\u00e6\u00f0i\u00f0", "parent_code" : null, "type" : "Region"}, {"code" : "IS-2", "country_code" : "IS", "name" : "Su\u00f0urnes", "paren... | 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 an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["220323105001", "\u9760\u5c71\u5c45\u59d4\u4f1a", "121", "0"], ["220323105200", "\u9760\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["220323105201", "\u592a\u5e73\u6751\u59d4\u4f1a", "220", "0"], ["220323105202", "\u4e5d\u9f99\u6751\u59d4\u4f1a", "220", "0"], ["220323105203", "\u6cb3\u6cbf\u6751\u59d4\u4f1a", "220", "0"],... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "year": {"type": "integer"}}, "required": ["name", "author", "des... | [{"name" : "cowboy bebop", "author" : "\u6e21\u8fb9\u4fe1\u4e00\u90ce", "description" : "", "image" : "2020/cowboy bebop.webp", "year" : 2020}, {"name" : "\u30d1\u30d7\u30ea\u30ab", "author" : "\u4eca\u654f", "description" : "", "image" : "2020/paprika.webp", "year" : 2020}, {"name" : "\u65b0\u4e16\u7d00\u30a8\u30f4\u3... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "image": {"type": "string"}, "year": {"type": "integer"}}, "required": ["name", "author", "description", "image", "year"]}, "$schema": "http://json-schema.org/draft-0... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900386703": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900386704": {"type": "object", "properties": {"nam... | {"900386703" : {"nama" : "TPS 1", "dapil" : [3303, 13304, 2331804]}, "900386704" : {"nama" : "TPS 2", "dapil" : [3303, 13304, 2331804]}, "900386705" : {"nama" : "TPS 3", "dapil" : [3303, 13304, 2331804]}, "900386706" : {"nama" : "TPS 4", "dapil" : [3303, 13304, 2331804]}, "900386707" : {"nama" : "TPS 5", "dapil" : [330... | json_instruct | {"type": "object", "properties": {"900386703": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900386704": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
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" : "miniardize", "definition" : "To render delicate or dainty. [Obs.] Howell."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "e372d9a7fd59a60ca3725924664cf24112a6b2e4"} | 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": {"angular-clipboard.js": {"type": "string"}, "angular-clipboard.min.js": {"type": "string"}}, "required": ["angular-clipboard.js", "angular-clipboard.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"angular-clipboard.js" : "sha512-oyQuWgLNv7dktCbZQSb5guowfzajxL3KeawoarkE1rXGEklDY6sVw6kii9b3gHvEx1cCdibwfcMSVB9e6Fm1hQ==", "angular-clipboard.min.js" : "sha512-NeRSAsP4YZIqnfXLXuifxorfotXig1Tjlvl0vlZNjUTZ9W8WDWSDCc5MvfXakzKS0AfoHa/nkWLbxqxZvou+cQ=="} | json_instruct | {"type": "object", "properties": {"angular-clipboard.js": {"type": "string"}, "angular-clipboard.min.js": {"type": "string"}}, "required": ["angular-clipboard.js", "angular-clipboard.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "example_stack", "description" : "Description for the example stack"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "description"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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" : "We've been having some recent issues with Codecov:\r\n1. Codecov's nice [browser extension](https://github.com/codecov/browser-extension) is deprecated in favor of a [new one using sourcegraph](https://github.com/codecov/sourcegraph-codecov), but the new one doesn't display diffs for PRs (!). AFAIK this is ... | 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 a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"440823100": {"type": "string"}, "440823101": {"type": "string"}, "440823102": {"type": "string"}, "440823103": {"type": "string"}, "440823104": {"type": "string"}, "440823105": {"type": "string"}, "440823106": {"type... | {"440823100" : "\u9042\u57ce\u9547", "440823101" : "\u9ec4\u7565\u9547", "440823102" : "\u6d0b\u9752\u9547", "440823103" : "\u754c\u70ae\u9547", "440823104" : "\u4e50\u6c11\u9547", "440823105" : "\u6c5f\u6d2a\u9547", "440823106" : "\u6768\u67d1\u9547", "440823107" : "\u57ce\u6708\u9547", "440823108" : "\u4e4c\u5858\u95... | json_instruct | {"type": "object", "properties": {"440823100": {"type": "string"}, "440823101": {"type": "string"}, "440823102": {"type": "string"}, "440823103": {"type": "string"}, "440823104": {"type": "string"}, "440823105": {"type": "string"}, "440823106": {"type": "string"}, "440823107": {"type": "string"}, "440823108": {"type": ... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"comments": {"type": "boolean"}, "reminders": {"type": "boolean"}, "selections": {"type": "boolean"}, "verseEdits": {"type": "boolean"}, "contextId": {"type": "object", "properties": {"occurrenceNote"... | [{"comments" : false, "reminders" : false, "selections" : false, "verseEdits" : false, "contextId" : {"occurrenceNote" : "Paul reminds Archippus of the task God had given him and that he, Archippus, was under obligation to the Lord to fulfill it. The words \"Look,\" \"you have received,\" and \"you should fulfill\" all... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"comments": {"type": "boolean"}, "reminders": {"type": "boolean"}, "selections": {"type": "boolean"}, "verseEdits": {"type": "boolean"}, "contextId": {"type": "object", "properties": {"occurrenceNote": {"type": "string"}, "reference": {"type": "object", "prop... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"address": {"type": "string"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "require... | {"address" : "11ad4d13bcca312e83eec8f961ada76c41c0ef09", "crypto" : {"cipher" : "aes-128-ctr", "ciphertext" : "21e9b38692c5beb49ac1251117daf983f645eefd1e472b3147fae4e6c40dc602", "cipherparams" : {"iv" : "d76df77d83cc293835ffec18c2bd77ec"}, "kdf" : "scrypt", "kdfparams" : {"dklen" : 32, "n" : 262144, "p" : 1, "r" : 8, "... | json_instruct | {"type": "object", "properties": {"address": {"type": "string"}, "crypto": {"type": "object", "properties": {"cipher": {"type": "string"}, "ciphertext": {"type": "string"}, "cipherparams": {"type": "object", "properties": {"iv": {"type": "string"}}, "required": ["iv"]}, "kdf": {"type": "string"}, "kdfparams": {"type": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "11c81ca892a08bf246186fd2e52c165acba96a09"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "ite... | {"version" : 1.2, "people" : [{"pose_keypoints_2d" : [142.246, 256.705, 1, 141.014, 276.009, 1, 109.592, 271.629, 1, 84.4751, 323.698, 1, 125.337, 353.112, 1, 169.245, 277.52, 1, 212.476, 289.259, 1, 223.428, 319.695, 1, 100.92, 372.776, 1, 99.1553, 436.619, 1, 96.1841, 513.609, 1, 136.085, 371.749, 1, 166.133, 429.205... | json_instruct | {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "han... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"usage": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}... | {"usage" : "<entity> playRumbleLoopOnEntity(<rumble>)", "description" : ["Plays a looping rumble on the given entity."], "params" : [{"name" : "rumble", "type" : "string", "description" : ["The name of the rumble to play."], "optional" : false}], "example" : ["self playRumbleLoopOnEntity(\"tank_rumble\");"]} | json_instruct | {"type": "object", "properties": {"usage": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "array", "items": {"type": "string"}}, "opt... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schem... | {"assessment" : [{"name" : "Seminar Participation and Presentation ", "weight" : 20}, {"name" : "Ministerial Briefing", "weight" : 20}, {"name" : "Research Essay ", "weight" : 40}, {"name" : "Introduction to Policy Exam ", "weight" : 20}]} | json_instruct | {"type": "object", "properties": {"assessment": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "weight": {"type": "integer"}}, "required": ["name", "weight"]}}}, "required": ["assessment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"},... | {"name" : "carnot-builder", "description" : "A visual editor for central extensions of nilpotent Lie algebras.", "version" : "0.1.1", "main" : "main.js", "author" : "Eero Hakavuori", "homepage" : "", "license" : "MIT", "scripts" : {"build" : "rollup -c", "dev" : "rollup -c -w", "start" : "sirv public", "validate" : "sv... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": ... | {"name" : "Behaviors.JS", "description" : "Directive-based progressive enhancement library", "author" : "Roman Ivanov <RomanIvanov@QuickenLoans.com>", "license" : "MIT", "repository" : {"type" : "git", "url" : "https://github.com/QuickenLoans/Behaviors.js.git"}, "version" : "0.9.0", "scripts" : {"lint" : "jshint src/ &... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "version": {"type": "string"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"record": {"type": "object", "properties": {"format": {"type": "string"}, "title": {"type": "string"}, "contributor": {"type": "array", "items": {}}, "publisher": {"type": "array", "items": {}}, "ispartof": {"... | {"record" : {"format" : "ElectronicThesis", "title" : "A Study of Classic Maya Rulership", "contributor" : [], "publisher" : [], "ispartof" : [], "identifier" : "", "language" : ["Englisch"], "subject" : ["Archaeology", "Latin American history", "Ancient history", "Native American studies"], "description" : "", "status... | json_instruct | {"type": "object", "properties": {"record": {"type": "object", "properties": {"format": {"type": "string"}, "title": {"type": "string"}, "contributor": {"type": "array", "items": {}}, "publisher": {"type": "array", "items": {}}, "ispartof": {"type": "array", "items": {}}, "identifier": {"type": "string"}, "language": {... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}... | {"family" : "Big Shoulders Display", "variants" : ["100", "300", "regular", "500", "600", "700", "800", "900"], "subsets" : ["latin", "latin-ext", "vietnamese"], "version" : "v4", "lastModified" : "2020-11-06", "files" : {"100" : "http://fonts.gstatic.com/s/bigshouldersdisplay/v4/fC1xPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ur9D... | json_instruct | {"type": "object", "properties": {"family": {"type": "string"}, "variants": {"type": "array", "items": {"type": "string"}}, "subsets": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "lastModified": {"type": "string"}, "files": {"type": "object", "properties": {"100": {"type": "string"}, ... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"php-opencloud/openstack": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php-opencloud/openstack", "guzzlehttp/guzzle"]}}, "required": ["require"], "$sche... | {"require" : {"php-opencloud/openstack" : "v2.0.2", "guzzlehttp/guzzle" : "6.2.0"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"php-opencloud/openstack": {"type": "string"}, "guzzlehttp/guzzle": {"type": "string"}}, "required": ["php-opencloud/openstack", "guzzlehttp/guzzle"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"vertices" : [[30, 38], [43, 13], [2, 35], [15, 10], [30, 35]]} | json_instruct | {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"InspicioDevHostMonitor": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}... | {"profiles" : {"InspicioDevHostMonitor" : {"commandName" : "Project", "commandLineArgs" : "--root C:\\Temp\\inst-build"}}} | json_instruct | {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"InspicioDevHostMonitor": {"type": "object", "properties": {"commandName": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "commandLineArgs"]}}, "required": ["InspicioDevHostMonitor"]}}, "required": [... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object... | {"name" : "CommandLineKit", "version" : "2.3.0", "summary" : "A pure Swift library for creating command-line interfaces", "description" : "A pure Swift library for creating command-line interfaces.\n- Automatically generated usage messages.\n- Supports all common flag styles\n- Intelligent handling of negative int & fl... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"Ingmar Stein": {"type": "string"}}, "required": ["In... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items":... | {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-92.110009, 30.530718], [-92.108263, 30.534906], [-92.10103, 30.534741], [-92.101007, 30.535309], [-92.081759, 30.53291], [-92.082998, 30.525632], [-92.081956, 30.524384], [-92.082086, 30.521512], [-92.090364, 30.52257], ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "... | {"name" : "Beijing Institute of Technology", "alt_name" : "(BIT)", "country" : "China", "state" : null, "address" : {"street" : "5 South Zhongguancun Street, Haidian District", "city" : "Beijing", "province" : null, "postal_code" : "100081"}, "contact" : {"telephone" : "+86(10) 68914247", "website" : "http://www.bit.ed... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}},... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "monobook-desc": {"type": "string"}}, "required": ["@metadata", "monobook-desc"], "$schema": "... | {"@metadata" : {"authors" : ["C.R."]}, "monobook-desc" : "'A skin classica 'e MediaWiki 'a 2004, piglia nomme ' a ll'immaggene 'n janco e niro d' 'o libbro ausata comme sfunno d' 'a paggena"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "monobook-desc": {"type": "string"}}, "required": ["@metadata", "monobook-desc"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_da... | {"id" : 35, "citation_title" : "Changes in the Recession Behavior of Wholesale Prices: The 1920s and Post World War II", "citation_author" : ["Phillip Cagan"], "citation_publication_date" : "1974-03-01", "issue_date" : "1974-03-01", "revision_date" : "None", "topics" : null, "program" : null, "projects" : null, "workin... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "null"}, "progr... |
The schema below describes a JSON structure. Generate a valid example:
{"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" : [[[124.5, 29.583333333333332], [124.5, 29.666666666666668], [124.625, 29.666666666666668], [124.625, 29.583333333333332], [124.5, 29.583333333333332]]]}, "properties" : {"code" : 442434, "url" : "http://madefor.github.io/0410/api/v1/442434.geojson",... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "pr... | {"name" : "wechaty-got-kicked-out", "version" : "1.0.4", "description" : "bot got kicked out of room, will you do something?", "main" : "dist/src/index.js", "author" : "LegendaryJesse", "license" : "MIT", "scripts" : {"dev" : "nodemon --ext js,ts --exec 'ts-node ./src/index.ts --inspect'", "test:unit" : "blue-tape -r t... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "test:unit": {"type": "string"}... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "require... | {"track" : "scheme", "exercise" : "hello-world", "id" : "db95fc9fe1184e75a76d9382f5335a99", "url" : "https://exercism.io/my/solutions/db95fc9fe1184e75a76d9382f5335a99", "handle" : "george-cm", "is_requester" : true, "auto_approve" : true} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_reques... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "paragonia:block/banner_simple_purple"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "p... | {"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" : {"nox_media" : {"title" : "nox_media", "channel_id" : 126802511, "link" : "http:... | 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": {"nox_media": {"type": "object", "properties": {"title": {"type... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "string"}, "author": {"type": "string"}, "withColor": {"type": "boolean"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "canvas": {"type": "object", "properties... | {"title" : "Copy to clipboard button", "category" : "buttons", "author" : "rtivital", "withColor" : true, "dependencies" : ["/core/button/", "/core/tooltip/", "/hooks/use-clipboard/", "tabler-icons-react"], "canvas" : {"center" : true, "maxWidth" : 240}} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "category": {"type": "string"}, "author": {"type": "string"}, "withColor": {"type": "boolean"}, "dependencies": {"type": "array", "items": {"type": "string"}}, "canvas": {"type": "object", "properties": {"center": {"type": "boolean"}, "maxWidth": {"type": "... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/... | {"towns" : [{"name" : "Ibadan", "url" : "ibadan"}]} | json_instruct | {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "version": {"type": "string"}, "d... | {"name" : "prettydiff", "author" : {"name" : "Austin Cheney", "email" : "info@prettydiff.com", "url" : "http://prettydiff.com/"}, "version" : "1.11.4", "description" : "File comparison tool to accurately diff between file versions regardless of comments or minification to the whitespace. It can also beautify (pretty pr... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "ar... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"t... | {"name" : "mt", "version" : "1.0.0", "description" : "My pioneering Nuxt.js project", "author" : "AustinWezz", "private" : true, "scripts" : {"dev" : "cross-env NODE_ENV=development nodemon server/index.js --watch server --exec babel-node", "build" : "nuxt build", "start" : "cross-env NODE_ENV=production node server/in... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "start": {"type": "string"}, ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", ... | {"name" : "jlchassaing/geodatagouv", "description" : "GeoDataGouv bundle helps interact with datagouv to import locations and search them using geo.data.gouv tool", "type" : "symony-bundle", "keywords" : ["symfony", "data-gouv"], "license" : "MIT", "authors" : [{"name" : "Jean-Luc Chassaing"}, {"name" : "Gr\u00e9gory L... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "re... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties... | {"name" : "remap", "version" : "1.0.0", "description" : "Replace each character of a string using a map", "license" : "MIT", "author" : "Brandon Semilla <semibran@gmail.com>", "main" : "index.js", "repository" : {"type" : "git", "url" : "https://github.com/baggo/remap.git"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}},... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"body" : "I SHALL ENDEAVOUR TO SHOW, BOTH FROM EXPERIENCE AND THE REASON OF THE THING.", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/4324.json"} | json_instruct | {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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":... | {"id" : "01446", "name" : {"en" : "Oyfjell-Trovatn"}, "country" : "NO", "region" : "TE", "identifiers" : {"wmo" : "01446"}, "location" : {"latitude" : 59.5667, "longitude" : 8.2, "elevation" : 715}, "timezone" : "Europe/Oslo"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}}, "required": ["wmo"]}, "location"... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"r": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "u": {"typ... | {"type" : "minecraft:crafting_shaped", "pattern" : ["rgr", "iui", "rgr"], "key" : {"r" : {"tag" : "forge:dusts/redstone"}, "u" : {"item" : "mininggadgets:upgrade_empty"}, "i" : {"tag" : "forge:ingots/iron"}, "g" : {"tag" : "forge:ingots/gold"}}, "result" : {"item" : "mininggadgets:upgrade_magnet"}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "pattern": {"type": "array", "items": {"type": "string"}}, "key": {"type": "object", "properties": {"r": {"type": "object", "properties": {"tag": {"type": "string"}}, "required": ["tag"]}, "u": {"type": "object", "properties": {"item": {"type": "string"}}, "... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"bodyClass": {"type": "string"}, "light-theme": {"type": "boolean"}, "dark-theme": {"type": "boolean"}, "section-header__has-logo": {"type": "boolean"}, "section-header__title": {"type": "string"}, "section-header__parent": ... | {"bodyClass" : "body primary dark-theme darkbg default", "light-theme" : false, "dark-theme" : true, "section-header__has-logo" : true, "section-header__title" : "Journey: The Turbulent Times", "section-header__parent" : "Channel U"} | json_instruct | {"type": "object", "properties": {"bodyClass": {"type": "string"}, "light-theme": {"type": "boolean"}, "dark-theme": {"type": "boolean"}, "section-header__has-logo": {"type": "boolean"}, "section-header__title": {"type": "string"}, "section-header__parent": {"type": "string"}}, "required": ["bodyClass", "light-theme", ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nu... | {"nom" : "Chaveroche", "circ" : "1\u00e8re circonscription", "dpt" : "Corr\u00e8ze", "inscrits" : 199, "abs" : 79, "votants" : 120, "blancs" : 9, "nuls" : 4, "exp" : 107, "res" : [{"nuance" : "REM", "nom" : "M. Christophe JERRETIE", "voix" : 36}, {"nuance" : "LR", "nom" : "Mme Fran\u00e7oise B\u00c9ZIAT", "voix" : 29},... | 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"... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$schema": "http://json-schema.org/draft-07... | {"name" : "Novo", "version" : "0.0.0", "private" : true, "main" : "./Novo.js"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}}, "required": ["name", "version", "private", "main"], "$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"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": ... | {"name" : "qds", "version" : "0.0.1", "description" : "KNative servicing via Qpid Dispatch Router", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "http://github.com/grs/qds"}, "dependencies" : {"debug" : ">=0.8.0", "rhea" : ">=0.2.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "o... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"components": {"type": "object", "properties": {"schemas": {"type": "object", "properties": {"LegacyValue": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type":... | {"components" : {"schemas" : {"LegacyValue" : {"required" : ["1", "2", "3"], "type" : "object", "properties" : {"1" : {"type" : "string", "description" : "text 1"}, "2" : {"type" : "string", "description" : "text 2"}, "3" : {"type" : "string", "description" : "text 3"}}}, "LegacyValueOld" : {"type" : "object", "propert... | json_instruct | {"type": "object", "properties": {"components": {"type": "object", "properties": {"schemas": {"type": "object", "properties": {"LegacyValue": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"1": {"t... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "j... | {"dependencies" : {"bootstrap" : "^4.1.1", "font-awesome" : "^4.7.0", "jquery" : "^3.3.1", "popper.js" : "^1.14.3"}} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"bootstrap": {"type": "string"}, "font-awesome": {"type": "string"}, "jquery": {"type": "string"}, "popper.js": {"type": "string"}}, "required": ["bootstrap", "font-awesome", "jquery", "popper.js"]}}, "required": ["dependencies"], "$sch... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Microsoft.EntityFrameworkCore": {"type": "string"}, "Microsoft.AspNetCore.NodeServices": {"type": "string"}, "Default":... | {"Logging" : {"LogLevel" : {"Microsoft.EntityFrameworkCore" : "Information", "Microsoft.AspNetCore.NodeServices" : "Information", "Default" : "Warning"}}, "AllowedHosts" : "*", "Data" : {"Zeus" : {"ConnectionString" : "Server=(localdb)\\MSSQLLocalDB;Database=ZeusAngular;Trusted_Connection=True;MultipleActiveResultSets=... | json_instruct | {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Microsoft.EntityFrameworkCore": {"type": "string"}, "Microsoft.AspNetCore.NodeServices": {"type": "string"}, "Default": {"type": "string"}}, "required": ["Microsoft.EntityFrameworkCore", "Micros... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "email": {"type": "string"}, "website": {"... | {"symbol" : "TSLT", "address" : "0x9c30a5c7560e71b77626419d3f04a9E9048cDC9c", "overview" : {"en" : "TSLT Energy Chain is a distributed data storage protocol based on blockchain technology. Strive to build a blockchain asset platform based on energy data to promote energy conservation, environmental protection and effic... | json_instruct | {"type": "object", "properties": {"symbol": {"type": "string"}, "address": {"type": "string"}, "overview": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "email": {"type": "string"}, "website": {"type": "string"}, "whitepaper": {"type": "string"}, "stat... |
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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "s... | {"name" : "undo-stack", "version" : "1.0.0", "description" : "A simple undo/redo library with optional undo chunking (batch undos)", "main" : "dist/index.js", "repository" : {"type" : "git", "url" : "https://github.com/willhoag/undo-stack.git"}, "bugs" : {"url" : "https://github.com/willhoag/undo-stack/issues"}, "devDe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "pr... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ha\u0161\u00b7\u0161\u016b\u00b7lam\u00b7m\u00ee\u1e6f": {"type": "object", "properties": {"jos.13.biblehub.htm|2": {"type": "array", "items... | {"pos" : "proper", "translits" : {"ha\u0161\u00b7\u0161\u016b\u00b7lam\u00b7m\u00ee\u1e6f" : {"jos.13.biblehub.htm|2" : ["return\uff64", "Shulammitess\u2013", "Return"]}, "ba\u0161\u00b7\u0161\u016b\u00b7lam\u00b7m\u00ee\u1e6f" : {"jos.13.biblehub.htm|8" : ["would you see", "in the Shulammitess", "as it were the dance"... | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"ha\u0161\u00b7\u0161\u016b\u00b7lam\u00b7m\u00ee\u1e6f": {"type": "object", "properties": {"jos.13.biblehub.htm|2": {"type": "array", "items": {"type": "string"}}}, "required": ["jos.13.biblehub.htm|2"]}, "ba\u0... |
Based on the schema below, produce a valid JSON object:
{"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_10... | {"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: Secondary diagnosis", "COUNT_VALUE" : 18}, "AGE_AT_... | 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... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"writings": {"type": "string"}, "signInWithGoogle": {"type": "string"}, "signOut": {"type": "string"}, "save": {"type": "string"}, "noTitle": {"type": "string"}, "edited": {"type": "string"}, "created": {"type... | {"writings" : "Writings", "signInWithGoogle" : "Sign in with Google", "signOut" : "Sign out", "save" : "Save", "noTitle" : "***", "edited" : "Edited", "created" : "Created", "remove" : "Remove", "share" : "Share", "theme" : "Theme", "light" : "Light", "dark" : "Dark", "system" : "System", "search" : "Search", "done" : ... | json_instruct | {"type": "object", "properties": {"writings": {"type": "string"}, "signInWithGoogle": {"type": "string"}, "signOut": {"type": "string"}, "save": {"type": "string"}, "noTitle": {"type": "string"}, "edited": {"type": "string"}, "created": {"type": "string"}, "remove": {"type": "string"}, "share": {"type": "string"}, "the... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type"... | {"WorkItem" : {"AffectedComponent" : {"Name" : "", "DisplayName" : ""}, "ClosedComment" : "", "ClosedDate" : null, "CommentCount" : 0, "Custom" : null, "Description" : "Version: ATL Server Source and Headers 9.0.70425 Alpha\n\u00a0\nProblem:\nNew code added to used function AtlMimeMakeRecipientsString() means that GetR... | json_instruct | {"type": "object", "properties": {"WorkItem": {"type": "object", "properties": {"AffectedComponent": {"type": "object", "properties": {"Name": {"type": "string"}, "DisplayName": {"type": "string"}}, "required": ["Name", "DisplayName"]}, "ClosedComment": {"type": "string"}, "ClosedDate": {"type": "null"}, "CommentCount"... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items":... | {"rustc" : 12837389265337637431, "features" : "[\"default\", \"std\"]", "target" : 12124146147092560478, "profile" : 4339006351771724982, "path" : 6903410446483756527, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/byteorder-3a8990003dd2b6a8/dep-lib-byteorder"}}], "rustflags" : [], "metad... | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "c... | {"code" : 7307090, "parent" : 7307, "name" : "PULAU SEMBILAN", "latitude" : "-5.0821057035209", "longitude" : "120.4077768765", "postal" : [92681, 92616], "children" : [7307090001, 7307090002, 7307090003, 7307090004]} | json_instruct | {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "nu... | {"contract" : "0xabc0bb482352ad835321e4a5d20682ee3999406b", "tool" : "mythril", "start" : 1563691954.9017537, "end" : 1563691958.979605, "duration" : 4.077851295471191, "analysis" : {"error" : null, "issues" : [], "success" : true}} | json_instruct | {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "object", "properties": {"error": {"type": "null"}, "issues": {"type": "array", "items": {}}, "success": {"type": "bo... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["numpy-indexed"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"Bind": {"type": "object", "properties": {"Code": {"type": "integer"}, "Output": {"type": "array", "items": {"type": "string"}}}, "required": ["Code", "Output"]}, "Nsd": {"type": "object", "properties": {"Code": {"type": "integ... | {"Bind" : {"Code" : 1, "Output" : ["60.txt:2: using RFC1035 TTL semantics", "dns_master_load: 60.txt:4: example.bankcard.www: CNAME and other data", "zone example.bankcard.www/IN: loading from master file 60.txt failed: CNAME and other data", "zone example.bankcard.www/IN: not loaded due to errors."]}, "Nsd" : {"Code" ... | json_instruct | {"type": "object", "properties": {"Bind": {"type": "object", "properties": {"Code": {"type": "integer"}, "Output": {"type": "array", "items": {"type": "string"}}}, "required": ["Code", "Output"]}, "Nsd": {"type": "object", "properties": {"Code": {"type": "integer"}, "Output": {"type": "array", "items": {"type": "string... |
Please provide a valid JSON object following this schema:
{"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" : "7414010001", "district_id" : "7414010", "name" : "KOKOE"} | 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": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "... | {"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" : "Observation recorded from EHR", "COUNT_VALUE" : 23}, "AGE_AT_FIRST_DI... | 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": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "oauth2": {"type": "object", "properties": {"authorize": {"type": "string"}, "access_token": {"type": "string"}}, "required": ["authorize", "... | {"name" : "Wordpress", "desc" : "The WordPress API stands for the WordPress Application Programming Interface. It can be separated into multiple API sections / topics. Each covers the functions involved in and use of a given set of functionality. Together they form what might be called the WordPress API, which is the p... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "desc": {"type": "string"}, "url": {"type": "string"}, "oauth2": {"type": "object", "properties": {"authorize": {"type": "string"}, "access_token": {"type": "string"}}, "required": ["authorize", "access_token"]}, "href": {"type": "object", "properties": {"ke... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1944-06-28": ... | {"name" : [{"name" : "\u51fa\u570b\u8b77\u7167\u689d\u4f8b", "start_date" : "1944-06-28"}, {"name" : "\u8b77\u7167\u689d\u4f8b", "start_date" : "1967-06-30"}], "history" : {"1944-06-28" : "\u5236\u5b9a17\u689d", "1944-07-22" : "\u516c\u5e03", "1952-02-19" : "\u4fee\u6b63\u5168\u658724\u689d", "1952-03-03" : "\u516c\u5e... | json_instruct | {"type": "object", "properties": {"name": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "start_date": {"type": "string"}}, "required": ["name", "start_date"]}}, "history": {"type": "object", "properties": {"1944-06-28": {"type": "string"}, "1944-07-22": {"type": "string"}, "19... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "require... | {"generated_at" : "2017-01-27T09:37:39.363870", "required_by" : ["rest_framework_borderkeeper", "cloudengine", "django-filters-mixin", "django-lazydrf", "django-dingos", "rest_framework_auth0", "django-gov", "django-secure-auth", "django-admin2", "django-didadata", "nodeconductor", "djangorestframework-chain", "seed-st... | json_instruct | {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-schema.org/draft-07... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"duration": {"type": "string"}, "layout": {"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"bounds": {"type": "object", "properties": {"top": {"type": ... | {"duration" : "320500", "layout" : {"children" : [{"bounds" : {"top" : "168", "left" : "0", "bottom" : "168", "right" : "0"}, "id" : "top_guideline", "class" : "Guideline"}, {"bounds" : {"top" : "277", "left" : "0", "bottom" : "277", "right" : "0"}, "id" : "bottom_guideline", "class" : "Guideline"}, {"children" : [], "... | json_instruct | {"type": "object", "properties": {"duration": {"type": "string"}, "layout": {"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"bounds": {"type": "object", "properties": {"top": {"type": "string"}, "left": {"type": "string"}, "bottom": {"type": "string"}, "right":... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"Copyright": {"type": "string"}, "License": {"type": "string"}, "North": {"type": "number"}, "Resolution": {"type": "number"}, "MergePoint": {"type": "number"}, "Images": {"type": "object", "properties": {"SAT": {"... | {"Copyright" : "Copyright (C) 2015 - 2019 Jeffrey Gilliam", "License" : "Apache License 2.0", "North" : 221.0, "Resolution" : 1.1, "MergePoint" : 10.0, "Images" : {"SAT" : "williamsgrove-sat.png", "MAP" : "williamsgrove-map.png"}, "DistanceUOM" : "mile", "TempUOM" : "F", "SpeedUOM" : "mph", "FinishLine" : 270.0, "GPX" ... | json_instruct | {"type": "object", "properties": {"Copyright": {"type": "string"}, "License": {"type": "string"}, "North": {"type": "number"}, "Resolution": {"type": "number"}, "MergePoint": {"type": "number"}, "Images": {"type": "object", "properties": {"SAT": {"type": "string"}, "MAP": {"type": "string"}}, "required": ["SAT", "MAP"]... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema... | {"locked" : false, "starred" : false, "name" : "commit", "command" : "print(fetchSync.dom('http://whatthecommit.com').document.querySelector('p').textContent)"} | json_instruct | {"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "m... | {"ast" : null, "code" : "import colors from \"../colors\";\nimport ramp from \"../ramp\";\nexport var scheme = new Array(3).concat(\"fc8d59ffffbf99d594\", \"d7191cfdae61abdda42b83ba\", \"d7191cfdae61ffffbfabdda42b83ba\", \"d53e4ffc8d59fee08be6f59899d5943288bd\", \"d53e4ffc8d59fee08bffffbfe6f59899d5943288bd\", \"d53e4ff... | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["... | {"resolution" : "main", "tree" : {"src" : "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyped/50b9b6c6d571cab9fb0154d2f3456d9a77f55ac8/react/react-addons-perf.d.ts", "raw" : "registry:dt/react-addons-perf#15.1.0+20160619031933", "typings" : "https://raw.githubusercontent.com/DefinitelyTyped/DefinitelyTyp... | json_instruct | {"type": "object", "properties": {"resolution": {"type": "string"}, "tree": {"type": "object", "properties": {"src": {"type": "string"}, "raw": {"type": "string"}, "typings": {"type": "string"}}, "required": ["src", "raw", "typings"]}}, "required": ["resolution", "tree"], "$schema": "http://json-schema.org/draft-07/sch... |
Construct a JSON document that adheres to this schema specification:
{"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" : "Keras-FlappyBird", "description" : "Using Keras and Deep Q-Network to Play FlappyBird", "license" : null, "starNum" : 248, "folkNum" : 123, "watchNum" : 248, "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... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.