input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"fullname": {"type": "string"}}, "required": ["fullname"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"fullname" : "Yves R.Kouayip"}
json_instruct
{"type": "object", "properties": {"fullname": {"type": "string"}}, "required": ["fullname"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "...
{"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "HH/i2mWLN1v9ccjbnP6YPWBl4EGf8BqCQSc9g2QA5+lqnTRr0C1MKpBu2i7kLVvaoyMBP001a/Q2NymqS2SMLPc=", "cert_user_id" : "jewishshit@zeroid.bit", "files" : {"data.json" : {"sha512" : "7700fa54c4f661d475d3cb4f1237472917cd8966f2087756461a9269cb...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"marathon-lb": {"type": "object", "properties": {"secret_name": {"type": "string"}, "marathon-uri": {"type": "string"}}, "required": ["secret_name", "marathon-uri"]}}, "required": ["marathon-lb"], "$schema": "http:/...
{"marathon-lb" : {"secret_name" : "marathon-lb/mlb-secret", "marathon-uri" : "https://marathon.mesos:8443"}}
json_instruct
{"type": "object", "properties": {"marathon-lb": {"type": "object", "properties": {"secret_name": {"type": "string"}, "marathon-uri": {"type": "string"}}, "required": ["secret_name", "marathon-uri"]}}, "required": ["marathon-lb"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"rules": {"type": "object", "properties": {"jsx-key": {"type": "boolean"}}, "required": ["jsx-key"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"rules" : {"jsx-key" : true}}
json_instruct
{"type": "object", "properties": {"rules": {"type": "object", "properties": {"jsx-key": {"type": "boolean"}}, "required": ["jsx-key"]}}, "required": ["rules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}...
{"name" : "com.boscohyun.uniui", "displayName" : "UniUI", "version" : "0.1.2", "unity" : "2020.2", "description" : "A simple UI management package for Unity.", "keywords" : ["UI", "Manager", "MVP", "MVRP", "UniRx", "UniTask"], "license" : "MIT", "category" : "UI", "dependencies" : {"com.cysharp.unitask" : "https://gith...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "unity": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "category": {"type": "string"}, "depe...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "arr...
{"rustc" : 10026429466883849012, "features" : "[]", "target" : 3826634923158569614, "profile" : 1083638416479751454, "path" : 8701310491988422381, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "release/.fingerprint/glob-03b375bffbf04978/dep-lib-glob"}}], "rustflags" : [], "metadata" : 17263181195404352091, "c...
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...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1977, 5], [1978, 5], [1979, 7], [1981, 6], [1982, 6], [1983, 8], [1984, 8], [1985, 8], [1986, 9], [1987, 11], [1988, 9], [1989, 14], [1990, 12], [1991, 15], [1992, 8], [1993, 9], [1994, 15], [1996, 9], [1997, 5], [1998, 7], [1999, 7], [2000, 7], [2002, 5], [2004, 5], [2008, 7]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author"...
{"name" : "jsonix-jaxb-mapping-schema", "version" : "1.0.0", "description" : "generate mappings and json schema from xml schema using jsonix", "main" : "index.js", "scripts" : {"test" : ""}, "author" : "[George Moyano] (https://onename.com/gmoyano)", "license" : "MIT", "dependencies" : {"jsonix" : "^2.4.1", "jsonix-sch...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "depen...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"character_fighter": {"type": "object", "properties": {"hp_max": {"type": "number"}, "hp_regen": {"type": "number"}, "mp_max": {"type": "number"}, "mp_regen": {"type": "number"}, "moveSpeed": {"type": "number"}, "sta...
{"character_fighter" : {"hp_max" : 500.0, "hp_regen" : 1.5, "mp_max" : 0.0, "mp_regen" : 0.0, "moveSpeed" : 2.0, "stats" : {"str" : 16, "dex" : 12, "con" : 15, "mnd" : 9, "wis" : 10, "lck" : 10}, "tileset" : "tileset_characters"}}
json_instruct
{"type": "object", "properties": {"character_fighter": {"type": "object", "properties": {"hp_max": {"type": "number"}, "hp_regen": {"type": "number"}, "mp_max": {"type": "number"}, "mp_regen": {"type": "number"}, "moveSpeed": {"type": "number"}, "stats": {"type": "object", "properties": {"str": {"type": "integer"}, "de...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "pro...
{"id" : "83359", "name" : {"en" : "Barra Do Garcas"}, "country" : "BR", "region" : "MT", "identifiers" : {"national" : null, "wmo" : "83359", "ghcn" : null, "wban" : null, "usaf" : "833590", "mosmix" : "83359", "icao" : "SBBW", "iata" : "BPG"}, "location" : {"latitude" : -15.8667, "longitude" : -52.3833, "elevation" : ...
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": {"national": {"type": "null"}, "wmo": {"type": "string"}, "gh...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1b34715a689b92735f428bf29e75036084ada45f"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"key": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "created": {"type": "object", "properties"...
{"$schema" : "http://json-schema.org/draft-04/schema", "definitions" : {"key" : {"type" : "string"}, "created" : {"type" : "string", "format" : "date-time", "description" : "when the view was created"}}, "type" : "object", "properties" : {"key" : {"$ref" : "#/definitions/key"}, "created" : {"$ref" : "#/definitions/crea...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "definitions": {"type": "object", "properties": {"key": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "created": {"type": "object", "properties": {"type": {"type": "string"}, "format": {"type": "string"}, "descripti...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "strin...
{"name" : "php-ajax/formsubmission", "description" : "Php ajax form submission", "type" : "project", "authors" : [{"name" : "Sumithran", "email" : "sumithran@india.com"}], "require" : {"php" : ">=5.5"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "p...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "str...
{"name" : "PlanitProfilePortal", "version" : "0.1.0", "homepage" : "https://shan-repo.github.io/Planitprofile/", "scripts" : {"build" : "npm run build:client && npm run build:server && npm run start:client && npm run start:server", "start" : "npm run start:client & npm run start:server", "lint" : "npm run lint:client &...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "start": {"type": "string"}, "lint": {"type": "string"}, "fix": {"type": "string"}, "format": {"type": "string"}, "test":...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"...
{"name" : "phd-defense", "version" : "1.0.0", "description" : "A presentation and defense of my dissertation, submitted in partial fulfillment of the requirements of a Ph.D. in Physics at the University of Washington", "homepage" : "https://github.com/richford/phd-defense", "bugs" : "https://github.com/richford/phd-def...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-92.422473, 35.09158], [-92.384018, 35.090563], [-92.384759, 35.061005], [-92.388825, 35.063208], [-92.38897, 35.058601], [-92.391352, 35.056525], [-92.393977, 35.049169], [-92.395569, 35.050293], [-92.396298, 35.053018],...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type...
{"\u5de5\u5ee0\u540d\u7a31" : "\u5091\u5d34\u6a5f\u96fb\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99703443", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u5927\u91cc\u5340\u5927\u5143\u91cc\u4e2d\u8208\u8def\u4e8c\u6bb565\u5df742\u86...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["popper", "rijs"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"component": {"type": "object", "properties": {"uid": {"type": "string"}, "id": {"type": "string"}}, "required": ["uid", "id"]}, "member": {"type": "object", "properties": {"uid": {"type": "integer"}}, "requir...
{"component" : {"uid" : "web.main", "id" : "9097d0a7-7e02-4be5-bce1-3d7cb1189488"}, "member" : {"uid" : 1}, "logvac_host" : "192.168.0.102", "config" : {}, "start" : "node ../server.js", "stop" : "echo hello", "cwd" : "node_modules"}
json_instruct
{"type": "object", "properties": {"component": {"type": "object", "properties": {"uid": {"type": "string"}, "id": {"type": "string"}}, "required": ["uid", "id"]}, "member": {"type": "object", "properties": {"uid": {"type": "integer"}}, "required": ["uid"]}, "logvac_host": {"type": "string"}, "config": {"type": "object"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "...
{"name" : "rules_engine", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"test" : "mocha test", "start" : "node index", "debug" : "node inspect index.js"}, "author" : "Chris Nesbitt-Smith", "license" : "MIT", "dependencies" : {"aws" : "0.0.3-2", "aws-mqtt-client" : "0.0.5", "aws-sdk" : "^2.9...
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"}, "debug": {"type": "string"}}, "required": ["test", "start", "d...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "reviews": {"type": "object", "properties": {"eigacom": {"type": "array", "items": {"type": "string"}}, "filmarks": {"type": "array", "items": {}}, "coco": {"type": "array", "items": {}}},...
{"id" : 204, "reviews" : {"eigacom" : ["\u30d6\u30eb\u30fc\u30ec\u30a4\u8cb7\u3063\u3061\u3083\u3063\u305fw\n \u5c71\u5bdb\u3000\u3068\u3044\u3046\u4eba\u306b\u8208\u5473\u304c\u3042\u3063\u3066\u3001\u5f7c\u306e\u4f5c\u54c1\u3092\u8ffd\u3044\u304b\u3051\u3066\u3044\u305f\u6642\u3001\u524d\u4f5c\u306e\u5287\u5834\u7248...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "reviews": {"type": "object", "properties": {"eigacom": {"type": "array", "items": {"type": "string"}}, "filmarks": {"type": "array", "items": {}}, "coco": {"type": "array", "items": {}}}, "required": ["eigacom", "filmarks", "coco"]}}, "required": ["id", "rev...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"study_region": {"type": "string"}, "osm_graphml_path": {"type": "string"}, "osm_buffer_gpkg_path": {"type": "string"}, "official_streets_gpkg_path": {"type": "string"}, "official_dests_filepath": {"type": "string"}, ...
{"study_region" : "belfast", "osm_graphml_path" : "../data/belfast/belfast_gb_2019_10000m_all_osm_20190902.graphml", "osm_buffer_gpkg_path" : "../data/belfast/belfast_gb_2019_1600m_buffer.gpkg", "official_streets_gpkg_path" : "../data/belfast/Belfast_City_Council_Area_Street_Network/", "official_dests_filepath" : "../d...
json_instruct
{"type": "object", "properties": {"study_region": {"type": "string"}, "osm_graphml_path": {"type": "string"}, "osm_buffer_gpkg_path": {"type": "string"}, "official_streets_gpkg_path": {"type": "string"}, "official_dests_filepath": {"type": "string"}, "destinations_column": {"type": "string"}, "destinations_values": {"t...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"PREFIX": {"type": "string"}, "HOST": {"type": "string"}, "PORT": {"type": "string"}, "RETRY": {"type": "integer"}, "REQUEST_TIMEOUT": {"type": "integer"}, "SNIFF": {"type": "boolean"}}, "required": ["PREFIX", "HOST", "PORT", "...
{"PREFIX" : "http://", "HOST" : "localhost", "PORT" : "9200", "RETRY" : 5, "REQUEST_TIMEOUT" : 60000, "SNIFF" : true}
json_instruct
{"type": "object", "properties": {"PREFIX": {"type": "string"}, "HOST": {"type": "string"}, "PORT": {"type": "string"}, "RETRY": {"type": "integer"}, "REQUEST_TIMEOUT": {"type": "integer"}, "SNIFF": {"type": "boolean"}}, "required": ["PREFIX", "HOST", "PORT", "RETRY", "REQUEST_TIMEOUT", "SNIFF"], "$schema": "http://jso...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name":...
{"name" : "@types/bignumber.js", "version" : "4.0.2", "description" : "TypeScript definitions for bignumber.js", "license" : "MIT", "contributors" : [{"name" : "Viktor Smirnov", "url" : "https://github.com/LaserUnicorns/"}], "main" : "", "repository" : {"type" : "git", "url" : "https://www.github.com/DefinitelyTyped/De...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}...
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" : "17128", "name" : {"en" : "Ankara / Esenboga"}, "country" : "TR", "region" : "ANK", "identifiers" : {"national" : null, "wmo" : "17128", "ghcn" : null, "wban" : null, "usaf" : "171280", "mosmix" : "17128", "icao" : "LTAC", "iata" : "ESB"}, "location" : {"latitude" : 40.1167, "longitude" : 32.9833, "elevation" :...
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": {"national": {"type": "null"}, "wmo": {"type": "string"}, "gh...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"__metadata": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Date": {"type": "string"}, "Price": {"type": "string"}, "PriceTarget": {"type": "string"...
[{"__metadata" : {"type" : "LmcNameSpace.StockPrice"}, "Date" : "2011", "Price" : "20000", "PriceTarget" : "20000", "ChartDescription" : "My Description", "Currency" : "Euro", "ChartTitle" : "This is chart title", "Criticality" : "Error"}, {"__metadata" : {"type" : "LmcNameSpace.StockPrice"}, "Date" : "2012", "Price" :...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"__metadata": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "Date": {"type": "string"}, "Price": {"type": "string"}, "PriceTarget": {"type": "string"}, "ChartDescription": {"type": "string"}, "Currency": {"type": "strin...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python.pythonPath" : "/home/matuu/.virtualenvs/drf-conversiones-3vfBU1Zz/bin/python"}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}}, "required": ["python.pythonPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[149.25, 39.333333333333336], [149.25, 39.416666666666664], [149.375, 39.416666666666664], [149.375, 39.333333333333336], [149.25, 39.333333333333336]]]}, "properties" : {"code" : 594902, "url" : "http://madefor.github.io/0410/api/v1/594902.geojso...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
{"name" : "babel-plugin-import-dev-load", "version" : "0.0.5", "description" : "Component modular import plugin for babel.", "repository" : {"type" : "git", "url" : "git+https://github.com/mallow-fight/babel-plugin-import-dev-load.git"}, "homepage" : "https://github.com/mallow-fight/babel-plugin-import-dev-load#readme"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "homepage": {"type": "string"}, "author": {"type": "string...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "s...
{"name" : "ipam", "version" : "1.0.3", "description" : "IP Addres Management", "github" : "http://github.com/polonel/trudesk-plugin-ipam", "author" : {"email" : "polonel@gmail.com", "name" : "Chris Brame"}, "menu" : {"main" : {"name" : "IPAM", "link" : "/plugins/ipam", "class" : "material-icons", "icon" : "desktop_wind...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "github": {"type": "string"}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}}, "required": ["email", "name"]}, "menu": {"type": "object", "...
Create a JSON structure that matches this 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"}, "nuls": {"type": "...
{"nom" : "Maisoncelles", "circ" : "2\u00e8me circonscription", "dpt" : "Sarthe", "inscrits" : 145, "abs" : 82, "votants" : 63, "blancs" : 2, "nuls" : 1, "exp" : 60, "res" : [{"nuance" : "SOC", "nom" : "Mme Marietta KARAMANLI", "voix" : 46}, {"nuance" : "REM", "nom" : "Mme Aur\u00e9lie PEROT", "voix" : 14}]}
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"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stellar-base.js": {"type": "string"}, "stellar-base.min.js": {"type": "string"}}, "required": ["stellar-base.js", "stellar-base.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"stellar-base.js" : "sha512-TX7hu07NCii6uoQsSumtDVDJiJrhBoakZMRTR16xGBNJNXTGqeiGhdXSn597fq1gXJg3CcnTL7XlESYdqTRbfg==", "stellar-base.min.js" : "sha512-WBZ4nW5s2YrIEs1hJvCSAa9xgIJm4rw1rLrbzQwg/ycgZkuVFXfB9PbZ9wF4STUnFfIBV3Oq/oXqGMp6CrVnPA=="}
json_instruct
{"type": "object", "properties": {"stellar-base.js": {"type": "string"}, "stellar-base.min.js": {"type": "string"}}, "required": ["stellar-base.js", "stellar-base.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "currency:EUR": {"type": "string"}, "name": {"type": "string"}, "operator": ...
{"type" : "Feature", "id" : "node/5848913073", "properties" : {"amenity" : "vending_machine", "currency:EUR" : "yes", "name" : "Milchtankstelle Krauth\u00e4usle", "operator" : "Epting", "payment:cash" : "yes", "payment:coins" : "yes", "vending" : "milk;eggs;nudeln;mehl;Gem\u00fcse;saisonal", "id" : "node/5848913073"}, ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "currency:EUR": {"type": "string"}, "name": {"type": "string"}, "operator": {"type": "string"}, "payment:cash": {"type": "string"}, "payment:coins": {"ty...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array"...
{"directions" : ["Preheat oven to 450\u00b0F. Place breadcrumbs in pie dish. Sprinkle fish with oregano, salt, and pepper. Turn fish in breadcrumbs to coat; shake off excess. Spoon 4 teaspoons oil onto center of rimmed baking sheet. Place in oven until oil is hot, about 5 minutes. Place fish atop oil; bake 5 minutes. T...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "app.js.LICENSE": {"type": "string"}, "index.html": {"type": "string"}}, "required": ["main.css", "main.js", "app.js.LICENSE", "index.html"], "$sc...
{"main.css" : "dist/app.css", "main.js" : "dist/app.js", "app.js.LICENSE" : "dist/app.js.LICENSE", "index.html" : "dist/index.html"}
json_instruct
{"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "app.js.LICENSE": {"type": "string"}, "index.html": {"type": "string"}}, "required": ["main.css", "main.js", "app.js.LICENSE", "index.html"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/sche...
{"parent" : "block/cube_all", "textures" : {"all" : "engination:blocks/cosmetic/loosestone/figaro_bricks"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"all": {"type": "string"}}, "required": ["all"]}}, "required": ["parent", "textures"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "...
{"name" : "codeceptjs-resemblehelper", "version" : "1.9.6", "description" : "Resemble Js helper for CodeceptJS, with Support for Playwright, Webdriver, TestCafe, Puppeteer & Appium", "repository" : {"type" : "git", "url" : "git@github.com:Percona-Lab/codeceptjs-resemblehelper.git"}, "dependencies" : {"assert" : "^1.5.0...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "dependencies": {"type": "object", "properties": {"assert"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"H4": {"type": "string"}, "P84049": {"type": "string"}, "H4_MYRRU": {"type": "string"}, "Histone H4": {"type": "string"}, "His4": {"type": "string"}}, "required": ["H4", "P84049", "H4_MYRRU", "Histone H4", "His4"], "$schema": "ht...
{"H4" : "P84049", "P84049" : "P84049", "H4_MYRRU" : "P84049", "Histone H4" : "P84049", "His4" : "P84049"}
json_instruct
{"type": "object", "properties": {"H4": {"type": "string"}, "P84049": {"type": "string"}, "H4_MYRRU": {"type": "string"}, "Histone H4": {"type": "string"}, "His4": {"type": "string"}}, "required": ["H4", "P84049", "H4_MYRRU", "Histone H4", "His4"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"t...
{"text" : {"0" : {"m1" : "\u0627\u0632 \u06a9\u0645 \u062e\u0648\u0631\u062f\u0646 \u0632\u06cc\u0631\u06a9 \u0648 \u0647\u0634\u06cc\u0627\u0631 \u0634\u0648\u06cc", "m2" : "\u0648\u0632 \u067e\u0631\u062e\u0648\u0631\u062f\u0646 \u0627\u0628\u0644\u0647 \u0648 \u0628\u06cc\u06a9\u0627\u0631 \u0634\u0648\u06cc"}, "1" ...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"},...
{"resourceType" : "ValueSet", "id" : "2.16.840.1.114222.4.11.7123", "meta" : {"source" : "https://phinvads.cdc.gov/vads/ViewValueSet.action?oid=2.16.840.1.114222.4.11.7123"}, "url" : "http://phinvads.cdc.gov/fhir/ValueSet/2.16.840.1.114222.4.11.7123", "version" : "3", "name" : "PHVS_OnsetLabor_NCHS", "title" : "Onset L...
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"source": {"type": "string"}}, "required": ["source"]}, "url": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "status": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "integer"}, "terraform_version": {"type": "string"}, "serial": {"type": "integer"}, "lineage": {"type": "string"}, "outputs": {"type": "object", "properties": {"foo": {"type": "object", "pr...
{"version" : 4, "terraform_version" : "0.12.10", "serial" : 116, "lineage" : "27d9cbe4-22db-3bb4-083c-819f1f440aa6", "outputs" : {"foo" : {"value" : "foo-value", "type" : "string"}}, "resources" : [{"module" : "module.vpc-remote", "mode" : "managed", "type" : "google_compute_network", "name" : "network", "provider" : "...
json_instruct
{"type": "object", "properties": {"version": {"type": "integer"}, "terraform_version": {"type": "string"}, "serial": {"type": "integer"}, "lineage": {"type": "string"}, "outputs": {"type": "object", "properties": {"foo": {"type": "object", "properties": {"value": {"type": "string"}, "type": {"type": "string"}}, "requir...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"rome.css": {"type": "string"}, "rome.js": {"type": "string"}, "rome.min.css": {"type": "string"}, "rome.min.js": {"type": "string"}, "rome.standalone.js": {"type": "string"}, "rome.standalone.min.js": {"type": "st...
{"rome.css" : "sha512-AlBOJfrpYtivQV1wTFbTv3RmtEeKmcJxjwA0pw47iW9C0d1fNeWlzq6lk5t4HxpIf3iSGcE55YkR3hb7CK+GAg==", "rome.js" : "sha512-MQWUImP1K59Ke5rmQ7ElqGlseBKCL3FycMNzd+sduOstq+TlY5vLsAvJAFzQOTfBizHijiZgDIFci7hbOBsenA==", "rome.min.css" : "sha512-zeRWmS/cHqOnEtNKxddI7K8Ky9hSiiBeA3cUgqgMzn+U7U3aLu39x+GSODWLut2//80iVhv...
json_instruct
{"type": "object", "properties": {"rome.css": {"type": "string"}, "rome.js": {"type": "string"}, "rome.min.css": {"type": "string"}, "rome.min.js": {"type": "string"}, "rome.standalone.js": {"type": "string"}, "rome.standalone.min.js": {"type": "string"}}, "required": ["rome.css", "rome.js", "rome.min.css", "rome.min.j...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "string"}, "title": {"type": "string"}}, "required": ["c...
{"courseCode" : "RE4221", "courseCredit" : "4", "description" : "This module aims to expose students to global urbanisation trends that urban planning must respond to. Topics chosen for discussion in class are directly relevant to the Singapore context such as smart nation, resilience, urban farming and compact vertica...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "prereqTree", "ti...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type...
{"id" : 404410277, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "c80368c0253a5709e8c495cace40c909", "wof:id" : 404410277, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.81334578595395, 50.19829987659212, 2.86229032417992, 50.23645730710271...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"casing": {"type": "string"}}, "required": ["casing"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/s...
{"parent" : "create:block/encased_shaft/base", "textures" : {"casing" : "create:block/andesite_casing"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"casing": {"type": "string"}}, "required": ["casing"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "strin...
{"short_name" : "Bike Berlin", "name" : "An easy way to get around the city", "icons" : [{"src" : "/bike.png", "sizes" : "64x64 32x32 24x24 16x16", "type" : "image/x-icon"}, {"src" : "/bike.png", "sizes" : "192x192", "type" : "image/x-icon"}, {"src" : "/bike1.png", "sizes" : "512x512", "type" : "image/png"}], "start_ur...
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, "required": ["src", "sizes", "type"]}}, "start_url": {"type": "string...
Generate a valid JSON object that conforms to the following 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"...
{"name" : "MMCategory", "version" : "0.1.0", "summary" : "MMCategory is simple to use.", "description" : "MMCategory is simple to use to develop", "homepage" : "https://github.com/grammermao/MMCategoty", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"yuchen" : "grammerxxss@163.com"}, "platforms" : {"io...
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"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "r...
{"name" : "@signalk/aisreporter", "version" : "1.0.1", "description" : "Signal K Node Server plugin to report your position to Marine Traffic http://www.marinetraffic.com/ and similar aggregators", "main" : "index.js", "keywords" : ["signalk-node-server-plugin"], "author" : "Teppo Kurki <teppo.kurki@iki.fi>", "reposito...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "propertie...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "str...
{"unversionedId" : "essays/introduction", "id" : "essays/introduction", "title" : "Introduction", "description" : "Essays provide a place for all developers to write independent articles. The articles here, don't need a unified theme. Each article might contain quite different topic, including:", "source" : "@site/../v...
json_instruct
{"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "tags": {"type": "array", "item...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/...
[{"year" : 1947, "sex" : "F", "n" : 6, "prop" : 3.3e-06}, {"year" : 1955, "sex" : "F", "n" : 5, "prop" : 2.49e-06}, {"year" : 1956, "sex" : "F", "n" : 8, "prop" : 3.88e-06}, {"year" : 1958, "sex" : "F", "n" : 7, "prop" : 3.39e-06}, {"year" : 1961, "sex" : "F", "n" : 10, "prop" : 4.82e-06}, {"year" : 1962, "sex" : "F", ...
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#"}
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" : 1125877243, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "abe4723584425a63b3a362438c3b20e7", "wof:id" : 1125877243, "wof:repo" : "whosonfirst-data-admin-gb"}, "bbox" : [-0.9580955, 54.0775695, -0.9580955, 54.0775695], "geometry" : {"coordinates" : [-0.958...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bin": {"type": "object", "properties": {"mqo": {"type": "string"}}, "required": ["mq...
{"name" : "node-mqo", "description" : "Optimize CSS file for specified width and height.", "version" : "0.1.0", "author" : "Kyo Nagashima <hail2u@gmail.com> (https://kyonagashima.com/)", "bin" : {"mqo" : "./bin/mqo"}, "bugs" : {"url" : "https://github.com/hail2u/node-mqo/issues"}, "dependencies" : {"matchmedia" : "^0.1...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "bin": {"type": "object", "properties": {"mqo": {"type": "string"}}, "required": ["mqo"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obje...
{"hash" : "0x02ac87edacce4b48e15291fe347ed080ca40ebde57c5b9f914dd9cd92f19fe07", "parentHash" : "0xd25c9300e646a91bf5280bb5a834bff06115aced7a8eff9f1ac68926c6cac824", "number" : 36350, "timestamp" : 1438755209, "nonce" : "0x7b6c7437926bf6f4", "difficulty" : 1282784187865, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_...
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["640104011001", "\u94f6\u8679\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["640104011002", "\u516b\u91cc\u6865\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["640104011003", "\u53cc\u5e84\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["640104011004", "\u6ee1\u6625\u793e\u533a\u5c45\u59d4\u4f1a", "112", "0"], ["6401040...
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": {"mnf": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "pluralName": {"type": "string"}, "shortcut": {"type": "string"}, "classId": {"type": "string"}, "docIdCode": {"type": "str...
{"mnf" : {"fullName" : "V\u00fdroba", "shortName" : "V\u00fdroba", "pluralName" : "V\u00fdroba", "shortcut" : "VRB", "classId" : "mnf", "docIdCode" : "46", "taxDir" : 0, "icon" : "iconProduction", "tradeDir" : 0, "docDir" : 1, "useTax" : 0, "acc" : 0, "headerStyle" : "mnf", "showInfo2" : "wg", "showDate" : "c", "docNum...
json_instruct
{"type": "object", "properties": {"mnf": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "pluralName": {"type": "string"}, "shortcut": {"type": "string"}, "classId": {"type": "string"}, "docIdCode": {"type": "string"}, "taxDir": {"type": "integer"}, "icon": {"type": "s...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"success": {"type": "boolean"}, "timestamp": {"type": "integer"}, "historical": {"type": "boolean"}, "base": {"type": "string"}, "date": {"type": "string"}, "rates": {"type": "object", "properties": {"USD": {"type": "number"...
{"success" : true, "timestamp" : 1363478399, "historical" : true, "base" : "EUR", "date" : "2013-03-16", "rates" : {"USD" : 1.307716, "AUD" : 1.256333, "CAD" : 1.333812, "PLN" : 4.150819, "MXN" : 16.259128}}
json_instruct
{"type": "object", "properties": {"success": {"type": "boolean"}, "timestamp": {"type": "integer"}, "historical": {"type": "boolean"}, "base": {"type": "string"}, "date": {"type": "string"}, "rates": {"type": "object", "properties": {"USD": {"type": "number"}, "AUD": {"type": "number"}, "CAD": {"type": "number"}, "PLN"...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bootstrap-modal"]
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": {"JavaScript": {"type": "integer"}, "HTML": {"type": "integer"}, "CSS": {"type": "integer"}}, "required": ["JavaScript", "HTML", "CSS"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"JavaScript" : 277809, "HTML" : 3863, "CSS" : 2693}
json_instruct
{"type": "object", "properties": {"JavaScript": {"type": "integer"}, "HTML": {"type": "integer"}, "CSS": {"type": "integer"}}, "required": ["JavaScript", "HTML", "CSS"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"dataStudio": {"type": "object", "properties": {"name": {"type": "string"}, "company": {"type": "string"}, "companyUrl": {"type": "string"}, "addonUrl": {"type": "string"}, "supportUrl": {"type": "string"}, "descrip...
{"dataStudio" : {"name" : "New York Times Most Popular Stories", "company" : "Google Data Studio Developer Relations", "companyUrl" : "https://developers.google.com/datastudio/", "addonUrl" : "https://github.com/googledatastudio/community-connectors/", "supportUrl" : "https://github.com/googledatastudio/community-conne...
json_instruct
{"type": "object", "properties": {"dataStudio": {"type": "object", "properties": {"name": {"type": "string"}, "company": {"type": "string"}, "companyUrl": {"type": "string"}, "addonUrl": {"type": "string"}, "supportUrl": {"type": "string"}, "description": {"type": "string"}}, "required": ["name", "company", "companyUrl...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "1...
{"name" : "\u904a\u622f\u738b\u30c7\u30c3\u30ad\u30b5\u30dd\u30fc\u30c8(\u30a4\u30f3\u30dd\u30fc\u30c8/\u30a8\u30af\u30b9\u30dd\u30fc\u30c8)", "author" : "TomoTomo", "version" : "0.5.0.0", "manifest_version" : 2, "icons" : {"16" : "img/icon-16.png", "48" : "img/icon-48.png", "128" : "img/icon-128.png"}, "content_script...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "manifest_version": {"type": "integer"}, "icons": {"type": "object", "properties": {"16": {"type": "string"}, "48": {"type": "string"}, "128": {"type": "string"}}, "required": ["16", "48", "128"]},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string...
{"key" : "G#", "suffix" : "maj7sus2sus4/F#", "positions" : [{"frets" : "211123", "fingers" : "211134", "barres" : "1", "capo" : "true"}, {"frets" : "x96686", "fingers" : "041131", "barres" : "6", "capo" : "true"}, {"frets" : "ebbcbb", "fingers" : "411211", "barres" : "11", "capo" : "true"}, {"frets" : "edddef", "finger...
json_instruct
{"type": "object", "properties": {"key": {"type": "string"}, "suffix": {"type": "string"}, "positions": {"type": "array", "items": {"type": "object", "properties": {"frets": {"type": "string"}, "fingers": {"type": "string"}, "barres": {"type": "string"}, "capo": {"type": "string"}}, "required": ["frets", "fingers", "ba...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition"...
{"relation" : [["FAQ Name", "Games for Windows Live Achievements", "FAQ Name"], ["Author", "William_Blase", "Author"], ["Version", "1.00", "Version"], ["Last Updated", "05/26/11", "Last Updated"]], "pageTitle" : "DiRT 3 FAQs, Guides, and Walkthoughs for PC (Sorted by Name)", "title" : "", "url" : "http://www.gamerevolu...
json_instruct
{"type": "object", "properties": {"relation": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}, "pageTitle": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "hasHeader": {"type": "boolean"}, "headerPosition": {"type": "string"}, "tableType": {"type": "string"}, "tab...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "importPath": {"type": "string"}, "codecov": {"type": "string"}}, "required": ["name", "importPath", "codecov"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "aah", "importPath" : "aahframe.work", "codecov" : "https://codecov.io/gh/go-aah/aah/branch/master"}, {"name" : "vfs", "importPath" : "aahframework.org/vfs.v0", "codecov" : "https://codecov.io/gh/go-aah/vfs/branch/master"}, {"name" : "router", "importPath" : "aahframework.org/router.v0", "codecov" : "https:/...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "importPath": {"type": "string"}, "codecov": {"type": "string"}}, "required": ["name", "importPath", "codecov"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1922, 5], [1925, 7], [1926, 5], [1971, 7], [1974, 8], [1976, 6], [1977, 5], [1978, 10], [1980, 5], [1981, 9], [1982, 9], [1985, 7], [1987, 5], [1988, 8], [1994, 8], [1995, 6], [1996, 9], [1997, 7], [1998, 8], [1999, 11], [2000, 11], [2001, 7], [2002, 13], [2003, 11], [2004, 9], [2005, 7], [2006, 8], [2007, 16], [2008...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"actions": {"type": "array", "items": {}}, "body": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "object", "properties": {"items": {"type": "array", "items...
{"actions" : [], "body" : [{"columns" : [{"items" : [{"backgroundColor" : "#FF982374", "type" : "Image", "url" : "https://adaptivecards.io/content/cats/1.png"}], "type" : "Column", "width" : "stretch"}, {"items" : [{"backgroundColor" : "#FF128192", "type" : "Image", "url" : "https://adaptivecards.io/content/cats/1.png"...
json_instruct
{"type": "object", "properties": {"actions": {"type": "array", "items": {}}, "body": {"type": "array", "items": {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"backgroundColor": {"type": "str...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"/js/app.js" : "/js/app.js?id=ed7cd8785de61bbd921c", "/css/app.css" : "/css/app.css?id=8c5232a92112ff557f35"}
json_instruct
{"type": "object", "properties": {"/js/app.js": {"type": "string"}, "/css/app.css": {"type": "string"}}, "required": ["/js/app.js", "/css/app.css"], "$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" : "1898c72e344be9aa458ad6b5286d50a9bf274e0b"}
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": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "inte...
[{"id" : 44773, "idParent" : 44771, "namaWilayah" : "DUKUHMENCEK", "tingkatWilayah" : 4, "idPro" : 42385, "idKab" : 44643, "idKec" : 44771, "idKel" : 44773, "namaPro" : "JAWA TIMUR", "namaKab" : "JEMBER", "namaKec" : "SUKORAMBI", "namaKel" : "DUKUHMENCEK", "kodeWilayah" : "35.09.15.2002"}, {"id" : 44772, "idParent" : 4...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "idParent": {"type": "integer"}, "namaWilayah": {"type": "string"}, "tingkatWilayah": {"type": "integer"}, "idPro": {"type": "integer"}, "idKab": {"type": "integer"}, "idKec": {"type": "integer"}, "idKel": {"type": "integer"}, "nama...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"},...
{"\u5de5\u5ee0\u540d\u7a31" : "\u76c8\u8f1d\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99628701", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "08610003302867", "\u5de5\u5ee0\u5730\u5740" : "\u6843\u5712\u5e02\u5e73\u93ae\u5340\u6771\u52e2\u91cc\u5e73\u6771\u8def\u4e00\u6bb5\u4e00\u4e03...
json_instruct
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls...
{"nom" : "Vivier-au-Court", "circ" : "1\u00e8re circonscription", "dpt" : "Ardennes", "inscrits" : 2053, "abs" : 1350, "votants" : 703, "blancs" : 53, "nuls" : 28, "exp" : 622, "res" : [{"nuance" : "LR", "nom" : "Mme B\u00e9reng\u00e8re POLETTI", "voix" : 383}, {"nuance" : "REM", "nom" : "M. Jean-Pierre MORALI", "voix"...
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"...
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" : 404394005, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "01edd3a94791ef3aa9531f562ad4f0a0", "wof:id" : 404394005, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [4.64394395286491, 44.02001951362988, 4.71621855107858, 44.04464003238917...
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": ["...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"project_name": {"type": "string"}, "runtime": {"type": "string"}}, "required": ["project_name", "runtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"project_name" : "dynamodb_event_reader", "runtime" : "python3.7"}
json_instruct
{"type": "object", "properties": {"project_name": {"type": "string"}, "runtime": {"type": "string"}}, "required": ["project_name", "runtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"pci_projects_project_storages_containers_users_delete_title": {"type": "string"}, "pci_projects_project_storages_containers_users_delete_label": {"type": "string"}, "pci_projects_project_storages_containers_users_d...
{"pci_projects_project_storages_containers_users_delete_title" : "Supprimer l'utilisateur", "pci_projects_project_storages_containers_users_delete_label" : "Supprimer", "pci_projects_project_storages_containers_users_delete_question" : "\u00cates-vous s\u00fbr\u00b7e de vouloir supprimer cet utilisateur des utilisateur...
json_instruct
{"type": "object", "properties": {"pci_projects_project_storages_containers_users_delete_title": {"type": "string"}, "pci_projects_project_storages_containers_users_delete_label": {"type": "string"}, "pci_projects_project_storages_containers_users_delete_question": {"type": "string"}, "pci_projects_project_storages_con...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "main":...
{"name" : "livejournal-feeds", "version" : "0.1.1", "homepage" : "https://github.com/1999/livejournal-feeds", "author" : "Dmitry Sorin <info@staypositive.ru>", "description" : "Build RSS channel with your Livejournal friends' private posts", "contributors" : ["Dmitry Sorin (http://www.staypositive.ru)"], "main" : "./in...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "repository": {"type": "object", "prop...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["130521103000", "\u664f\u5bb6\u5c6f\u9547", "4", "1"], ["130521104000", "\u5357\u77f3\u95e8\u9547", "4", "1"], ["130521105000", "\u7f8a\u8303\u9547", "4", "1"], ["130521106000", "\u7687\u5bfa\u9547", "4", "1"], ["130521107000", "\u4f1a\u5b81\u9547", "4", "1"], ["130521108000", "\u897f\u9ec4\u6751\u9547", "4", "1"], [...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation"...
{"web" : [{"value" : ["\u632f\u52a8", "\u632f\u8361", "\u6446\u52a8"], "key" : "Oscillate"}, {"value" : ["\u632f\u52a8\u5206\u6790"], "key" : "oscillate analyses"}, {"value" : ["\u632f\u52a8"], "key" : "vibrate oscillate"}], "query" : "oscillate", "translation" : ["\u632f\u8361"], "errorCode" : "0", "dict" : {"url" : "...
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCod...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "arr...
{"name" : "researchpooler", "description" : "Automating research publications discovery and analysis. For example, ever wish your computer could automatically open papers that are most similar to a paper at an arbitrary url? How about finding all papers that report results on some dataset? Let's re-imagine literature r...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "null"}, "starNum": {"type": "integer"}, "folkNum": {"type": "integer"}, "watchNum": {"type": "integer"}, "topic": {"type": "array", "items": {}}}, "required": ["name", "description", "license", "starNum...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items...
{"rustc" : 14330414595928666026, "features" : "[]", "target" : 13038601188422420705, "profile" : 9251013656241001069, "path" : 1684066648322511884, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/branches-bae477d530ec2dc9/dep-bin-branches"}}], "rustflags" : [], "metadata" : 77979486865684240...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object"...
{"name" : "http-cache-tests", "version" : "0.2.1", "description" : "Tests for HTTP caches", "homepage" : "", "author" : "Mark Nottingham", "license" : "BSD-3-Clause", "engines" : {"node" : ">=10.8.0"}, "dependencies" : {"http-server" : "^0.11.1", "node-fetch" : "^2.2.0"}, "scripts" : {"server" : "node server.js", "cli"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "d...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, ...
{"name" : "holloway87/hw-ajax-modal", "type" : "component", "description" : "jQuery plugin to load modal via ajax resource", "keywords" : ["jquery", "plugin", "bootstrap", "modal"], "homepage" : "https://github.com/holloway87/jquery-ajax-modal", "license" : "WTFPL", "authors" : [{"name" : "Thomas Rudolph", "email" : "m...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/crafting/fissionfurnacenew/fissionfurnacenew.object": {"type": "array", "items": {"type": "str...
[{"DeniedAlternatives" : [], "Files" : {"objects/crafting/fissionfurnacenew/fissionfurnacenew.object" : ["/description"]}, "Texts" : {"Chs" : "\u8fd9\u53f0\u53ef\u9760\u7684\u673a\u5668\u80fd\u591f\u52a0\u5de5\u6700\u575a\u97e7\u7684\u91d1\u5c5e\u3002", "Eng" : "This reliable unit is capable of making even the toughest...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/crafting/fissionfurnacenew/fissionfurnacenew.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/crafting/fissionfurnacenew/f...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": ...
{"name" : "bloggeria", "version" : "1.0.0", "description" : "", "author" : {"name" : "Yasya El Hakim", "email" : "yasyaelhakim@gmail.com", "url" : "https://www.elcreativeacademy.com/"}, "keywords" : ["Blogger"], "scripts" : {"build" : "gulp build:production", "build:dev" : "gulp build:development"}, "repository" : {"ty...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "email", "url"]}, "keywords": {"type": "ar...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"shot_index": {"type": "integer"}, "pulse_uuids": {"type": "array", "items": {"type": "string"}}}, "required": ["shot_index", "pulse_uuids"]}, "$schema": "http://json-schema.org/draft-07/sc...
[{"shot_index" : 0, "pulse_uuids" : ["4f248c5f-b56f-9b6d-831b-2af6bf4b3a2d", "ec2b9585-00c0-1f04-1359-c851f39f18e9", "c6f384dd-e900-72f1-aecb-23c78c1eba6a", "768742a9-cbf2-bfb0-4e1a-2039bafa9cc8", "b6d0afe8-3544-0a56-1741-73014f87e1c1", "f2c24cc9-ea1a-2b3d-2ebc-040a28d67b7c", "f0f061f2-214e-d8f2-2744-bcc4c64cd1d6", "d9...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"shot_index": {"type": "integer"}, "pulse_uuids": {"type": "array", "items": {"type": "string"}}}, "required": ["shot_index", "pulse_uuids"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type"...
[{"id" : 28643, "title" : "Lost Gods", "year" : 2018, "type" : "novel", "imageName" : "my_lostgods.jpg", "nominations" : 0, "wins" : -1}, {"id" : 34146, "title" : "Pale Kings", "year" : 2019, "type" : "novel", "imageName" : "my_paleking.jpg", "nominations" : 0, "wins" : -1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "im...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[127.25, 43.916666666666664], [127.25, 44.0], [127.375, 44.0], [127.375, 43.916666666666664], [127.25, 43.916666666666664]]]}, "properties" : {"code" : 652772, "url" : "http://madefor.github.io/0410/api/v1/652772.geojson", "view" : "https://github...
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"}, "email": {"type": "string"}, "license": {"type": "string"}, "bin...
{"name" : "commander-gulp-util", "version" : "2.0.5", "description" : "Compilaci\u00f3n utiles din\u00e1micamente", "main" : "./bin/util.js", "author" : "Jes\u00fas Antonio Ugaz Vegas", "email" : "jesusugazv@gmail.com", "license" : "MIT", "bin" : {"commander-gulp-util" : "./bin/util.js"}, "dependencies" : {"chalk" : "^...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "email": {"type": "string"}, "license": {"type": "string"}, "bin": {"type": "object", "properties": {"commander-gulp-util": {"type": "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"SesEmailForwardingFunction": {"type": "object", "properties": {"FROM_ADDRESS": {"type": "string"}, "FORWARD_ADDRESS": {"type": "string"}}, "required": ["FROM_ADDRESS", "FORWARD_ADDRESS"]}}, "required": ["SesEmailForwardingFunc...
{"SesEmailForwardingFunction" : {"FROM_ADDRESS" : "sender@your_verified_domain.com", "FORWARD_ADDRESS" : "monitored_inbox@some_domain.com"}}
json_instruct
{"type": "object", "properties": {"SesEmailForwardingFunction": {"type": "object", "properties": {"FROM_ADDRESS": {"type": "string"}, "FORWARD_ADDRESS": {"type": "string"}}, "required": ["FROM_ADDRESS", "FORWARD_ADDRESS"]}}, "required": ["SesEmailForwardingFunction"], "$schema": "http://json-schema.org/draft-07/schema#...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "Midjan", "long" : "<i>Meaning:</i> \"Midjan\", a son of Abraham; also his country and (collectively) his descendants.<br/><i>Usage:</i> Midian, Midianite.<br/><i>Source:</i> the same as \"H4079\";"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties":...
{"name" : "AzureDataLakeStore1", "type" : "Microsoft.DataFactory/factories/linkedservices", "properties" : {"annotations" : [], "type" : "AzureDataLakeStore", "typeProperties" : {"dataLakeStoreUri" : "adl://findcarelake.azuredatalakestore.net", "servicePrincipalId" : "68d512e1-d664-4f50-bb0b-d7d869e196bd", "servicePrin...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"annotations": {"type": "array", "items": {}}, "type": {"type": "string"}, "typeProperties": {"type": "object", "properties": {"dataLakeStoreUri": {"type": "string"}, "servicePrincip...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"titl...
{"id" : "3749533c-fd48-41ce-b4fb-d4538af5c4c9", "playerTags" : [], "teamTags" : ["36569151-a2fb-43c1-9df7-2df512424c82"], "gameTags" : [], "metadata" : {"title" : "Inconvenience -", "votes" : 7091284, "renoId" : "inconvenience_minus"}, "created" : "2021-03-18T15:31:42.862Z", "season" : 13, "tournament" : -1, "type" : 5...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {}}, "metadata": {"type": "object", "properties": {"title": {"type": "string"}, "votes": {"type": "integer"}, "reno...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vertices" : [[17, 80], [24, 73], [33, 82], [8, 86], [20, 84], [47, 73], [55, 77], [56, 48], [48, 64], [53, 51], [71, 66], [62, 62], [54, 68], [54, 56], [48, 73], [66, 64], [61, 55], [64, 70], [56, 60], [67, 60], [58, 63], [69, 55], [65, 54], [61, 62], [54, 57], [56, 62], [70, 50], [60, 55], [65, 52], [61, 62], [60, 4...
json_instruct
{"type": "object", "properties": {"vertices": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["vertices"], "$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": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/d...
[{"year" : 1969, "sex" : "F", "n" : 9, "prop" : 5.11e-06}, {"year" : 1970, "sex" : "F", "n" : 33, "prop" : 0}, {"year" : 1971, "sex" : "F", "n" : 12, "prop" : 6.85e-06}, {"year" : 1972, "sex" : "F", "n" : 11, "prop" : 6.82e-06}, {"year" : 1973, "sex" : "F", "n" : 7, "prop" : 4.5e-06}, {"year" : 1974, "sex" : "F", "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": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ...
{"project_info" : {"project_number" : "220743595393", "firebase_url" : "https://twic-reactnative.firebaseio.com", "project_id" : "twic-reactnative", "storage_bucket" : "twic-reactnative.appspot.com"}, "client" : [{"client_info" : {"mobilesdk_app_id" : "1:220743595393:android:afb483b7729939cd6d6480", "android_client_inf...
json_instruct
{"type": "object", "properties": {"project_info": {"type": "object", "properties": {"project_number": {"type": "string"}, "firebase_url": {"type": "string"}, "project_id": {"type": "string"}, "storage_bucket": {"type": "string"}}, "required": ["project_number", "firebase_url", "project_id", "storage_bucket"]}, "client"...
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#"}
[[2007, 8], [2008, 22], [2009, 8], [2010, 10], [2011, 7], [2012, 6], [2013, 7], [2014, 9]]
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": {"mx": {"type": "object", "properties": {"p": {"type": "string"}, "t": {"type": "string"}}, "required": ["p", "t"]}, "mxd": {"type": "string"}}, "required": ["mx", "mxd"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"mx" : {"p" : "'em'eks", "t" : "abbr. \u9ea6\u514b\u65af\u97e6\uff08maxwell, \u78c1\u901a\u91cf\u5355\u4f4d\uff09\uff1b\u4e2d\u6027\uff08Middlesex\uff09"}, "mxd" : "abbr. mixed \u6df7\u5408\u7684"}
json_instruct
{"type": "object", "properties": {"mx": {"type": "object", "properties": {"p": {"type": "string"}, "t": {"type": "string"}}, "required": ["p", "t"]}, "mxd": {"type": "string"}}, "required": ["mx", "mxd"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sp-addinhelpers.es5.js": {"type": "string"}, "sp-addinhelpers.es5.umd.bundle.js": {"type": "string"}, "sp-addinhelpers.es5.umd.bundle.min.js": {"type": "string"}, "sp-addinhelpers.es5.umd.js": {"type": "string"}, "sp-addinhelp...
{"sp-addinhelpers.es5.js" : "sha512-tbQuP/AYC683E3IVzrK4UbWsWHyGzU5eMzqdtmSeiQrGDHcCOp0kl1S4v3bBzsE+ec3vJA4HrUtSGoNoy28CTA==", "sp-addinhelpers.es5.umd.bundle.js" : "sha512-XTQBGwVsH1LcobrO30lM1w3pgPFmCvxEaA4M6rhtwBvrQSQfFkoa7IiDgPBN1HLYGYmToLd5fKflcZKfBxmA0w==", "sp-addinhelpers.es5.umd.bundle.min.js" : "sha512-OO9TR+...
json_instruct
{"type": "object", "properties": {"sp-addinhelpers.es5.js": {"type": "string"}, "sp-addinhelpers.es5.umd.bundle.js": {"type": "string"}, "sp-addinhelpers.es5.umd.bundle.min.js": {"type": "string"}, "sp-addinhelpers.es5.umd.js": {"type": "string"}, "sp-addinhelpers.es5.umd.min.js": {"type": "string"}, "sp-addinhelpers.j...
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": {"eslint": {"type": "string"}, "lint": {"type": "s...
{"name" : "shittylinq", "version" : "0.0.3", "description" : "", "main" : "index.js", "scripts" : {"eslint" : "eslint -c .eslintrc src/", "lint" : "npm run eslint && npm run prettier", "precommit" : "npm run lint", "prettier" : "prettier --write \"./{src,test}/**/*.js\"", "test" : "npm run lint && mocha"}, "prettier" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"eslint": {"type": "string"}, "lint": {"type": "string"}, "precommit": {"type": "string"}, "prettier": {"type": "string...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "kwargs": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "requi...
{"args" : ["geo_field"], "kwargs" : {"type" : "envelope", "coordinates" : [[1, 3], [2, 1]]}, "output" : {"geo_shape" : {"geo_field" : {"shape" : {"type" : "envelope", "coordinates" : [[1, 3], [2, 1]]}}}}}
json_instruct
{"type": "object", "properties": {"args": {"type": "array", "items": {"type": "string"}}, "kwargs": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "coordinates"]}, "output": {"type": "object"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Lua": {"type": "integer"}, "HTML": {"type": "integer"}}, "required": ["Lua", "HTML"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Lua" : 51382, "HTML" : 900}
json_instruct
{"type": "object", "properties": {"Lua": {"type": "integer"}, "HTML": {"type": "integer"}}, "required": ["Lua", "HTML"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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"}, "...
{"body" : "", "user" : "robert-mijakovic", "url" : "https://api.github.com/repos/spack/spack/issues/23467", "updated_at" : "2021-05-07 12:32:40", "created_at" : "2021-05-06 10:39:05", "closed_at" : "2021-05-07 12:32:40", "state" : "closed", "title" : "at-spi2-core: new version, 2.40.1", "number" : 23467, "milestone" : ...
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": ...