input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": ...
{"user" : "kans", "repos" : 1, "login" : "kans", "id" : 986627, "avatar_url" : "https://avatars0.githubusercontent.com/u/986627?v=3", "url" : "https://api.github.com/users/kans", "html_url" : "https://github.com/kans", "followers_url" : "https://api.github.com/users/kans/followers", "following_url" : "https://api.githu...
json_instruct
{"type": "object", "properties": {"user": {"type": "string"}, "repos": {"type": "integer"}, "login": {"type": "string"}, "id": {"type": "integer"}, "avatar_url": {"type": "string"}, "url": {"type": "string"}, "html_url": {"type": "string"}, "followers_url": {"type": "string"}, "following_url": {"type": "string"}, "gist...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "req...
{"name" : "mallos.input", "version" : "0.0.1", "description" : "A portable way of accessing HID devices cross-platform", "main" : "index.js", "authors" : {"name" : "Eric Tuvesson", "email" : "eric.tuvesson@gmail.com"}, "repository" : "https://github.com/Mallos/Mallos.Input", "scripts" : {"dev" : "vuepress dev docs", "b...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}, "repository": {"type": "strin...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "postgres": {"type": "string"}}, "required": ["host", "port", "postgres"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"host" : "welcomeMatServer-app.feathersjs.com", "port" : "PORT", "postgres" : "POSTGRES_URL"}
json_instruct
{"type": "object", "properties": {"host": {"type": "string"}, "port": {"type": "string"}, "postgres": {"type": "string"}}, "required": ["host", "port", "postgres"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"version": {"type": "string"}, "sourceTimeStamp": {"type": "number"}, "outputTimeStamps": {"type": "object", "properties": {"log.json": {"type": "number"}, "out.bin": {"type": "number"}, "out.gltf": {"type": "number"}, "\u6b27\...
{"version" : "2.0.14", "sourceTimeStamp" : 1632726030449.5408, "outputTimeStamps" : {"log.json" : 1634636040288.7715, "out.bin" : 1634636040271.886, "out.gltf" : 1634636040285.838, "\u6b27\u62c9\u9a6c\u672f\u670d.png" : 1634636039602.9778, ".fbm/5DF51CC0/Left Strafe (2).fbm/\u6b27\u62c9\u9a6c\u672f\u670d.png" : 1634636...
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "sourceTimeStamp": {"type": "number"}, "outputTimeStamps": {"type": "object", "properties": {"log.json": {"type": "number"}, "out.bin": {"type": "number"}, "out.gltf": {"type": "number"}, "\u6b27\u62c9\u9a6c\u672f\u670d.png": {"type": "number"}, ".fbm/5DF...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "nu...
{"name" : "ActivFlow", "description" : "Generic, light-weight & extensible Workflow Engine for agile automation of Business Processes | Django, Python", "license" : {"key" : "other", "name" : "Other", "spdx_id" : null, "url" : null}, "starNum" : 347, "folkNum" : 54, "watchNum" : 347, "topic" : ["bpm", "django", "python...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "object", "properties": {"key": {"type": "string"}, "name": {"type": "string"}, "spdx_id": {"type": "null"}, "url": {"type": "null"}}, "required": ["key", "name", "spdx_id", "url"]}, "starNum": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["tribble"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]...
[{"queryName" : "RDS Multi-AZ Deployment Disabled", "severity" : "MEDIUM", "line" : 128, "fileName" : "positive1.yaml"}, {"line" : 148, "fileName" : "positive1.yaml", "queryName" : "RDS Multi-AZ Deployment Disabled", "severity" : "MEDIUM"}, {"severity" : "MEDIUM", "line" : 89, "fileName" : "positive2.json", "queryName"...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"queryName": {"type": "string"}, "severity": {"type": "string"}, "line": {"type": "integer"}, "fileName": {"type": "string"}}, "required": ["queryName", "severity", "line", "fileName"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod...
{"userId" : 55470, "cartId" : "7d56d8f6-138c-4790-87d2-1ef3985a8e54", "preferredProducts" : [1635, 3615], "productReviews" : [{"productId" : 40, "reviewText" : "this platforms is slurpee.", "reviewDate" : "2017-05-09T13:14:38.3546996+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"version": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "dna": {"type": "object", "properties": {"belly": {"type": "string"}, "bellybutton": {"type": "...
{"version" : "19dd", "id" : "eech", "name" : "Eech", "short_name" : "Eech", "dna" : {"belly" : "1", "bellybutton" : "0", "body" : "1", "cheek" : "1", "collar" : "0", "ear" : "7", "eye" : "3", "hair" : "0", "head" : "3", "horn" : "2", "mouth" : "2", "nose" : "2", "tail" : "0", "accessory" : "0", "line_rgb" : "6c4331", "...
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "short_name": {"type": "string"}, "dna": {"type": "object", "properties": {"belly": {"type": "string"}, "bellybutton": {"type": "string"}, "body": {"type": "string"}, "cheek": {"type": "string"}, "coll...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ios" : "4.2.1"}
json_instruct
{"type": "object", "properties": {"ios": {"type": "string"}}, "required": ["ios"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "...
{"id" : "1016", "provinceId" : "18", "regencyId" : "08", "districtId" : "04", "name" : "Campur Asri"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties":...
{"name" : "node-site", "version" : "0.0.0", "authors" : ["Jacob Gable <jacob.gable@gmail.com>"], "license" : "MIT", "private" : true, "dependencies" : {"jquery" : "~2.1.0", "lodash" : "~2.4.1", "handlebars" : "~1.3.0", "ember-qunit" : "https://github.com/rpflorence/ember-qunit.git#master", "ember" : "~1.5.0", "ember-da...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"jquery": {"type": "string"}, "lodash": {"type": "strin...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"identifier": {"type": "string"}, "customer": {"type": "string"}, "groups": {"type": "array", "items": {}}, "userGroups": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "...
{"identifier" : "user1@merp.com", "customer" : "sysdef", "groups" : [], "userGroups" : [{"id" : "2659191e-aad4-4302-a94e-9667e1517127", "name" : "Everyone", "permissions" : [], "customer" : "sysdef", "properties" : {"nameEditable" : false, "permissionsEditable" : true, "usersEditable" : false}, "description" : "System ...
json_instruct
{"type": "object", "properties": {"identifier": {"type": "string"}, "customer": {"type": "string"}, "groups": {"type": "array", "items": {}}, "userGroups": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "c...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "populat...
{"type" : "Feature", "properties" : {"name" : "Boise County", "fips" : "16015", "state_code" : 16, "county_code" : 15, "population" : 7831, "countrylevel_id" : "fips:16015", "census_data" : {"COUNTYNS" : "00395157", "AFFGEOID" : "0500000US16015", "LSAD" : "06", "ALAND" : 4919826454, "AWATER" : 19104286}}, "geometry" : ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "fips": {"type": "string"}, "state_code": {"type": "integer"}, "county_code": {"type": "integer"}, "population": {"type": "integer"}, "countrylevel_id": {"type": "string"}, "census_d...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinate...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[8.895772, 44.403685], [8.894764, 44.403595], [8.894386, 44.405302], [8.895394, 44.405392], [8.895772, 44.403685]]]}, "properties" : {"classification" : "ship", "identificationscore" : 0.999999046325683...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "arra...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"roleName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "assignableScopes": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "ob...
{"roleName" : "IoT Hub Data Contributor", "type" : "BuiltInRole", "description" : "Allows for full access to IoT Hub data plane operations.", "assignableScopes" : ["/"], "permissions" : [{"actions" : [], "notActions" : [], "dataActions" : ["Microsoft.Devices/IotHubs/*"], "notDataActions" : []}], "createdOn" : "2021-04-...
json_instruct
{"type": "object", "properties": {"roleName": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "assignableScopes": {"type": "array", "items": {"type": "string"}}, "permissions": {"type": "array", "items": {"type": "object", "properties": {"actions": {"type": "array", "items": {}}, "not...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"onCallStarted": {"type": "string"}}, "required": ["onCallStarted"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, ...
{"className" : "io.deephaven.client.impl.SessionMiddleware", "methods" : {"onCallStarted" : ":param info: org.apache.arrow.flight.CallInfo\n:return: org.apache.arrow.flight.FlightClientMiddleware"}, "path" : "io.deephaven.client.impl.SessionMiddleware", "typeName" : "class"}
json_instruct
{"type": "object", "properties": {"className": {"type": "string"}, "methods": {"type": "object", "properties": {"onCallStarted": {"type": "string"}}, "required": ["onCallStarted"]}, "path": {"type": "string"}, "typeName": {"type": "string"}}, "required": ["className", "methods", "path", "typeName"], "$schema": "http://...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state...
{"coverage" : {"US Census" : {"geoid" : "06057", "name" : "Nevada County", "state" : "California"}, "country" : "us", "state" : "ca", "county" : "Nevada"}, "attribution" : "Nevada County", "data" : "http://www.mynevadacounty.com/nc/igs/gis/docs/Digital%20Data%20Library/AddressPoint.zip", "website" : "http://www.mynevad...
json_instruct
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state"]}, "country": {"type": "string"}, "state": {"type": "string"}, "coun...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"test": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}...
{"presets" : ["@babel/preset-env", "@babel/preset-react"], "env" : {"test" : {"presets" : ["react-app"]}}}
json_instruct
{"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"test": {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}}, "required": ["presets"]}}, "required": ["test"]}}, "required": ["presets", "env"], "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"...
{"description" : "No matter whether you run a web app, search for gravitational waves,\nor maintain a backup script: being responsible for a piece of\nsoftware or infrastructure means that you either get a pager right\naway, or that you get angry calls from people affected by outages.\nBeing paged at 4am in everyday li...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "duration": {"type": "integer"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "s...
{"id" : 3552, "title" : ["[Glatoph, Glacier]"], "description" : ["Hills of wind-sculpted snow block what little you might be able to see through the blizzard. Sliding slightly to the north each time you stand still, you conclude that the ground beneath the snow rises in the other direction."], "paths" : ["Obvious path...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "array", "items": {"type": "string"}}, "description": {"type": "array", "items": {"type": "string"}}, "paths": {"type": "array", "items": {"type": "string"}}, "location": {"type": "string"}, "wayto": {"type": "object", "properties": {"3553":...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]...
[{"manufacturer" : "Lenovo", "market_name" : "Lenovo TAB3 730F", "codename" : "TB3-730F", "model" : "Lenovo TB3-730F"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"metadict_name": {"type": "string"}, "metadict_description": {"type": "array", "items": {"type": "string"}}, "metadict_version": {"type": "string"}, "metadict_required": {"type": "array", "items": {}}}, "required": ["metadic...
{"metadict_name" : "meta", "metadict_description" : ["dictionary describing the meta info itself"], "metadict_version" : "3.0.0", "metadict_required" : []}
json_instruct
{"type": "object", "properties": {"metadict_name": {"type": "string"}, "metadict_description": {"type": "array", "items": {"type": "string"}}, "metadict_version": {"type": "string"}, "metadict_required": {"type": "array", "items": {}}}, "required": ["metadict_name", "metadict_description", "metadict_version", "metadict...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["gene...
{"generated_at" : "2017-01-27T09:37:24.751849", "required_by" : ["carbonate"], "requires" : ["twisted", "txamqp"], "package" : "carbon"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "tit...
{"title" : {"zh" : "\u5730\u7403\u6a21\u5f0f - \u70b9\u56fe\u5c42", "en" : "Earth Mode - pointLayer"}, "demos" : [{"filename" : "point.js", "title" : "\u70b9\u56fe\u5c42", "screenshot" : "https://gw.alipayobjects.com/mdn/rms_816329/afts/img/A*-kG0TIHBfvgAAAAAAAAAAAAAARQnAQ"}, {"filename" : "cylinder.js", "title" : "\u5...
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"zh": {"type": "string"}, "en": {"type": "string"}}, "required": ["zh", "en"]}, "demos": {"type": "array", "items": {"type": "object", "properties": {"filename": {"type": "string"}, "title": {"type": "string"}, "screenshot": {"type": "string"}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"mainnet": {"type": "object", "properties": {"chainId": {"type": "string"}, "provider": {"type": "string"}, "explore": {"type": "string"}}, "required": ["chainId", "provider", "explore"]}, "rinkeby": {"type": "object...
{"mainnet" : {"chainId" : "1", "provider" : "https://mainnet.infura.io/v3/a2ec37881c064ee393f1e5b747ebf870", "explore" : "https://etherscan.io/"}, "rinkeby" : {"chainId" : "4", "provider" : "https://rinkeby.infura.io/v3/a2ec37881c064ee393f1e5b747ebf870", "explore" : "https://rinkeby.etherscan.io/"}, "localhost" : {"cha...
json_instruct
{"type": "object", "properties": {"mainnet": {"type": "object", "properties": {"chainId": {"type": "string"}, "provider": {"type": "string"}, "explore": {"type": "string"}}, "required": ["chainId", "provider", "explore"]}, "rinkeby": {"type": "object", "properties": {"chainId": {"type": "string"}, "provider": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"...
{"slug" : "hunaih", "relevant-countries" : ["hu"], "name" : "Nemzeti Adatv\u00e9delmi \u00e9s Inform\u00e1ci\u00f3szabads\u00e1g Hat\u00f3s\u00e1g (Hungarian National Authority for Data Protection and Freedom of Information)", "address" : "Budapest\nSzil\u00e1gyi Erzs\u00e9bet fasor 22/C.\n1125\nHungary", "phone" : "+3...
json_instruct
{"type": "object", "properties": {"slug": {"type": "string"}, "relevant-countries": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}, "fax": {"type": "string"}, "email": {"type": "string"}, "web": {"type": "string"}, "sources": {"type...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "mod...
{"name" : "trunk", "version" : "0.0.0", "homepage" : "https://github.com/danmconrad/trunk", "authors" : ["Dan Conrad <dan.m.conrad@gmail.com>"], "description" : "Dead Simple Truncation", "main" : "js/index.js", "moduleType" : ["globals"], "keywords" : ["trunk", "truncation"], "license" : "MIT", "ignore" : ["**/.*", "bo...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords":...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "d...
{"name" : "Pumpville", "symbol" : "PVL", "address" : "0xEfdAbf928778AA899B42da03c34dDAAaF6E4CeE5", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"notify": {"type": "object", "properties": {"ftqq": {"type": "object", "properties": {"sckey": {"type": "string"}, "title": {"type": "string"}}, "required": ["sckey", "title"]}}, "required": ["ftqq"]}}, "required": ["notify"], ...
{"notify" : {"ftqq" : {"sckey" : "", "title" : "PUBG\u6253\u91d1\u811a\u672c\u63d0\u9192"}}}
json_instruct
{"type": "object", "properties": {"notify": {"type": "object", "properties": {"ftqq": {"type": "object", "properties": {"sckey": {"type": "string"}, "title": {"type": "string"}}, "required": ["sckey", "title"]}}, "required": ["ftqq"]}}, "required": ["notify"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : "decurtation", "definition" : "Act of cutting short. [Obs.]"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"data": {"type": "object", "properties": {"datasetList": {"type": "object", "properties": {"id": {"type": "string"}, "localDatasets": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type"...
{"data" : {"datasetList" : {"id" : "RGF0YXNldExpc3Q6", "localDatasets" : {"edges" : [{"node" : {"id" : "RGF0YXNldDp1aXRlc3QmdWktdGVzdC1kYXRhc2V0", "name" : "ui-test-dataset", "description" : "This is a testing dataset", "owner" : "uitest", "createdOnUtc" : "2019-01-11T17:10:02+00:00", "modifiedOnUtc" : "2019-01-11T17:1...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"datasetList": {"type": "object", "properties": {"id": {"type": "string"}, "localDatasets": {"type": "object", "properties": {"edges": {"type": "array", "items": {"type": "object", "properties": {"node": {"type": "object", "properties": {"id": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"server": {"type": "object", "properties": {"name": {"type": "string"}, "port": {"type": "integer"}}, "required": ["name", "port"]}, "mongodb": {"type": "object", "properties": {"username": {"type": "string"},...
{"server" : {"name" : "litrato-manager", "port" : 9001}, "mongodb" : {"username" : "", "password" : "", "host" : "localhost", "port" : "27017", "database" : "litrato-manager"}}
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"name": {"type": "string"}, "port": {"type": "integer"}}, "required": ["name", "port"]}, "mongodb": {"type": "object", "properties": {"username": {"type": "string"}, "password": {"type": "string"}, "host": {"type": "string"}, "port": {"type":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "water shield", "definition" : "An aquatic American plant (Brasenia peltata) having floating oval leaves, and the covered with a clear jelly."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-...
{"id" : "170702030405", "variable1" : 0.3374, "variable2" : -0.3589, "variable3" : "A"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "variable1": {"type": "number"}, "variable2": {"type": "number"}, "variable3": {"type": "string"}}, "required": ["id", "variable1", "variable2", "variable3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"947422193992": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "947422194471": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName...
{"947422193992" : {"type" : "st"}, "947422194471" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/NC0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9TYW1wbGVyLUVRX1NhbXBsZXIuaHRtbC1hbmFseXRpY3MtOTQ3NDIyMTk0Mzcx.json"}}
json_instruct
{"type": "object", "properties": {"947422193992": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "947422194471": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {}}, "contact": {"ty...
{"schemaVersion" : 1, "id" : "shulker-portal", "version" : "${version}", "name" : "Shulker Portal", "description" : "", "authors" : [], "contact" : {}, "license" : "MIT", "icon" : "assets/shulker-portal/icon.png", "environment" : "*", "entrypoints" : {"main" : ["com.aleosiss.shulkerportal.ShulkerPortal"]}, "mixins" : [...
json_instruct
{"type": "object", "properties": {"schemaVersion": {"type": "integer"}, "id": {"type": "string"}, "version": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {}}, "contact": {"type": "object", "properties": {}, "required": []}, "license": {"type": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31"...
{"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Kaple u silnice k hranici v Kr\u00e1sn\u00e9m Lese", "P31" : "http://www.wikidata.org/entity/Q108325", "P31^label:cs" : "Kaple", "P131^label:cs" : "Petrovice", "P6736" : "16206"}, "geometry" : {"type" : "Point", "coordinates...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs...
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"}, "dependencies": {"type": "object", "properties": {"@notionhq/client": {"type": "string"}, "dot...
{"name" : "notion-tv-integrations", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {"@notionhq/client" : "^0.2.1", "dotenv" : "^10.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@notionhq/client": {"type": "string"}, "dotenv": {"type": "string"}}, "required": ["@notionhq/client", "dotenv"]}...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$sc...
{"id" : "2013", "provinceId" : "52", "regencyId" : "06", "districtId" : "03", "name" : "Nisa"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-versio...
{"type" : "package", "name" : "achutkiran/material-components-elm", "summary" : "Elm Bindings for MWC and Polymer Elements", "license" : "BSD-3-Clause", "version" : "1.0.0", "exposed-modules" : ["Mwc.Button", "Mwc.CheckBox", "Mwc.Fab", "Mwc.Icon", "Mwc.IconButton", "Mwc.Progress", "Mwc.Switch", "Mwc.Tabs", "Mwc.TextFie...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-version": {"type": "string"}, "dependencies": {"type": "object", ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "short_name": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "propert...
{"manifest_version" : 2, "name" : "Crypto", "description" : "Track Fluctuating crpyto prices", "short_name" : "orypto", "version" : "0.1", "browser_action" : {"default_popup" : "index.html", "default_icon" : "images/cryptoMarket.png"}, "permissions" : ["debugger", "storage"], "content_security_policy" : "script-src 'se...
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "short_name": {"type": "string"}, "version": {"type": "string"}, "browser_action": {"type": "object", "properties": {"default_popup": {"type": "string"}, "default_icon": {"type": "st...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "s...
{"name" : "Peixe do Festival de Ver\u00e3o", "rarity" : "3", "foodtype" : "SPECIALTY", "foodfilter" : "Pratos de Regenera\u00e7\u00e3o", "foodcategory" : "Recovery_HpAdd", "effect" : "Restaura 40% de Vida para o personagem selecionado, e restaur\u00e1 2350 de Vida adicional.", "description" : "A especialidade de Yoimiy...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodtype": {"type": "string"}, "foodfilter": {"type": "string"}, "foodcategory": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "basedish": {"type": "string"}, "character": {"type": "string...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"_default": {"type": "object", "properties": {"1": {"type": "object", "properties": {"verified": {"type": "string"}, "email": {"type": "string"}, "key": {"type": "string"}}, "required": ["verified", "email", "ke...
{"_default" : {"1" : {"verified" : "1", "email" : "a", "key" : "1"}}}
json_instruct
{"type": "object", "properties": {"_default": {"type": "object", "properties": {"1": {"type": "object", "properties": {"verified": {"type": "string"}, "email": {"type": "string"}, "key": {"type": "string"}}, "required": ["verified", "email", "key"]}}, "required": ["1"]}}, "required": ["_default"], "$schema": "http://js...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"items" : [{"content" : "\u00a9 2015 Terrific.NET SC8"}, {"title" : "Impressum", "content" : "Impressum", "url" : "#"}, {"title" : "Disclaimer", "content" : "Disclaimer", "url" : "#"}, {"title" : "Privacy", "content" : "Privacy", "url" : "#"}, {"title" : "Downloads", "content" : "Downloads", "url" : "#"}, {"title" : "...
json_instruct
{"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}}, "required": ["items"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "description": {"type": "object", "properties": {"en": {"type": "string"...
{"title" : {"en" : "The Less I See, The More I Dream", "fi" : "Mit\u00e4 v\u00e4hemm\u00e4n n\u00e4en, sit\u00e4 enemm\u00e4n uneksin", "fr" : "Moins je vois, plus je r\u00eave"}, "description" : {"en" : "", "fi" : "", "fr" : ""}, "story" : "Backcountry_Ski_Touring_Urho_Kekkonen", "dateTaken" : "2022-01-07T17:04:23", "...
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "required": ["en", "fi", "fr"]}, "description": {"type": "object", "properties": {"en": {"type": "string"}, "fi": {"type": "string"}, "fr": {"type": "string"}}, "re...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repoId" : "2003ec9d-b68c-4f31-90ee-7f222fc17811", "lastSync" : 0}
json_instruct
{"type": "object", "properties": {"repoId": {"type": "string"}, "lastSync": {"type": "integer"}}, "required": ["repoId", "lastSync"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author"...
{"name" : "redeyedemo ", "version" : "1.0.0", "description" : "redeye Electron application", "main" : "main.js", "scripts" : {"start" : "electron ."}, "author" : "Rayhan", "devDependencies" : {"electron" : "^1.4.5", "electron-packager" : "^8.2.0"}, "dependencies" : {"electron-window-manager" : "^1.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "devDependencies": {"type": "object...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"*://*.codecademy.com/*": {"type": "object", "properties": {"name": {"type": "string"}, "match": {"type": "string"}, "logout": {"type": "object", "properties": {"cookies": {"type": "array", "items": {"type": "string"}}}, "re...
{"*://*.codecademy.com/*" : {"name" : "Codecademy", "match" : "https?://(?!help\\.)(?!labs\\.)([^.]+\\.)?codecademy\\.com(?!/stories/?)", "logout" : {"cookies" : ["_session_id", "remember_user_token"]}, "login" : {"urls" : ["http://www.codecademy.com/dashboard"], "formURL" : "http://www.codecademy.com/sign_in", "method...
json_instruct
{"type": "object", "properties": {"*://*.codecademy.com/*": {"type": "object", "properties": {"name": {"type": "string"}, "match": {"type": "string"}, "logout": {"type": "object", "properties": {"cookies": {"type": "array", "items": {"type": "string"}}}, "required": ["cookies"]}, "login": {"type": "object", "properties...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type"...
{"special" : {"background" : "#282828", "foreground" : "#ebdbb2", "cursor" : "#fbf1c7"}, "colors" : {"color0" : "#282828", "color1" : "#cc241d", "color2" : "#98971a", "color3" : "#d79921", "color4" : "#458588", "color5" : "#b16286", "color6" : "#689d6a", "color7" : "#a89984", "color8" : "#928374", "color9" : "#fb4934",...
json_instruct
{"type": "object", "properties": {"special": {"type": "object", "properties": {"background": {"type": "string"}, "foreground": {"type": "string"}, "cursor": {"type": "string"}}, "required": ["background", "foreground", "cursor"]}, "colors": {"type": "object", "properties": {"color0": {"type": "string"}, "color1": {"typ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"protocol": {"type": "string"}, "pattern_name": {"type": "string"}, "timeset_name": {"type": "string"}, "pinlist": {"type": "array", "items": {"type": "string"}}, "timeset_between_frames": {"type": "integer"}, "content_file": {"t...
{"protocol" : "SPI_4W", "pattern_name" : "demo_spi_4w", "timeset_name" : "BS_Timing", "pinlist" : ["SPI_CS", "SPI_DATA_IN", "SPI_DATA_OUT", "SPI_CLK_IN"], "timeset_between_frames" : 5, "content_file" : "content_spi_4w.csv"}
json_instruct
{"type": "object", "properties": {"protocol": {"type": "string"}, "pattern_name": {"type": "string"}, "timeset_name": {"type": "string"}, "pinlist": {"type": "array", "items": {"type": "string"}}, "timeset_between_frames": {"type": "integer"}, "content_file": {"type": "string"}}, "required": ["protocol", "pattern_name"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"metricId": {"type": "string"}, "metrics": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}, "successfulInstalls": {"type": "integer"}, "failedInstalls": {"type": "integer"}}, "required": [...
{"metricId" : "b7a02295-eab0-46e9-b2f3-4d99b1e3e38c", "metrics" : {"from" : "2021-07-31T03:21:14.427Z", "to" : "2021-08-03T04:08:46.667Z", "successfulInstalls" : 2, "failedInstalls" : 0}}
json_instruct
{"type": "object", "properties": {"metricId": {"type": "string"}, "metrics": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}, "successfulInstalls": {"type": "integer"}, "failedInstalls": {"type": "integer"}}, "required": ["from", "to", "successfulInstalls", "failedInstalls"]}}, "r...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"groups": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"groups" : [[], [], [], [], [], [{"label" : "WindowConfirm_Watch_InvalidMemo", "text" : "Cette Flipnote est corrompue\net va \u00eatre effac\u00e9e."}], [], [], [], [], [], [], [], [{"label" : "WindowConfirm_Watch_InvalidIcon", "text" : "Des donn\u00e9es d'ic\u00f4ne ont \u00e9t\u00e9\ncorrompues. Toutes les ic\u00f4n...
json_instruct
{"type": "object", "properties": {"groups": {"type": "array", "items": {"type": "array", "items": {}}}}, "required": ["groups"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"filename": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs"...
{"filename" : "jquery.superLabels.min.js", "name" : "jquery.superlabels", "version" : "2.0.3", "description" : "Give your forms a helping of awesome!", "keywords" : ["jquery", "superlabels", "form"], "homepage" : "http://plugins.jquery.com/superLabels/", "bugs" : "https://github.com/remybach/jQuery.superLabels/issues",...
json_instruct
{"type": "object", "properties": {"filename": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "maintainers": {"type": "array", "items"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dist": {"typ...
{"name" : "dmm-abhishek", "version" : "1.0.1", "description" : "DMM Site for Abhishek", "main" : "index.js", "scripts" : {"start" : "live-server --port=9595", "dist" : "surge --domain dmm-abhishek.surge.sh", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://gi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "dist": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "dist", "te...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produc...
{"userId" : 24290, "cartId" : "103b2150-9ea6-4460-b180-5f079ea6c798", "preferredProducts" : [4456, 3403, 3577, 2170, 616, 2549, 3938, 3573], "productReviews" : [{"productId" : 1, "reviewText" : "This optical works certainly well. It energetically improves my golf by a lot.", "reviewDate" : "2020-04-15T02:18:25.981437+0...
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
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" : [[[153.875, 43.583333333333336], [153.875, 43.666666666666664], [154.0, 43.666666666666664], [154.0, 43.583333333333336], [153.875, 43.583333333333336]]]}, "properties" : {"code" : 655337, "url" : "http://madefor.github.io/0410/api/v1/655337.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...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "version": {"type": "string"}, "previousversions": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "authors": {"type": "string"}, "rol...
{"name" : "ChatTurnManager", "script" : "ChatTurnManager.js", "version" : "0.0.2", "previousversions" : ["0.0.1"], "description" : "A script to simplify Turn Order Management, and move it into chat.", "authors" : "Erik O.", "roll20userid" : "1828947", "useroptions" : [], "dependencies" : [], "modifies" : {"campaign.tur...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "script": {"type": "string"}, "version": {"type": "string"}, "previousversions": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "authors": {"type": "string"}, "roll20userid": {"type": "string"}, "useroptions": {"type": "ar...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "stri...
{"id" : 18883, "info" : {"name" : "FoxClocks - only first clock", "description" : "Other clocks are viewable in a tool tip, when hovering the visible clock...", "additionalInfo" : null, "format" : "uso", "category" : "browser", "createdAt" : "2009-06-21T12:58:38.000Z", "updatedAt" : "2009-06-21T12:58:38.000Z", "license...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"semesters": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "year": {"type": "integer"}, "hasBeenTaken": {"type": "boolean"}, "modulesTaken": {"type": "array", "items": {"type": "obje...
{"semesters" : [{"index" : 1, "year" : 1, "hasBeenTaken" : false, "modulesTaken" : [{"type" : "invalid", "moduleCode" : "invalid"}, {"type" : "Programme Requirements", "moduleCode" : "CS1231"}]}, {"index" : 2, "year" : 1, "hasBeenTaken" : false, "modulesTaken" : []}, {"index" : 1, "year" : 2, "hasBeenTaken" : false, "m...
json_instruct
{"type": "object", "properties": {"semesters": {"type": "array", "items": {"type": "object", "properties": {"index": {"type": "integer"}, "year": {"type": "integer"}, "hasBeenTaken": {"type": "boolean"}, "modulesTaken": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "moduleCode...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items"...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-72.578161, 44.781578], [-72.532648, 44.833512], [-72.401996, 44.835313], [-72.402766, 44.841408], [-72.39633, 44.840684], [-72.332525, 44.842153], [-72.308968, 44.875157], [-72.256817, 44.855336], [-72.24586, 44.852076],...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d738-128", "text" : ""}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "titl...
{"id" : "907j1q", "post_id" : "reddit/dataisugly/907j1q", "image_name" : "907j1q_0", "image_path" : "preview/907j1q_0.gif", "thumbnail_path" : "thumbnail/907j1q_0.jpg", "datetime" : 1532018881.0, "url" : "https://reddit.com/r/dataisugly/comments/907j1q/this_work_of_art_found_on_rdataisbeautiful_im/", "title" : "This wo...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "popu...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"failure_rate": {"type": "number"}, "invalid_rate": {"type": "number"}, "neural_net_time": {"type": "number"}, "neural_net_time_std": {"type": "number"}, "num_failures": {"type": "integer"}, "num_invalidated_plans": {...
{"failure_rate" : 0.0, "invalid_rate" : 0.0, "neural_net_time" : 0.039990003619875224, "neural_net_time_std" : 0.014339211444382695, "num_failures" : 0, "num_invalidated_plans" : 0, "num_node_expansions" : 0.0, "num_node_expansions_std" : 0.0, "num_timeouts" : 14, "objects_total" : 319.89285714285717, "objects_total_st...
json_instruct
{"type": "object", "properties": {"failure_rate": {"type": "number"}, "invalid_rate": {"type": "number"}, "neural_net_time": {"type": "number"}, "neural_net_time_std": {"type": "number"}, "num_failures": {"type": "integer"}, "num_invalidated_plans": {"type": "integer"}, "num_node_expansions": {"type": "number"}, "num_n...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"van-collapse": {"type": "string"}, "van-collapse-item": {"type": "string"}, "van-radio": {"type": "string"}, "van-radio-group": {"type": "string"}, "van-pa...
{"usingComponents" : {"van-collapse" : "@vant/weapp/collapse/index", "van-collapse-item" : "@vant/weapp/collapse-item/index", "van-radio" : "@vant/weapp/radio/index", "van-radio-group" : "@vant/weapp/radio-group/index", "van-panel" : "@vant/weapp/panel/index", "van-grid" : "@vant/weapp/grid/index", "van-grid-item" : "@...
json_instruct
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"van-collapse": {"type": "string"}, "van-collapse-item": {"type": "string"}, "van-radio": {"type": "string"}, "van-radio-group": {"type": "string"}, "van-panel": {"type": "string"}, "van-grid": {"type": "string"}, "van-grid-item": {"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"1505": {"type": "object", "properties": {"date": {"type": "string"}, "commits": {"type": "integer"}, "insertions": {"type": "integer"}, "deletions": {"type": "integer"}, "reverts": {"type": "integer"}, "rolls": {"typ...
{"1505" : {"date" : "2020-06-08 00:00:00 -0400", "commits" : 3, "insertions" : 2, "deletions" : 2, "reverts" : 0, "rolls" : 0, "refactors" : 0, "test_files" : 0, "files" : ["vulnerable_file.rb"], "developers" : ["andy@se.rit.edu"], "new_developers" : ["andy@se.rit.edu"], "drive_bys" : [], "ownership_change" : false}}
json_instruct
{"type": "object", "properties": {"1505": {"type": "object", "properties": {"date": {"type": "string"}, "commits": {"type": "integer"}, "insertions": {"type": "integer"}, "deletions": {"type": "integer"}, "reverts": {"type": "integer"}, "rolls": {"type": "integer"}, "refactors": {"type": "integer"}, "test_files": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "src": {"type": "string"...
{"name" : "VertexTextureFetchForuGUI", "version" : "0.1.0", "repository" : {"type" : "git", "url" : "git+https://github.com/mob-sakai/VertexTextureFetchForuGUI.git"}, "src" : "Assets/VertexTextureFetchForuGUI", "unity" : "/Applications/Unity/Hub/Editor/5.5.0p4/Unity.app/Contents/MacOS/Unity", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "src": {"type": "string"}, "unity": {"type": "string"}, "license": {"type": "string"}}, "requ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"resources": {"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["includes"]}, "b...
{"resources" : {"includes" : [{"pattern" : "\\QMETA-INF/MANIFEST.MF\\E"}, {"pattern" : "\\QMETA-INF/native/libcom_couchbase_client_core_deps_netty_transport_native_epoll_x86_64.so\\E"}, {"pattern" : "\\QMETA-INF/services/io.smallrye.config.SmallRyeConfigFactory\\E"}, {"pattern" : "\\QMETA-INF/services/org.eclipse.micro...
json_instruct
{"type": "object", "properties": {"resources": {"type": "object", "properties": {"includes": {"type": "array", "items": {"type": "object", "properties": {"pattern": {"type": "string"}}, "required": ["pattern"]}}}, "required": ["includes"]}, "bundles": {"type": "array", "items": {}}}, "required": ["resources", "bundles"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"account": {"type": "string"}, "cron": {"type": "string"}, "init": {"type": "string"}, "market": {"type": "string"}, "miner": {"type": "string"}, "multisig": {"type": "string"}, "paych": {"type": "string"}, "power": {"type": "str...
{"account" : "fil/1/account", "cron" : "fil/1/cron", "init" : "fil/1/init", "market" : "fil/1/storagemarket", "miner" : "fil/1/storageminer", "multisig" : "fil/1/multisig", "paych" : "fil/1/paymentchannel", "power" : "fil/1/storagepower", "reward" : "fil/1/reward", "system" : "fil/1/system", "verifreg" : "fil/1/verifie...
json_instruct
{"type": "object", "properties": {"account": {"type": "string"}, "cron": {"type": "string"}, "init": {"type": "string"}, "market": {"type": "string"}, "miner": {"type": "string"}, "multisig": {"type": "string"}, "paych": {"type": "string"}, "power": {"type": "string"}, "reward": {"type": "string"}, "system": {"type": "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "str...
{"directions" : ["Heat oil in large 4 to 6-quart saucepan over medium heat and add turkey. Brown turkey for 5 to 7 minutes, breaking apart.", "Add onions, garlic, chili powder, cumin and bouillon powder and cook for 3 to 5 minutes or until onions soften. Stir in vegetables, tomatoes, water and ketchup. Bring to a boil;...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "...
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" : "herman-common", "version" : "0.1.3", "description" : "A scalable docker build tool", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "Jonathan Boudreau <jonathan.boudreau.92@gmail.com>", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+http...
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"}, "repos...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["react_base_project", "robe-react-ui"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "auditable": {"type": "boolean"}, "meta:extensible": {"type": "boolean"}, "meta:abstract": {"type": "b...
{"id" : "_xdm.mixins.product-catalog", "$schema" : "http://json-schema.org/draft-06/schema#", "title" : "Product Catalog", "type" : "object", "auditable" : true, "meta:extensible" : true, "meta:abstract" : true, "description" : "Captures properties related to product catalog.", "meta:status" : "experimental", "meta:cre...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "$schema": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "auditable": {"type": "boolean"}, "meta:extensible": {"type": "boolean"}, "meta:abstract": {"type": "boolean"}, "description": {"type": "string"}, "meta:status": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema...
[{"code" : "210", "name" : "\u52a0\u53e4\u5ddd", "name_kana" : "\uff76\uff7a\uff76\uff9e\uff9c"}, {"code" : "370", "name" : "\u52a0\u897f", "name_kana" : "\uff76\uff7b\uff72"}, {"code" : "530", "name" : "\u67cf\u539f", "name_kana" : "\uff76\uff72\uff8a\uff9e\uff97"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "name": {"type": "string"}, "name_kana": {"type": "string"}}, "required": ["code", "name", "name_kana"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}...
{"name" : "tetris-game-es6", "version" : "1.0.0", "description" : "Tetris game on Pixi.js", "main" : "index.js", "scripts" : {"start" : "nodemon --watch src/ --exec dist/bundle.js", "build" : "babel src/Tetris.js --out-dir dist"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Alexa905/tetris-game-es6....
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}}, "required": ["start", "build"]}, "repository": {"type": "obj...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"attributes": {"type": "object", "properties": {"lab": {"type": "boolean"}}, "required": ["lab"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "facult...
{"attributes" : {"lab" : true}, "courseCode" : "CS5331", "courseCredit" : "4", "description" : "This module aims to prepare graduate students for understanding the security of the latest web platform and its interplay with operating systems and the cloud infrastructure. The topics covered include the design of web brow...
json_instruct
{"type": "object", "properties": {"attributes": {"type": "object", "properties": {"lab": {"type": "boolean"}}, "required": ["lab"]}, "courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "string"}, "title": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"typ...
{"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Buhang, Magallanes, Agusan del Norte, Caraga (Region XIII), PH", "locale" : "ph.caraga-region-xiii.agusan-del-norte.magallanes.buhang", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "5", "r...
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": {...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["510722113001", "\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "121", "0"], ["510722113201", "\u65b0\u751f\u6751\u6c11\u59d4\u5458\u4f1a", "122", "0"], ["510722113202", "\u6768\u67f3\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510722113203", "\u957f\u5b89\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["510722113204"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"...
{"stationId" : 3102714, "stationGroupId" : 3102714, "name" : "\u76ca\u751f", "lineId" : 31027, "zipCode" : "511-0821", "pref" : "\u4e09\u91cd\u770c", "city" : "\u6851\u540d\u5e02", "town" : "\u77e2\u7530", "longitude" : 136.67854, "latitude" : 35.057772, "status" : 0}
json_instruct
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latit...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "args": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "requi...
[{"name" : "opcache_compile_file", "type" : "boolean", "args" : [{"name" : "file", "type" : "string"}]}, {"name" : "opcache_get_configuration", "type" : "array", "args" : []}, {"name" : "opcache_get_status", "type" : "array", "args" : [{"name" : "get_scripts", "type" : "boolean", "optional" : true}]}, {"name" : "opcach...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "args": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "type"]}}}, "required": ["name", "type", "args"]}, "$sch...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"projects": {"type": "object", "properties": {"staging": {"type": "string"}, "production": {"type": "string"}}, "required": ["staging", "production"]}}, "required": ["projects"], "$schema": "http://json-schema.org/...
{"projects" : {"staging" : "eu.gcr.io/<project>", "production" : "eu.gcr.io/<project>/"}}
json_instruct
{"type": "object", "properties": {"projects": {"type": "object", "properties": {"staging": {"type": "string"}, "production": {"type": "string"}}, "required": ["staging", "production"]}}, "required": ["projects"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "...
{"name" : "dan/europeana-ui-components", "description" : "a php application that demonstrates the use of the https://github.com/europeana/ui-components within it", "authors" : [{"name" : "dan entous", "email" : "dan.entous@pennlinepublishing.com"}], "repositories" : [{"type" : "vcs", "url" : "https://github.com/europea...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "repositories": {"type": "array", "items": {"type": "object"...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "...
[{"id" : "demented-brewing-co", "name" : "Demented Brewing Co.", "brewery_type" : "micro", "street" : "600 Lincoln Blvd", "city" : "Middlesex", "state" : "New Jersey", "postal_code" : "08846-2443", "website_url" : "http://www.dementedbrewing.com", "phone" : "7326298260", "created_at" : "2018-07-24 01:33:46.590704", "up...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"t...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "create:dev-db": {"typ...
{"name" : "server", "version" : "1.0.0", "description" : "Server for SPOT", "main" : "index.js", "scripts" : {"test" : "jest --runInBand", "create:dev-db" : "node_modules/.bin/sequelize db:create && NODE_ENV=development node ./scripts/create-tables", "create:test-db" : "node_modules/.bin/sequelize db:create --env=test ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "create:dev-db": {"type": "string"}, "create:test-db": {"type": "string"}, "drop:dev-db": {...
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"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "stri...
{"name" : "halloween", "version" : "1.0.0", "description" : "Halloween house monster eyes animation", "main" : "index.js", "repository" : "https://github.com/mipatterson/halloween.git", "author" : "Mike Patterson", "license" : "MIT", "private" : true, "scripts" : {"start" : "nodemon ./src/server/index.js"}, "dependenci...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "proper...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["passport-swagger-auth", "swagger-auth", "swagger-tools", "swagger-tools-addlog", "swagger-tools-apigee", "swagger-tools-modified", "unitive-swagger-tools"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": ...
{"locationData" : {"relativeBoundingBox" : {"xmin" : 0.15051915, "width" : 0.07908516, "ymin" : 0.51537025, "height" : 0.14060889}, "relativeKeypoints" : [{"y" : 0.59063923, "x" : 0.15288508}, {"y" : 0.5706587, "x" : 0.22286604}, {"y" : 0.5476992, "x" : 0.22041185}, {"y" : 0.53997475, "x" : 0.21448226}, {"y" : 0.540735...
json_instruct
{"type": "object", "properties": {"locationData": {"type": "object", "properties": {"relativeBoundingBox": {"type": "object", "properties": {"xmin": {"type": "number"}, "width": {"type": "number"}, "ymin": {"type": "number"}, "height": {"type": "number"}}, "required": ["xmin", "width", "ymin", "height"]}, "relativeKeyp...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"CLOUDFORMS_INI_PATH": {"type": "string"}}, "required": ["CLOUDFORMS_INI_PATH"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"CLOUDFORMS_INI_PATH" : "{{ file_reference }}"}
json_instruct
{"type": "object", "properties": {"CLOUDFORMS_INI_PATH": {"type": "string"}}, "required": ["CLOUDFORMS_INI_PATH"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["dendron", "ethernity", "infiniti", "lemuria", "optcall", "ssbolt", "u200b"]
json_instruct
{"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": {"name": {"type": "string"}, "describe": {"type": "string"}, "image": {"type": "string"}, "properties": {"type": "object", "properties": {"issue": {"type": "string"}, "label": {"type": "string"}, "level": {"type": "string"}, "to...
{"name" : "KILO LOKI", "describe" : "Staked KILO LOKI NFT", "image" : "https://ipfs.xpowermine.com/ipfs/QmcMVdnJV6VaicjukafsTK1pX4Zthx6JbRvC9igLScrAjD/ppts/320x427/2022/Loki/2-Loki_KILO.png", "properties" : {"issue" : "2022", "label" : "KILO", "level" : "3", "token" : "LOKI"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "describe": {"type": "string"}, "image": {"type": "string"}, "properties": {"type": "object", "properties": {"issue": {"type": "string"}, "label": {"type": "string"}, "level": {"type": "string"}, "token": {"type": "string"}}, "required": ["issue", "label", "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"parcel-bundler": {"type": "string"}, "sass": {"type": "string"}}, "required": ["parcel-bundler", "sass"]}, "scrip...
{"name" : "blobs.gg", "private" : true, "devDependencies" : {"parcel-bundler" : "^1.10.1", "sass" : "^1.14.1"}, "scripts" : {"start" : "parcel index.html", "build" : "parcel build index.html"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"parcel-bundler": {"type": "string"}, "sass": {"type": "string"}}, "required": ["parcel-bundler", "sass"]}, "scripts": {"type": "object", "properties": {"start": {"type": "s...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "loadIndex": {"type": "integer"}, "path": {"type": "string"}}, "required": ["packageName", "loadIndex", "path"]}, "$schema": "http://json-schema.org/...
[{"packageName" : "PIXI", "loadIndex" : 0, "path" : "pixi-v5.2.0/pixi-legacy.min.js"}, {"packageName" : "PIXI.sound", "loadIndex" : 1, "path" : "pixi-sound-v3.0.4/pixi-sound.js"}, {"packageName" : "Promise", "loadIndex" : 2, "path" : "vf-polyfills-v1.0.0/vf-polyfills.js"}, {"packageName" : "gui", "loadIndex" : 3, "path...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"packageName": {"type": "string"}, "loadIndex": {"type": "integer"}, "path": {"type": "string"}}, "required": ["packageName", "loadIndex", "path"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "version": {"type": "string"}, "keywords": {"type":...
{"name" : "ostatus", "description" : "An implementation of the OStatus protocol stack for nodejs.", "engines" : {"node" : ">=0.4.0"}, "version" : "v0.1.0", "keywords" : ["ostatus", "hcard", "pubsubhubbub", "atom", "activity", "salmon"], "homepage" : "http://github.com/eschnou/node-ostatus", "author" : "Laurent Eschenau...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "au...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "e...
{"id" : "http://data.doremus.org/performance/b78261f3-96e5-3fa5-8914-bfb4f900811a", "expression" : [{"composer" : "http://data.doremus.org/artist/b82c0771-5280-39af-ad2e-8ace2f4ebda3", "id" : "http://data.doremus.org/expression/7f033477-960e-3659-bed8-c713afb0dde2"}, {"composer" : "http://data.doremus.org/artist/68e296...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"composer": {"type": "string"}, "id": {"type": "string"}}, "required": ["composer", "id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"...
{"title" : "Semi-automatic rename refactoring for JavaScript.", "fields" : ["rename", "program analysis", "programmer", "javascript", "code refactoring"], "abstract" : "Modern IDEs support automated refactoring for many programming languages, but support for JavaScript is still primitive. To perform renaming, which is ...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"aws-sdk.js" : "sha256-ZnZFyvw2cRRVl6XG01TXmB4nEUihnqwOUeAZ5LJAWZY=", "aws-sdk.min.js" : "sha256-ipSTVothDT90ehbWw9VYSA+uVb/JuajiEgx2XqO1164="}
json_instruct
{"type": "object", "properties": {"aws-sdk.js": {"type": "string"}, "aws-sdk.min.js": {"type": "string"}}, "required": ["aws-sdk.js", "aws-sdk.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["t...
{"name" : "liveit", "version" : "1.0.0", "description" : "Command line application for live it", "main" : "app.js", "scripts" : {"test" : "make test"}, "author" : "Hitesh Joshi <me@hiteshjoshi.com> (http://hiteshjoshi.com)", "license" : "Apache-2.0", "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/hit...
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"}, "repos...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "CoolEnvironmentsAround"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"require": {"type": "object", "properties": {"topthink/think-helper": {"type": "string"}, "symfony/var-dumper": {"type": "string"}}, "required": ["topthink/think-helper", "symfony/var-dumper"]}}, "required": ["require"], "$sche...
{"require" : {"topthink/think-helper" : "^1.0", "symfony/var-dumper" : "^3.3"}}
json_instruct
{"type": "object", "properties": {"require": {"type": "object", "properties": {"topthink/think-helper": {"type": "string"}, "symfony/var-dumper": {"type": "string"}}, "required": ["topthink/think-helper", "symfony/var-dumper"]}}, "required": ["require"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", ...
{"courseCode" : "LL4352V", "courseCredit" : "5", "description" : "This course will provide a broad introduction to international economic law related to China, including detailed study of a few core areas and the provision of guidance for students to pursue research on a topic of their choice. Major topics to be covere...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "preclusion": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "preclusion", "ti...