input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "abortive", "definition" : "1. Produced by abortion; born prematurely; as, an abortive child. [R.] 2. Made from the skin of a still-born animal; as, abortive vellum. [Obs.] 3. Rendering fruitless or ineffectual. [Obs.] \"Plunged in that abortive gulf.\" Milton. 4. Coming to naught; failing in its effect; misc...
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "browser": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type"...
{"name" : "fast-ws-client", "version" : "2.0.1-alpha.1", "description" : "WebSocket client for fastWS", "main" : "index.js", "browser" : "client/browser.js", "repository" : {"type" : "git", "url" : "git+https://github.com/hans00/fastWS.git"}, "author" : "Hans <admin@itsrv.tw>", "license" : "Apache-2.0", "keywords" : ["...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "browser": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "bundledDependencies": {"type": "array", "items": {"type": "string"...
{"name" : "sample-typings", "description" : "A sample library with custom type definitions", "version" : "1.0.0-pre.0", "private" : true, "repository" : "https://github.com/ng-packagr/ng-packagr.git", "bundledDependencies" : ["chalk"], "peerDependencies" : {"validate-commit-msg" : "2.12.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "string"}, "bundledDependencies": {"type": "array", "items": {"type": "string"}}, "peerDependencies": {"type": "object", "properties": {"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"blessed": {"type": "string"}, "prettier": {"type": "string"}, "ws": {"type": "string"}}, "required": ["blessed", "prettier", "ws"]}}, "required": ["dependencies...
{"dependencies" : {"blessed" : "^0.1.81", "prettier" : "^1.18.2", "ws" : "^7.4.6"}}
json_instruct
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"blessed": {"type": "string"}, "prettier": {"type": "string"}, "ws": {"type": "string"}}, "required": ["blessed", "prettier", "ws"]}}, "required": ["dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["typ...
{"type" : "FeatureCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "features" : [{"type" : "Feature", "properties" : {"Name" : "ALAGOA NOVA", "Description" : "ALAGOA NOVA / PB"}, "geometry" : {"type" : "LineString", "coordinates" : [[-35.69308366987542, -7.0278772210568...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "features": {"type": "array", "items": {"type": "ob...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " How to divide two numbers using long division and label the parts\n\n[imath]\\frac{18}{6}[/imath]\n\n\n", "url" : "https://www.youtube.com/watch?v=hnKDw92T73g"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["chanjet-nova-ui-theme", "fela-plugin-unit", "fela-preset-web", "inline-style-transformer", "lorren", "stylishly-units"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"file": {"type": "string"}, "category": {"type": "integer"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}}, "required": ["en", "ja"]}, "url": {"type": "string"}}, "re...
{"file" : "thats what im talking about peko.mp3", "category" : 3, "name" : {"en" : "That's what I'm talking about-peko", "ja" : ""}, "url" : "https://youtu.be/rmmCrCYTWoA?t=3216"}
json_instruct
{"type": "object", "properties": {"file": {"type": "string"}, "category": {"type": "integer"}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "ja": {"type": "string"}}, "required": ["en", "ja"]}, "url": {"type": "string"}}, "required": ["file", "category", "name", "url"], "$schema": "http://json-sc...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"typ...
[{"results" : [{"tech" : 3, "pts" : 51028, "connections" : 1358935, "capacity" : 87201816, "investments" : 479609964}, {"tech" : 7, "pts" : 46, "connections" : 212723, "capacity" : 6618368, "investments" : 44593731}, {"tech" : 1, "pts" : 12, "connections" : 120992, "capacity" : 3554166, "investments" : 15694684}, {"tec...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}...
{"name" : "canary-test", "version" : "1.1.2", "description" : "Write and run automated tests in JavaScript code.", "keywords" : ["canary", "test", "testing", "unit test", "automated test", "stability"], "homepage" : "https://github.com/Mapita/Canary", "license" : "MIT", "main" : "dist/src/canary.js", "types" : "dist/sr...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "files": {"t...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "exoplanets:block/hydraulic_top"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"projectId": {"type": "string"}}, "required": ["projectId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"projectId" : "awkvb9"}
json_instruct
{"type": "object", "properties": {"projectId": {"type": "string"}}, "required": ["projectId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], ...
{"Time" : "2021-02-05T08:00:00Z", "Temp" : 14.4, "RelHum" : 96, "WindSpeed" : 0.8, "WindDir" : 147}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"esprima.js": {"type": "string"}, "esprima.min.js": {"type": "string"}}, "required": ["esprima.js", "esprima.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"esprima.js" : "sha256-yvlEI8crhr9lQeSO+JL/IsT4bbsSUu3+/V5AkLd0GBI=", "esprima.min.js" : "sha256-yTiExb0eO/OKDD5iZaBGzM5BJiWBtJzzWpsnBMSa3HY="}
json_instruct
{"type": "object", "properties": {"esprima.js": {"type": "string"}, "esprima.min.js": {"type": "string"}}, "required": ["esprima.js", "esprima.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"css.lint.validProperties": {"type": "array", "items": {"type": "string"}}}, "required": ["css.lint.validProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"css.lint.validProperties" : ["composes"]}
json_instruct
{"type": "object", "properties": {"css.lint.validProperties": {"type": "array", "items": {"type": "string"}}}, "required": ["css.lint.validProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"alvin": {"type": "object", "properties": {"summary": {"type": "string"}, "training": {"type": "string"}}, "required": ["summary", "training"]}, "facebook": {"type": "object", "properties": {"summary": {"type": "strin...
{"alvin" : {"summary" : "Alvin's model ranks a sentence's sentiment on a scale from negative (bad) to positive (good).", "training" : "The model was trained using 1.6 million Twitter tweets provided by Sentiment140."}, "facebook" : {"summary" : "Facebook wit.ai division's model ranks a sentence's sentiment on 3 scales:...
json_instruct
{"type": "object", "properties": {"alvin": {"type": "object", "properties": {"summary": {"type": "string"}, "training": {"type": "string"}}, "required": ["summary", "training"]}, "facebook": {"type": "object", "properties": {"summary": {"type": "string"}, "training": {"type": "string"}}, "required": ["summary", "traini...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "3601181003", "district_id" : "3601181", "name" : "CILAJA"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_ab...
{"place_name" : "Alexander", "state_name" : "Arkansas", "state_abbrv" : "AR", "lat" : "34.6313", "long" : "-92.4727"}
json_instruct
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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"}, "wo...
{"id" : 1125775625, "type" : "Feature", "properties" : {"src:alt_label" : "qs_pg", "src:geom" : "qs_pg", "wof:geomhash" : "191ef6a280907c53bd0f40b8a3694d94", "wof:id" : 1125775625, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [7.40982, 49.10823, 7.40982, 49.10823], "geometry" : {"coordinates" : [7.40982, 49.1082...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "sizes": {"type": "string"}, "type": {"type": "string"}}, ...
{"short_name" : "HugoGiraudel", "name" : "Hugo Giraudel", "icons" : [{"src" : "/assets/images/favicon.png", "sizes" : "192x192", "type" : "image/png"}], "start_url" : "./", "display" : "standalone", "background_color" : "#2c3e50", "theme_color" : "#2c3e50"}
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"params": {"type": "object", "properties": {"limit": {"type": "string"}}, "required": ["limit"]}, "relation": {...
{"columns" : ["from.name", "message", "type", "shares.count", "created_time", "updated_time"], "options" : {"params" : {"limit" : "100"}, "relation" : "<Object ID>/posts", "pages" : 5}, "name" : "Get the last 500 posts", "module" : "Facebook", "description" : "Add Facebook IDs as nodes (e.g. \"Tatort\"), login to Faceb...
json_instruct
{"type": "object", "properties": {"columns": {"type": "array", "items": {"type": "string"}}, "options": {"type": "object", "properties": {"params": {"type": "object", "properties": {"limit": {"type": "string"}}, "required": ["limit"]}, "relation": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["params"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"NL-LI": {"type": "string"}, "NL-BQ1": {"type": "string"}, "NL-BQ2": {"type": "string"}, "NL-BQ3": {"type": "string"}, "NL-AW": {"type": "string"}, "NL-CW": {"type": "string"}, "NL-DR": {"type": "string"}, "NL...
{"NL-LI" : "\u041b\u0456\u043c\u0431\u0443\u0440\u0433", "NL-BQ1" : "\u0411\u043e\u043d\u0430\u0439\u0440\u0435", "NL-BQ2" : "\u0421\u0430\u0431\u0430", "NL-BQ3" : "\u0421\u0456\u043d\u0442-\u0415\u0441\u0442\u0430\u0442\u0456\u0443\u0441", "NL-AW" : "\u0410\u0440\u0443\u0431\u0430", "NL-CW" : "\u041a\u044e\u0440\u0430...
json_instruct
{"type": "object", "properties": {"NL-LI": {"type": "string"}, "NL-BQ1": {"type": "string"}, "NL-BQ2": {"type": "string"}, "NL-BQ3": {"type": "string"}, "NL-AW": {"type": "string"}, "NL-CW": {"type": "string"}, "NL-DR": {"type": "string"}, "NL-FL": {"type": "string"}, "NL-FR": {"type": "string"}, "NL-GE": {"type": "str...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required"...
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "Processes" : ["chrome.exe"], "HWiNFO" : ["chrome.exe"]}
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"display": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "color": {"type": "string"}, "weapon_type": {"type": "string"}, "link": {"type": "string"}, "move_typ...
{"display" : "Delthea, Free Spirit", "name" : "Delthea", "title" : "Free Spirit", "id" : "delthea-free-spirit", "color" : "Blue", "weapon_type" : "Blue Tome", "link" : "https://kagerochart.com/hero/delthea-free-spirit", "move_type" : "Infantry", "weapon" : ["dark-aura", "thoron", "elthunder", "thunder"], "passive_a" : ...
json_instruct
{"type": "object", "properties": {"display": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "color": {"type": "string"}, "weapon_type": {"type": "string"}, "link": {"type": "string"}, "move_type": {"type": "string"}, "weapon": {"type": "array", "items": {"type": "...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Hosting": {"type": "object", "properties": {"Modules": {"type": "object", "properties": {}, "required": []}}, "required": ["Modules"]}}, "required": ["Hosting"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Hosting" : {"Modules" : {}}}
json_instruct
{"type": "object", "properties": {"Hosting": {"type": "object", "properties": {"Modules": {"type": "object", "properties": {}, "required": []}}, "required": ["Modules"]}}, "required": ["Hosting"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"events_data_path": {"type": "string"}, "timestamp_column": {"type": "string"}, "user_id_column": {"type": "string"}}, "required": ["events_data_path", "timestamp_column", "user_id_column"], "$schema": "http://json-...
{"events_data_path" : "..\\data\\user_events_df.csv", "timestamp_column" : "date", "user_id_column" : "user_id"}
json_instruct
{"type": "object", "properties": {"events_data_path": {"type": "string"}, "timestamp_column": {"type": "string"}, "user_id_column": {"type": "string"}}, "required": ["events_data_path", "timestamp_column", "user_id_column"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties"...
{"name" : "@kaizen/eslint-plugin", "version" : "0.1.0", "main" : "dist/src/index.js", "license" : "MIT", "files" : ["dist"], "scripts" : {"test" : "cd ../../ && yarn jest ./packages/eslint-plugin", "build" : "yarn tsc --project tsconfig.dist.json", "clean" : "rimraf dist './src/**/*.js*' './src/**/*.d.ts'", "prepare" :...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}, "clean": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "U...
{"IsRecentlyVerified" : false, "ID" : 114743, "UUID" : "9928BD05-CE1E-45B3-85DB-A14D876FBE91", "DataProviderID" : 1, "OperatorID" : 103, "OperatorsReference" : "BEALLEGO001327", "UsageTypeID" : 1, "AddressInfo" : {"ID" : 115089, "Title" : "Battmobiel Duifhuisstraat", "AddressLine1" : "Duifhuisstraat 110", "Town" : "GEN...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "p...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"typ...
{"name" : "videojs-record", "version" : "2.1.3", "homepage" : "https://github.com/collab-project/videojs-record", "description" : "A video.js plugin for recording audio/video/image files.", "license" : "MIT", "authors" : ["Collab"], "main" : ["src/js/videojs.record.js", "src/css/videojs.record.scss"], "moduleType" : ["...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "homepage": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "array", "items": {"type": "string"}}, "moduleType": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "2013-gender-male": {"type": "string"}, "2013-future-sports": {"type": "string"}, "...
{"@metadata" : {"authors" : ["Tifinaghes"]}, "2013-gender-male" : "\u2d30\u2d4e\u2d30\u2d62", "2013-future-sports" : "\u2d5c\u2d53\u2d4f\u2d4f\u2d53\u2d4f\u2d5c", "2013-city" : "\u2d5c\u2d49\u2d56\u2d54\u2d4e\u2d5c:"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "2013-gender-male": {"type": "string"}, "2013-future-sports": {"type": "string"}, "2013-city": {"type": "string"}}, "required": ["@metadata", "2013-gende...
Following the schema specification below, generate a valid 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" : "node/behat-html-formatter", "description" : "This will create a html formatter for Behat.", "authors" : [{"name" : "TimFort", "email" : "tim.fortinbras@gmail.com"}], "require" : {"php" : ">=5.3.0", "twig/twig" : "~1.5", "behat/behat" : "~3.0", "behat/gherkin" : "~4.2"}, "require-dev" : {"symfony/process" : "...
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"]}}, "require": {"type": "object", "properties": {"php": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bitcoin-faucet"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "requirements": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type":...
{"domain" : "deebot930", "name" : "Ecovacs Deebot 930", "documentation" : "https://www.home-assistant.io/components/ecovacs", "requirements" : ["ozmo==1.0.3"], "dependencies" : [], "codeowners" : ["@Ligio"]}
json_instruct
{"type": "object", "properties": {"domain": {"type": "string"}, "name": {"type": "string"}, "documentation": {"type": "string"}, "requirements": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "array", "items": {}}, "codeowners": {"type": "array", "items": {"type": "string"}}}, "required": ["do...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sch...
{"word" : "Rectangle", "definitions" : ["A plane figure with four straight sides and four right angles, especially one with unequal adjacent sides, in contrast to a square."], "parts-of-speech" : "Noun"}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"1.48.0": {"type": "object", "properties": {"date": {"type": "string"}, "notes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "text": {"type": "string"}, "re...
{"1.48.0" : {"date" : "April 2017", "notes" : [{"id" : "62f9cd0d55d859ecf0230910c939959e64826a09", "type" : "FIX", "text" : " Explored App: better Search Tag creation for list search", "references" : []}, {"id" : "a80020352e503f31decb13b3eeeb67ba4bdb51c0", "type" : "FIX", "text" : " SDK: accept hash for LICENSE.txt", "...
json_instruct
{"type": "object", "properties": {"1.48.0": {"type": "object", "properties": {"date": {"type": "string"}, "notes": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "text": {"type": "string"}, "references": {"type": "array", "items": {}}}, "required": ["i...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "help_legend": {"type": "string"}}, "required": ["@metadata", "help_legend"], "$sc...
{"@metadata" : {"authors" : ["Kwisha"]}, "help_legend" : "Simulizi:"}
json_instruct
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "help_legend": {"type": "string"}}, "required": ["@metadata", "help_legend"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"min_word_keep": {"type": "integer"}, "min_generate_keep": {"type": "integer"}, "validset_divide": {"type": "boolean"}, "mask_symbol": {"type": "string"}, "max_output_len": {"type": "integer"}, "single": {"type": "boolean"}, "lin...
{"min_word_keep" : 5, "min_generate_keep" : 5, "validset_divide" : true, "mask_symbol" : "number", "max_output_len" : 30, "single" : true, "linear" : true, "language" : "zh", "train_batch_size" : 64, "test_batch_size" : 64, "source_equation_fix" : "infix"}
json_instruct
{"type": "object", "properties": {"min_word_keep": {"type": "integer"}, "min_generate_keep": {"type": "integer"}, "validset_divide": {"type": "boolean"}, "mask_symbol": {"type": "string"}, "max_output_len": {"type": "integer"}, "single": {"type": "boolean"}, "linear": {"type": "boolean"}, "language": {"type": "string"}...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Id": {"type": "string"}, "ProjectId": {"type": "string"}, "ParentId": {"type": "string"}, "ParentSlug": {"type": "string"}, "PageOrder": {"type": "integer"}, "Title": {"type": "string"}, "Author": {"type": "str...
{"Id" : "0fe39377-57a9-4d42-a9f1-22fc0c5ba18c", "ProjectId" : "f83067b4-919d-4910-acd1-4b3b1c210ecf", "ParentId" : "ac4051c3-064a-4e7b-a2a3-c34f4c6ca7a6", "ParentSlug" : "more-docs", "PageOrder" : 5, "Title" : "Some Page", "Author" : "Joe", "Slug" : "nothome", "ExternalUrl" : null, "CorrelationKey" : null, "MetaDescrip...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ProjectId": {"type": "string"}, "ParentId": {"type": "string"}, "ParentSlug": {"type": "string"}, "PageOrder": {"type": "integer"}, "Title": {"type": "string"}, "Author": {"type": "string"}, "Slug": {"type": "string"}, "ExternalUrl": {"type": "null"}, "Correl...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "tag": {"type": "string"}}, "required": ["name", "tag"]}}, "config": {"type": "object", "properties": {"baseUrl": {"type"...
{"components" : [{"name" : "header", "tag" : "header"}, {"name" : "services", "tag" : "services"}, {"name" : "about", "tag" : "about"}], "config" : {"baseUrl" : "/components/", "folderMode" : true}}
json_instruct
{"type": "object", "properties": {"components": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "tag": {"type": "string"}}, "required": ["name", "tag"]}}, "config": {"type": "object", "properties": {"baseUrl": {"type": "string"}, "folderMode": {"type": "boolean"}}, "required": [...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": ...
{"n_dim" : 34, "n_trials" : 210, "objective" : "markowitz_analytic_on_cube", "white" : "ultraopt_forest", "black" : "dlib", "traceback" : ["passing", "passing"], "best_val" : [7.739200757489089, 0.10200937680699117], "best_x" : [[0.8309123120896666, 0.3138593850024688, 0.013421651601286277, 0.9704430123282219, 0.118300...
json_instruct
{"type": "object", "properties": {"n_dim": {"type": "integer"}, "n_trials": {"type": "integer"}, "objective": {"type": "string"}, "white": {"type": "string"}, "black": {"type": "string"}, "traceback": {"type": "array", "items": {"type": "string"}}, "best_val": {"type": "array", "items": {"type": "number"}}, "best_x": {...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"planks": {"type": "string"}, "log": {"type": "string"}, "end": {"type": "string"}}, "required": ["planks", "log", "end"]}}, "required": ["parent", "te...
{"parent" : "adorn:item/templates/bench", "textures" : {"planks" : "biomemakeover:block/blighted_balsa_planks", "log" : "biomemakeover:block/blighted_balsa_log", "end" : "biomemakeover:block/blighted_balsa_log_top"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"planks": {"type": "string"}, "log": {"type": "string"}, "end": {"type": "string"}}, "required": ["planks", "log", "end"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schem...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "require...
{"Logging" : {"LogLevel" : {"Default" : "Information", "Microsoft" : "Warning", "Microsoft.Hosting.Lifetime" : "Information"}}, "Jwt" : {"SecurityKey" : "mysecuritykeyishere", "TokenExpirationDays" : 1, "RefreshTokenExpirationDays" : 1}, "AllowedHosts" : "*", "DbSettings" : {"SqlConnection" : "Server=localhost; Databas...
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}, "Microsoft": {"type": "string"}, "Microsoft.Hosting.Lifetime": {"type": "string"}}, "required": ["Default", "Microsoft", "Microsoft.Hosting.Lifetime"]}}, "required"...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["bassdock", "bassplate", "esnextbin", "postcss-basscss"]
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": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"recommendations" : ["octref.vetur", "msjsdiag.debugger-for-chrome"]}
json_instruct
{"type": "object", "properties": {"recommendations": {"type": "array", "items": {"type": "string"}}}, "required": ["recommendations"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"in": {"type": "string"}, "out": {"type": "string"}}, "required": ["in", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"in" : "\u2019", "out" : "\u02bc"}, {"in" : "'", "out" : "\u02bc"}, {"in" : "\u0332", "out" : ""}, {"in" : "\u030c", "out" : ""}, {"in" : "\u0328", "out" : ""}, {"in" : "\u0300", "out" : ""}, {"in" : "\u0302", "out" : ""}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"in": {"type": "string"}, "out": {"type": "string"}}, "required": ["in", "out"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e"...
{"h" : [{"d" : [{"e" : ["\ufff9`Sapilefek~ `to~ `'atomo~.\ufffa\ufffb\u5f04\u7834\u7f50\u5b50\u7684\u5668\u5177\u3002lefek \u5f04\u5012\u3002", "\ufff9`sapilefek~\ufffa\ufffb\u5f04\u5012\u7528\u5177\u3002", "\ufff9`Sapilefek~ `to~ `sa'edef~.\ufffa\ufffb\u5f04\u5012\u9580\u7684\u7528\u5177\u3002"], "f" : "\u7834\u88c2\u...
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "BRINGING THINGS VERY REMOTE, AND INDEPENDENT ON ONE ANOTHER, INTO ONE VIEW, THE BETTER TO CONTEMPLATE AND DISCOURSE OF THEM,", "next" : "https://raw.githubusercontent.com/CAPSELOCKE/CAPSELOCKE/master/tweets/5778.json"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "next": {"type": "string"}}, "required": ["body", "next"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["yunski", "edfrmpc44ic"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"ids": {"type": "array", "items": {"type": "integer"}}}, "required": ["ids"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"ids" : [669338696952053791]}
json_instruct
{"type": "object", "properties": {"ids": {"type": "array", "items": {"type": "integer"}}}, "required": ["ids"], "$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": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://j...
[{"adcode" : "451229100", "name" : "\u5927\u5316\u9547", "level" : "street", "parent" : "451229"}, {"adcode" : "451229101", "name" : "\u90fd\u9633\u9547", "level" : "street", "parent" : "451229"}, {"adcode" : "451229102", "name" : "\u5ca9\u6ee9\u9547", "level" : "street", "parent" : "451229"}, {"adcode" : "451229103", ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"adcode": {"type": "string"}, "name": {"type": "string"}, "level": {"type": "string"}, "parent": {"type": "string"}}, "required": ["adcode", "name", "level", "parent"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyN...
{"VersionId" : "v2", "IsDefaultVersion" : true, "CreateDate" : "2022-02-23T17:04:20+00:00", "PolicyName" : "AmazonRedshiftQueryEditorV2NoSharing"}
json_instruct
{"type": "object", "properties": {"VersionId": {"type": "string"}, "IsDefaultVersion": {"type": "boolean"}, "CreateDate": {"type": "string"}, "PolicyName": {"type": "string"}}, "required": ["VersionId", "IsDefaultVersion", "CreateDate", "PolicyName"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "arra...
{"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=9261", "name" : "The South Orissa Voluntary Action", "primaryEmail" : "sova@sovakoraput.org", "website" : "http://www.sovakoraput.org/", "organisationType" : ["Direct Service", "Support"], "telephone" : ["919437077718"], "mainAddrress"...
json_instruct
{"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "website": {"type": "string"}, "organisationType": {"type": "array", "items": {"type": "string"}}, "telephone": {"type": "array", "items": {"t...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Sid...
{"name" : "phpms/php-sidecar", "type" : "library", "description" : "php Microservice Provide", "license" : "Apache-2.0", "autoload" : {"psr-4" : {"Sidecar\\" : "src/"}}, "require" : {"php" : ">=5.3.9"}, "require-dev" : {"php" : ">=5.3.9"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"Sidecar\\": {"type": "string"}}, "required": ["Sidecar\\"]}}, "required": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "buttons": {"type": "string"}, "body": {"type": "object", "properties": {"content": {"type": "string"}, "marginTop": {"type": "strin...
{"title" : {"text" : "Information"}, "buttons" : "close", "body" : {"content" : "<p style = 'font-size: 24px; font-weight: bold; '>LancetJS</p><hr /><p>Alpha version 0.5 - 1.10.2016</p><p>Education Project</p><p>&#169; 2016 Vladimir Amelkin</p>", "marginTop" : "5", "marginBottom" : "8"}, "width" : "290", "height" : "15...
json_instruct
{"type": "object", "properties": {"title": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "buttons": {"type": "string"}, "body": {"type": "object", "properties": {"content": {"type": "string"}, "marginTop": {"type": "string"}, "marginBottom": {"type": "string"}}, "required": ["con...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}, "orcid": {"type": "string"}}, "required": ["affiliation", "name", "orcid"]}}, "keywords": {"t...
{"creators" : [{"affiliation" : "Netherlands eScience Center", "name" : "Grootes, Meiert Willem", "orcid" : "0000-0002-5733-4795"}, {"affiliation" : "Netherlands eScience Center", "name" : "Nattinio, Francesco", "orcid" : "0000-0003-3286-0139"}], "keywords" : ["Automatic deployment", "OpenNebula", "Virtual Machines", "...
json_instruct
{"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}, "orcid": {"type": "string"}}, "required": ["affiliation", "name", "orcid"]}}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"...
{"id" : 59347, "group" : "23414108", "joblink" : true, "name" : "Ingenieur/in - Druck- und Medientechnik", "potential" : 57, "skills" : [{"id" : 60647, "skill" : "Arbeitsvorbereitung", "replaceable" : false}, {"id" : 60838, "skill" : "Drucktechnik", "replaceable" : true}, {"id" : 60885, "skill" : "Druckvorstufe", "repl...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "group": {"type": "string"}, "joblink": {"type": "boolean"}, "name": {"type": "string"}, "potential": {"type": "integer"}, "skills": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "skill": {"type": "string"}, "replacea...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"Private": {"type": "string"}, "Public": {"type": "string"}}, "required": ["Private", "Public"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Private" : "30770201010420d58837245a5a4bbd8e1944876fbff675ebe23af44be33279ab9b82029b3c3aaca00a06082a8648ce3d030107a14403420004e4e5d89510be174a663f53e49778a8b6d76d5c4c2c6faa13196e81b07b69aa70f0b5f7af08003331d48293f1a9270c91497343b2f861666aafc4202303b2ef61", "Public" : "3059301306072a8648ce3d020106082a8648ce3d030107034...
json_instruct
{"type": "object", "properties": {"Private": {"type": "string"}, "Public": {"type": "string"}}, "required": ["Private", "Public"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"post": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "requestBody": {"type": "object", "properties": {"required": {"type": "boolean"}, ...
{"post" : {"tags" : ["Authentication"], "summary" : "Signin", "requestBody" : {"required" : true, "content" : {"application/json" : {"schema" : {"type" : "object", "properties" : {"email" : {"type" : "string", "format" : "email"}, "password" : {"type" : "string", "format" : "password"}}, "required" : ["email", "passwor...
json_instruct
{"type": "object", "properties": {"post": {"type": "object", "properties": {"tags": {"type": "array", "items": {"type": "string"}}, "summary": {"type": "string"}, "requestBody": {"type": "object", "properties": {"required": {"type": "boolean"}, "content": {"type": "object", "properties": {"application/json": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"justoverclock-hashtag": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"post": {"type": "object", "properties": {"hashtag_link_tooltip": {"type": "string"}}, "required": ["hashtag_...
{"justoverclock-hashtag" : {"forum" : {"post" : {"hashtag_link_tooltip" : "Rechercher ce mot-di\u00e8se dans Flarum"}}}}
json_instruct
{"type": "object", "properties": {"justoverclock-hashtag": {"type": "object", "properties": {"forum": {"type": "object", "properties": {"post": {"type": "object", "properties": {"hashtag_link_tooltip": {"type": "string"}}, "required": ["hashtag_link_tooltip"]}}, "required": ["post"]}}, "required": ["forum"]}}, "require...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "propertie...
{"localities" : ["Danville, KS"], "state" : "KS", "postal_code" : "67036", "locality" : "Danville, KS", "lat" : 37.297567, "region" : {"fips" : "20", "abbr" : "KS", "name" : "Kansas"}, "city" : "Danville", "type" : "STANDARD", "lng" : -97.876668, "counties" : [{"fips" : "077", "name" : "Harper County"}]}
json_instruct
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "nul...
{"name" : "YUAN", "symbol" : "YUAN", "id" : "0x4A3e164684812DfB684AC36457E7fA805087c68E", "decimals" : 18, "coingecko_url" : "https://www.coingecko.com/en/coins/yuan", "market_cap_usd" : 0.0, "market_cap_rank" : null, "24_hr_volume_usd" : 0.0, "public_notice" : "YUAN is Under Malicious Issurance. For more information, ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "id": {"type": "string"}, "decimals": {"type": "integer"}, "coingecko_url": {"type": "string"}, "market_cap_usd": {"type": "number"}, "market_cap_rank": {"type": "null"}, "24_hr_volume_usd": {"type": "number"}, "public_notice": ...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}},...
[{"Id" : "167294", "ThreadId" : "49980", "Html" : "I want to unselect all the\u00a0<span style=\"font-size:13px;color:#010001\">SelectedItems </span>when use multi-select mode in DataGrid if the\u00a0<span style=\"font-size:13px;color:#010001\">SelectedItems is not proper or useless for me</span>,\u00a0<br>\r\n<br>\r\n...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"title" : "PTOY - Where are the developers? Is this just a White Paper Concept only?", "ups" : 6}, {"title" : "Patientory sponsored the opening day of #ArabHealth #USPavilion! $PTOY #healthcare #blockchain #global", "ups" : 7}, {"title" : "Binance following Patientory on Twitter...?", "ups" : 5}, {"title" : "Patiento...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "ups": {"type": "integer"}}, "required": ["title", "ups"]}, "$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#"}
["pome", "pome-cli", "pome-daemon", "pome-data-plugin", "pome-globalchannel-plugin", "pome-masterha-plugin", "pome-protobuf-plugin", "pome-rpc", "pome-scale-plugin", "pome-status-plugin", "pome-sync-plugin", "pome-zookeeper-plugin"]
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": {"general_balance": {"type": "integer"}, "general_nonce": {"type": "integer"}, "escrow_active_balance": {"type": "integer"}, "escrow_active_total_shares": {"type": "integer"}, "escrow_debonding_balance": {"type": "int...
{"general_balance" : 39268, "general_nonce" : 0, "escrow_active_balance" : 836744601926809, "escrow_active_total_shares" : 836744601926809, "escrow_debonding_balance" : 0, "escrow_debonding_total_shares" : 0}
json_instruct
{"type": "object", "properties": {"general_balance": {"type": "integer"}, "general_nonce": {"type": "integer"}, "escrow_active_balance": {"type": "integer"}, "escrow_active_total_shares": {"type": "integer"}, "escrow_debonding_balance": {"type": "integer"}, "escrow_debonding_total_shares": {"type": "integer"}}, "requir...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"newDomClass": {"type": "array", "items": {"type": "string"}}, "uniqueElement": {"type": "string"}, "createElementLocal": {"type": "string"}, "createElementMember": {"type": "string"}, "createText": {"type": "st...
{"newDomClass" : ["class className# {\n", " elements#\n", " constructor() {", " resolvedId = document._resolvedId_ = document._resolvedId_++ || 0;", " creation#", " }\n", " appendTo(parent:HTMLElement): void {", " display#", " }", "}\n", "export = className#;"], "uniqueElement" : "el...
json_instruct
{"type": "object", "properties": {"newDomClass": {"type": "array", "items": {"type": "string"}}, "uniqueElement": {"type": "string"}, "createElementLocal": {"type": "string"}, "createElementMember": {"type": "string"}, "createText": {"type": "string"}, "setAttributeOther": {"type": "string"}, "setAttributeId": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cf": {"type": "array", "items": {"type": "number"}}, "op": {"type": "array", "items": {"type": "number"}}, "rt": {"type": "array", "items": {"type": "number"}}, "synthMethod": {"type": "string"}}, "required": ["cf"...
{"cf" : [849.4174939287, 3016.5810417744, 1560.5768483137, 4633.7204621864, 4393.911754849, 2412.7565108759, 4164.1839361938, 3537.9872617619, 4903.1583783204, 3813.7930681305], "op" : [-28.125981269750003, -50.555313108549996, -52.88808808055, -58.16419362845, -64.50168257125, -64.04616714135, -64.58652366355, -67.477...
json_instruct
{"type": "object", "properties": {"cf": {"type": "array", "items": {"type": "number"}}, "op": {"type": "array", "items": {"type": "number"}}, "rt": {"type": "array", "items": {"type": "number"}}, "synthMethod": {"type": "string"}}, "required": ["cf", "op", "rt", "synthMethod"], "$schema": "http://json-schema.org/draft-...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main" : "./credit-card-slash.js"}
json_instruct
{"type": "object", "properties": {"main": {"type": "string"}}, "required": ["main"], "$schema": "http://json-schema.org/draft-07/schema#"}
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" : 5585, "info" : {"name" : "mixi vertical community list", "description" : "list communities vertically", "additionalInfo" : null, "format" : "uso", "category" : "mixi", "createdAt" : "2008-03-07T01:49:07.000Z", "updatedAt" : "2008-03-07T01:49:07.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 6374, "n...
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": "...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "reposit...
{"name" : "gulp-introduction-tutorials", "version" : "1.0.0", "description" : "It is repository to understand, how gulp.js works", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/NimishGupta95/Gulp-Introduction-Tu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"...
{"id" : 169392, "info" : {"name" : "\u8ba9\u767e\u5ea6\u641c\u7d22\u5185\u5bb9\u76f8\u5bf9\u5c45\u4e2d", "description" : "\u6700\u5927\u5316\u60c5\u51b5\u4e0b\u641c\u7d22\u7ed3\u679c\u8ddd\u79bb\u9875\u9762\u5de6\u8fb920% \r\n\u5df2\u5339\u914d\u6700\u65b0\u6837\u5f0f", "additionalInfo" : "\u6700\u5927\u5316\u60c5\u51b...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type":...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"item.sfl.mimic_spawn_egg": {"type": "string"}, "item.sfl.water_mimic_spawn_egg": {"type": "string"}, "item.sfl.end_mimic_spawn_egg": {"type": "string"}, "item.sfl.nether_mimic_spawn_egg": {"type": "string"}, "e...
{"item.sfl.mimic_spawn_egg" : "Mimic Spawn Egg", "item.sfl.water_mimic_spawn_egg" : "Water Mimic Spawn Egg", "item.sfl.end_mimic_spawn_egg" : "End Mimic Spawn Egg", "item.sfl.nether_mimic_spawn_egg" : "Nether Mimic Spawn Egg", "entity.sfl:mimic.name" : "Mimic", "entity.sfl:water_mimic.name" : "Mimic", "entity.sfl:end_m...
json_instruct
{"type": "object", "properties": {"item.sfl.mimic_spawn_egg": {"type": "string"}, "item.sfl.water_mimic_spawn_egg": {"type": "string"}, "item.sfl.end_mimic_spawn_egg": {"type": "string"}, "item.sfl.nether_mimic_spawn_egg": {"type": "string"}, "entity.sfl:mimic.name": {"type": "string"}, "entity.sfl:water_mimic.name": {...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["130184001", "\u957f\u5bff\u8857\u9053", "130184"], ["130184101", "\u5316\u76ae\u9547", "130184"], ["130184102", "\u627f\u5b89\u9547", "130184"], ["130184103", "\u6b63\u83ab\u9547", "130184"], ["130184104", "\u5357\u5927\u5cb3\u9547", "130184"], ["130184105", "\u675c\u56fa\u9547", "130184"], ["130184106", "\u90af\u90...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "5306132001", "nama" : "Bedalewun"}, {"id" : "5306132002", "nama" : "Lebanuba"}, {"id" : "5306132003", "nama" : "Rianwale"}, {"id" : "5306132004", "nama" : "Bungalawan"}, {"id" : "5306132005", "nama" : "Lamawolo"}, {"id" : "5306132006", "nama" : "Helanlangowuyo"}, {"id" : "5306132007", "nama" : "Lewopao"}, {"i...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"kicker": {"type": "object", "properties": {"text": {"type": "string"}, "color": {"type": "string"}}, "required": ["text", "color"]}, "title": {"type": "object", "properties": {"text": {"type": "string"}}, "required":...
{"kicker" : {"text" : "INNOVATIVE SOLUTIONS", "color" : "alpha"}, "title" : {"text" : "The ultimate marketing resources. All in one place."}, "text_1" : {"text" : "Lorem ipsum dolor sit amet, consectetur magna aliqua. Eaque ipsa quae ab illo inventore veritatis. Nemo enim ipsam voluptatem voluptas."}, "images" : [{"src...
json_instruct
{"type": "object", "properties": {"kicker": {"type": "object", "properties": {"text": {"type": "string"}, "color": {"type": "string"}}, "required": ["text", "color"]}, "title": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}, "text_1": {"type": "object", "properties": {"text": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "...
{"stationId" : 9992715, "stationGroupId" : 9992715, "name" : "\u9996\u91cc", "lineId" : 99927, "zipCode" : "903-0806", "pref" : "\u6c96\u7e04\u770c", "city" : "\u90a3\u8987\u5e02", "town" : "\u9996\u91cc\u6c40\u826f\u753a", "longitude" : 127.725492, "latitude" : 26.219191, "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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "propert...
{"uuid" : "c39a2dcf-23e8-49b8-a222-a17e4dfd66a0", "name" : "com.example.demo1.MainPageTest.setUp", "children" : ["b3c42bd2-4735-429f-82ed-dee28f4816f8"], "description" : "", "befores" : [{"name" : "setUp", "status" : "passed", "stage" : "finished", "description" : "", "steps" : [], "attachments" : [], "parameters" : []...
json_instruct
{"type": "object", "properties": {"uuid": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "befores": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "status": {"type": "string"}, "stag...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"...
[{"Id" : "1454633", "ThreadId" : "648377", "Html" : "The Item() method of the Names object type is supposed to take 3 optional params, but NetOffice requires all 3. For example, in Excel VBA, I can do this:\r<br />\n<br />\nApplication.ActiveWorkbook.Names(&quot;MyNamedRange&quot;)\r<br />\n<br />\nBut with NetOffice, ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Id": {"type": "string"}, "ThreadId": {"type": "string"}, "Html": {"type": "string"}, "PostedDate": {"type": "string"}, "UserRole": {"type": "null"}, "MarkedAsAnswerDate": {"type": "null"}}, "required": ["Id", "ThreadId", "Html", "PostedDate", "UserRole", "Ma...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type"...
{"id" : "9dbc4c26-8884-4bbf-aea3-dedaeda933de", "playerTags" : ["c09e64b6-8248-407e-b3af-1931b880dbee"], "teamTags" : ["3f8bbb15-61c0-4e3f-8e4a-907a5fb1565e", "bb4a9de5-c924-4923-a0cb-9d1445f1ee5d"], "gameTags" : ["1ad15780-2ed4-40d6-9747-e1fb66c49bc3"], "metadata" : {"play" : 254, "subPlay" : -1}, "created" : "2021-04...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "playerTags": {"type": "array", "items": {"type": "string"}}, "teamTags": {"type": "array", "items": {"type": "string"}}, "gameTags": {"type": "array", "items": {"type": "string"}}, "metadata": {"type": "object", "properties": {"play": {"type": "integer"}, "su...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc...
{"\uc774\ub984" : "\ucd5c\uc778\uae30", "\ud55c\ubb38\uba85" : "\u5d14\u4ec1\u57fa", "\uc0dd\ub144\uc6d4\uc77c" : "1944-03-18", "\uc815\ub2f9" : "\ud1b5\ud569\ubbfc\uc8fc\ub2f9", "\uc120\uac70\uad6c" : "\uc804\ub0a8 \ub098\uc8fc\uc2dc\ud654\uc21c\uad70", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\...
json_instruct
{"type": "object", "properties": {"\uc774\ub984": {"type": "string"}, "\ud55c\ubb38\uba85": {"type": "string"}, "\uc0dd\ub144\uc6d4\uc77c": {"type": "string"}, "\uc815\ub2f9": {"type": "string"}, "\uc120\uac70\uad6c": {"type": "string"}, "\ub2f9\uc120\ud69f\uc218": {"type": "string"}, "\ub2f9\uc120\ub300\uc218": {"type...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"Gumtree": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}...
{"Gumtree" : {"domain" : "gumtree.com", "url" : "https://www.gumtree.com/", "contact" : {"facebook" : "gumtree", "twitter" : "Gumtree"}, "keywords" : ["other"]}}
json_instruct
{"type": "object", "properties": {"Gumtree": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "contact": {"type": "object", "properties": {"facebook": {"type": "string"}, "twitter": {"type": "string"}}, "required": ["facebook", "twitter"]}, "keywords": {"type": "array", "items"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"lock_version": {"type": "integer"}, "barcode": {"type": "string"}, "indicator": {"type": "string"}, "created_by": {"type": "string"}, "last_modified_by": {"type": "string"}, "create_time": {"type": "string"}, "system_mtime"...
{"lock_version" : 1, "barcode" : "00000000018581", "indicator" : "297.3 KHA", "created_by" : "admin", "last_modified_by" : "admin", "create_time" : "2016-08-13T09:25:40Z", "system_mtime" : "2017-12-15T22:26:27Z", "user_mtime" : "2016-08-13T09:25:40Z", "type" : "volume", "jsonmodel_type" : "top_container", "active_restr...
json_instruct
{"type": "object", "properties": {"lock_version": {"type": "integer"}, "barcode": {"type": "string"}, "indicator": {"type": "string"}, "created_by": {"type": "string"}, "last_modified_by": {"type": "string"}, "create_time": {"type": "string"}, "system_mtime": {"type": "string"}, "user_mtime": {"type": "string"}, "type"...
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": {"test": {"type": "string"}}, "required": ["test"]}, "repo...
{"name" : "memento-mysql", "version" : "1.0.2", "description" : "MySQL query caching for node.js", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/maxlabelle/Memento.git"}, "keywords" : ["mysql", "query", "caching...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}},...
{"batchcomplete" : "", "query" : {"normalized" : [{"from" : "Anna_Kiesenhofer", "to" : "Anna Kiesenhofer"}], "pages" : {"54111692" : {"pageid" : 54111692, "ns" : 0, "title" : "Anna Kiesenhofer", "pageprops" : {"defaultsort" : "Kiesenhofer, Anna", "page_image_free" : "Tour_f\u00e9minin_international_de_l'Ard\u00e8che_20...
json_instruct
{"type": "object", "properties": {"batchcomplete": {"type": "string"}, "query": {"type": "object", "properties": {"normalized": {"type": "array", "items": {"type": "object", "properties": {"from": {"type": "string"}, "to": {"type": "string"}}, "required": ["from", "to"]}}, "pages": {"type": "object", "properties": {"54...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "pr...
{"name" : "Kinki University", "alt_name" : "Kinki Daigaku", "country" : "Japan", "state" : null, "address" : {"street" : "3-4-1 Kowakae", "city" : "Higashiosaka-shi", "province" : "Osaka", "postal_code" : "577-8502"}, "contact" : {"telephone" : "+81(6) 6721-2332", "website" : "http://www.kindai.ac.jp", "email" : "koho@...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"kind": {"type": "string"}, "props": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "s...
{"kind" : "ObjectTypeLiteral", "props" : [{"kind" : "TypeObjectProperty", "name" : {"kind" : "Identifier", "name" : "a"}, "value" : {"kind" : "NumberType", "value" : "number"}, "optional" : true, "readonly" : true}]}
json_instruct
{"type": "object", "properties": {"kind": {"type": "string"}, "props": {"type": "array", "items": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "object", "properties": {"kind": {"type": "string"}, "name": {"type": "string"}}, "required": ["kind", "name"]}, "value": {"type": "object", "p...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss" : [7.983859239001896, 6.504772309773279, 5.403050791389107, 4.703388813968273, 4.281765303264238, 4.034370568787989, 3.8744871082216488, 3.752340961440854, 3.664362472369431, 3.599205586937006, 3.5568424120666053, 3.5228802002124917, 3.49232360032628, 3.4700190110510767, 3.446202430929679, 3.4308530869750173, 3...
json_instruct
{"type": "object", "properties": {"loss": {"type": "array", "items": {"type": "number"}}, "accuracy": {"type": "array", "items": {"type": "number"}}}, "required": ["loss", "accuracy"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"ty...
{"name" : "GYEasyForm", "version" : "0.1.1", "summary" : "A mobile framework that is very easy to build forms.", "description" : "A mobile framework that is very easy to build forms. \u270d\ufe0f\u270d\ufe0f\u270d\ufe0f", "homepage" : "https://github.com/zhugezhaofang/GYEasyForm", "license" : {"type" : "MIT", "file" : ...
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"...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["Microsoft", "Windows Live Hotmail", "Similar Windows Live", "Messenger", "MSN UK", "News", "MSN Money", "Similar Without", "LinkedIn\u2122", "Flickr\u2122", "YouTube\u2122", "Word", "Excel", "PowerPoint", "Cached Thousands of Hotmail", "Cached Hotmail", "Windows Live", "MSN Hotmail", "&", "Messenger Cached", "Similar...
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "...
{"directions" : ["Melt marshmallows in a large microwave-safe bowl in 30-second intervals, stirring after each melting, 1 to 2 minutes. Mix in light corn syrup and coffee-flavored extract.", "Melt chocolate chips in a microwave-safe bowl in 30-second intervals, stirring after each melting, 1 to 2 minutes. Fold into the...
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": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schem...
[{"Similarity" : "0.977", "Title" : "A New Angle on the EMPATH Model Spatial Frequency Orientation in Recognition of Facial Expressions", "Year" : 2012}, {"Similarity" : "0.977", "Title" : "Quantifying the diversity of neural activations in individual brain regions", "Year" : 2011}, {"Similarity" : "0.965", "Title" : "...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"buildFiles": {"type": "array", "items": {"type": "string"}}, "cleanCommands": {"type": "array", "items": {"type": "string"}}, "libraries": {"type": "object", "properties": {"oboe-Debug-x86": {"type": "object", "prope...
{"buildFiles" : ["/Users/shariqmobin/AndroidStudioProjects/oboe-june/oboe/apps/OboeTester/app/CMakeLists.txt", "/Users/shariqmobin/AndroidStudioProjects/oboe-june/oboe/CMakeLists.txt"], "cleanCommands" : ["/Users/shariqmobin/Library/Android/sdk/cmake/3.6.4111459/bin/cmake --build /Users/shariqmobin/AndroidStudioProject...
json_instruct
{"type": "object", "properties": {"buildFiles": {"type": "array", "items": {"type": "string"}}, "cleanCommands": {"type": "array", "items": {"type": "string"}}, "libraries": {"type": "object", "properties": {"oboe-Debug-x86": {"type": "object", "properties": {"artifactName": {"type": "string"}, "buildCommand": {"type":...
Create an example JSON object that satisfies this schema: {"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": "int...
{"nom" : "Meulan-en-Yvelines", "circ" : "7\u00e8me circonscription", "dpt" : "Yvelines", "inscrits" : 5675, "abs" : 3851, "votants" : 1824, "blancs" : 141, "nuls" : 39, "exp" : 1644, "res" : [{"nuance" : "MDM", "nom" : "Mme Mich\u00e8le DE VAUCOULEURS", "voix" : 854}, {"nuance" : "UDI", "nom" : "M. Arnaud RICHARD", "vo...
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"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"typ...
{"description" : "Palestra do Andrews Medina no Caipyra 2016:\n\nContainerize all the things\n\nSlides: http://talks.godoc.org/github.com/andrewsmedina/containerize-all-the-things/sample.slide#1", "language" : "por", "recorded" : "2016-06-25", "related_urls" : [{"label" : "Talk slides", "url" : "http://talks.godoc.org/...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "related_urls": {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "url": {"type": "string"}}, "required": ["label", "url"]}}, "speakers": {"type": ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "reposit...
{"name" : "wherewolf", "version" : "1.0.3", "description" : "A client-side boundary service powered by GeoJSON or TopoJSON data. Find which feature a point lies in.", "main" : "wherewolf.js", "scripts" : {"test" : "node test/test.js"}, "repository" : {"type" : "git", "url" : "git://github.com/veltman/wherewolf.git"}, ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "s...
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": {"dev": {"type": "string"}, "start": {"type": "string"}, "ini...
{"name" : "wundernode-api", "version" : "1.0.0", "description" : "Wundernode app clone API", "main" : "index.js", "scripts" : {"dev" : "nodemon src/index.js", "start" : "node src/index.js", "init" : "node src/database/install_db.js"}, "author" : "Ismael", "license" : "ISC", "dependencies" : {"axios" : "^0.18.0", "bcryp...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "start": {"type": "string"}, "init": {"type": "string"}}, "required": ["dev", "start", "init...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "esl...
{"name" : "@endeavorb2b/base-website-routing-utils", "version" : "0.15.0", "private" : true, "devDependencies" : {"eslint" : "^5.15.1", "eslint-config-airbnb-base" : "^13.1.0", "eslint-plugin-import" : "^2.16.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "eslint-config-airbnb-base": {"type": "string"}, "eslint-plugin-import": {"type": "string"}}, "required": ["esli...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Product": {"type": "string"}, "Version": {"type": "string"}, "Company": {"type": "string"}, "Description": {"type": "string"}, "Legal Copyright": {"type": "string"}}, "required": ["Product", "Version", "Company", "Description"...
{"Product" : "", "Version" : "0.0.0.33", "Company" : "", "Description" : "", "Legal Copyright" : ""}
json_instruct
{"type": "object", "properties": {"Product": {"type": "string"}, "Version": {"type": "string"}, "Company": {"type": "string"}, "Description": {"type": "string"}, "Legal Copyright": {"type": "string"}}, "required": ["Product", "Version", "Company", "Description", "Legal Copyright"], "$schema": "http://json-schema.org/dr...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "ch...
{"code" : 7301030007, "parent" : 7301030, "name" : "LAIYOLO", "latitude" : null, "longitude" : null, "postal" : [92855], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}}, "required": ["composite"]}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "...
{"compilerOptions" : {"composite" : true}, "references" : [{"path" : "packages/testbed/tsconfig.project.json"}, {"path" : "packages/box2d/tsconfig.project.json"}, {"path" : "packages/helloworld/tsconfig.project.json"}, {"path" : "packages/tests/tsconfig.project.json"}], "files" : []}
json_instruct
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"composite": {"type": "boolean"}}, "required": ["composite"]}, "references": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}}, "required": ["path"]}}, "files": {"type": "array", "items": {}}}, ...