input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
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"}}, "required": ["test"]}...
{"name" : "wordle-solver", "version" : "0.0.1", "description" : "Node Wordle Solving App", "main" : "index.js", "scripts" : {"test" : "jest"}, "keywords" : ["wordle"], "author" : "roto", "license" : "MIT", "devDependencies" : {"babar" : "^0.2.0", "lodash" : "^4.17.21"}, "dependencies" : {"command-line-args" : "^5.2.0"}...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, ...
{"configurations" : [{"name" : "Win32", "includePath" : ["${workspaceFolder}/**", "C:/Users/ENBSF/DEV/Courcera/CpSpec/TestRunner/**"], "defines" : ["_DEBUG", "UNICODE", "_UNICODE"], "intelliSenseMode" : "gcc-x64", "compilerArgs" : ["-Werror", "-pedantic-errors", "-Wall", "-Wextra", "-Wpedantic", "-Wcast-align", "-Wcast...
json_instruct
{"type": "object", "properties": {"configurations": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "includePath": {"type": "array", "items": {"type": "string"}}, "defines": {"type": "array", "items": {"type": "string"}}, "intelliSenseMode": {"type": "string"}, "compilerArgs": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"android":...
{"name" : "council-alert-app", "version" : "1.1.0", "private" : true, "description" : "Work on https://kusama.polkassembly.io/bounty/4", "main" : "index.ts", "scripts" : {"android" : "cd workspaces/app && yarn android", "ios" : "expo start --ios", "web" : "expo start --web"}, "repository" : {"type" : "git", "url" : "gi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"android": {"type": "string"}, "ios": {"type": "string"}, "web": {"type": "string"}}, "...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["a", "::after"]]
json_instruct
{"type": "array", "items": {"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": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"isSuccess": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type"...
{"__symbolic" : "module", "version" : 1, "metadata" : {"isSuccess" : {"__symbolic" : "error", "message" : "Function call not supported", "line" : 28, "character" : 24}}}
json_instruct
{"type": "object", "properties": {"__symbolic": {"type": "string"}, "version": {"type": "integer"}, "metadata": {"type": "object", "properties": {"isSuccess": {"type": "object", "properties": {"__symbolic": {"type": "string"}, "message": {"type": "string"}, "line": {"type": "integer"}, "character": {"type": "integer"}}...
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": {"serve": {"type": "string"}, "build-ts": {"t...
{"name" : "vue-spotify-app-backend", "version" : "1.0.0", "description" : "", "main" : "app.js", "scripts" : {"serve" : "nodemon dist/app.js", "build-ts" : "tsc"}, "author" : "", "license" : "ISC", "devDependencies" : {"@types/connect-history-api-fallback" : "^1.3.5", "@types/express" : "^4.17.13", "@types/randomstring...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build-ts": {"type": "string"}}, "required": ["serve", "build-ts"]}, "author": {"type": "s...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "website": {"type": "string"}}, "...
[{"name" : "Gold", "sponsors" : [{"name" : "Catalyst", "logo" : "Catalyst.png", "website" : "https://catalyst.net.nz"}, {"name" : "Xero", "logo" : "Xero.png", "website" : "https://www.xero.com"}, {"name" : "Media Suite", "logo" : "MediaSuite.png", "website" : "https://www.mediasuite.co.nz"}, {"name" : "Sharesies", "log...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "sponsors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "logo": {"type": "string"}, "website": {"type": "string"}}, "required": ["name", "logo", "website"]}}}, "required": ["name", "spon...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"Department": {"type": "string"}, "Name": {"type": "string"}, "Position": {"type": "string"}, "Region": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "h"...
{"Department" : "\u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u0430 \u043c\u0456\u0441\u0446\u0435\u0432\u0430 \u043f\u0440\u043e\u043a\u0443\u0440\u0430\u0442\u0443\u0440\u0430 \u0412\u0456\u043d\u043d\u0438\u0446\u044c\u043a\u043e\u0457 \u043e\u0431\u043b\u0430\u0441\u0442\u0456", "Name" : "\u0421\u043b\u0430\u04...
json_instruct
{"type": "object", "properties": {"Department": {"type": "string"}, "Name": {"type": "string"}, "Position": {"type": "string"}, "Region": {"type": "string"}, "analytics": {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "h": {"type": "number"}, "ha": {"type": "integer"}, "i": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "rechiseled_compat:block/environmental_cherry_planks_diagonal_tiles_connecting"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"specimenId": {"type": "string"}, "specimenName": {"type": "string"}, "description": {"type": "null"}, "cptCodeId": {"type": "null"}, "cptCodeQuantity": {"type": "integer"}, "clientFixation": {"type": "string"}, "la...
{"specimenId" : "SPCMNAUTOPSY", "specimenName" : "Autopsy Specimen", "description" : null, "cptCodeId" : null, "cptCodeQuantity" : 1, "clientFixation" : "Formalin", "labFixation" : "Fomalin", "requiresGrossExamination" : false, "processorRunId" : null}
json_instruct
{"type": "object", "properties": {"specimenId": {"type": "string"}, "specimenName": {"type": "string"}, "description": {"type": "null"}, "cptCodeId": {"type": "null"}, "cptCodeQuantity": {"type": "integer"}, "clientFixation": {"type": "string"}, "labFixation": {"type": "string"}, "requiresGrossExamination": {"type": "b...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map...
{"ast" : null, "code" : "'use strict';\n\nvar call = require('../internals/function-call');\n\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\n\nvar anObject = require('../internals/an-object');\n\nvar requireObjectCoercible = require('../internals/require-object-coercib...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/s...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"typ...
{"title" : "The Bury Hunt (after Painting by C. Agar)", "creation_date" : "19th century", "creation_date_earliest" : "1800-01-01", "creation_date_latest" : "1899-01-01", "medium" : "color engraving", "accession_number" : "72.14.11", "id" : "cmoa:things/ed4b8749-aca5-4056-99ab-e925bb200fd8", "credit_line" : "Bequest of ...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "creation_date": {"type": "string"}, "creation_date_earliest": {"type": "string"}, "creation_date_latest": {"type": "string"}, "medium": {"type": "string"}, "accession_number": {"type": "string"}, "id": {"type": "string"}, "credit_line": {"type": "string"},...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOff...
{"sentences" : [{"text" : {"content" : "female 4 month active n friendly very kind love to be cuddle her father is a bengal while her mother is a domestic long hair", "beginOffset" : -1}, "sentiment" : {"magnitude" : 0.9, "score" : 0.9}}], "tokens" : [], "entities" : [{"name" : "father", "type" : "PERSON", "metadata" :...
json_instruct
{"type": "object", "properties": {"sentences": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "object", "properties": {"content": {"type": "string"}, "beginOffset": {"type": "integer"}}, "required": ["content", "beginOffset"]}, "sentiment": {"type": "object", "properties": {"magnitude": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["220381405598", "\u521b\u4e1a\u519c\u573a\u865a\u62df\u751f\u6d3b\u533a", "123", "0"]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vega-lite.js": {"type": "string"}, "vega-lite.min.js": {"type": "string"}}, "required": ["vega-lite.js", "vega-lite.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vega-lite.js" : "sha512-YaMuJkyF5kL1PspWHNjbek4hPmAabWctBwpa729h85qp3qNgXKCZHArUblPLRBwLOIEz06RhnwaGptclvLU8Pg==", "vega-lite.min.js" : "sha512-YQ9G9a+u5y25i0T2+zzgC8V1MV7Ry7ap+GqrdENGy3EIAs3m+SOlBI+kRMeI96Ys2SV0U6MrxB7DIjC1S2mYJg=="}
json_instruct
{"type": "object", "properties": {"vega-lite.js": {"type": "string"}, "vega-lite.min.js": {"type": "string"}}, "required": ["vega-lite.js", "vega-lite.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"confirmed": {"type": "object", "properties": {}, "required": []}, "suspected": {"type": "object", "properties": {}, "required": []}, "deaths": {"type": "object", "properties": {"CDMX": {"type": "integer"}, "SI": {"ty...
{"confirmed" : {}, "suspected" : {}, "deaths" : {"CDMX" : 8, "SI" : 4, "HG" : 3, "JA" : 3, "SL" : 2, "CO" : 2, "BS" : 2, "DG" : 1, "MX" : 1, "MI" : 1, "MO" : 1, "OA" : 1, "PU" : 1, "QT" : 1, "QR" : 1, "VE" : 1, "GR" : 1, "NA" : 1, "TB" : 1, "ZA" : 1}}
json_instruct
{"type": "object", "properties": {"confirmed": {"type": "object", "properties": {}, "required": []}, "suspected": {"type": "object", "properties": {}, "required": []}, "deaths": {"type": "object", "properties": {"CDMX": {"type": "integer"}, "SI": {"type": "integer"}, "HG": {"type": "integer"}, "JA": {"type": "integer"}...
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"summary_date": {"type": "string"}, "period_id": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "intege...
[{"summary_date" : "2021-07-24", "period_id" : 4, "score" : 83, "score_activity_balance" : 91, "score_hrv_balance" : 89, "score_previous_day" : 95, "score_previous_night" : 60, "score_recovery_index" : 100, "score_resting_hr" : 100, "score_sleep_balance" : 69, "score_temperature" : 96, "rest_mode_state" : 0}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"summary_date": {"type": "string"}, "period_id": {"type": "integer"}, "score": {"type": "integer"}, "score_activity_balance": {"type": "integer"}, "score_hrv_balance": {"type": "integer"}, "score_previous_day": {"type": "integer"}, "score_previous_night": {"t...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "slug": {"type": "string"}, "description": {"type": "string"}, "article": {"type": "string"}, "externalImages": {"type": "array", "items": {"type": "string"}}, "price": ...
{"name" : "Equaliser Cartridge . Round Liner 7RLLT (0,35\u043c\u043c)", "id" : 378, "slug" : "equaliser-cartridge-round-liner-7rllt-0-35mm", "description" : "\u041a\u043e\u043d\u0442\u0443\u0440\u043d\u044b\u0435 \u0438\u0433\u043b\u044b \u0441 \u0434\u043b\u0438\u043d\u043d\u043e\u0439 \u0437\u0430\u0442\u043e\u0447\u...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "integer"}, "slug": {"type": "string"}, "description": {"type": "string"}, "article": {"type": "string"}, "externalImages": {"type": "array", "items": {"type": "string"}}, "price": {"type": "integer"}, "properties": {"type": "array", "items": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"10": {"type": "number"}, "11": {"type": "number"}, "12": {"type": "number"}, "13": {"type": "number"}, "15": {"type": "number"}, "16": {"type": "number"}, "17": {"type": "number"}, "18": {"type": "number"}, "19": {"type": "num...
{"10" : 0.21951219512195122, "11" : 0.7172413793103448, "12" : 0.024390243902439025, "13" : 0.024390243902439025, "15" : 0.0, "16" : 0.0, "17" : 0.024390243902439025, "18" : 0.0975609756097561, "19" : 0.3170731707317073}
json_instruct
{"type": "object", "properties": {"10": {"type": "number"}, "11": {"type": "number"}, "12": {"type": "number"}, "13": {"type": "number"}, "15": {"type": "number"}, "16": {"type": "number"}, "17": {"type": "number"}, "18": {"type": "number"}, "19": {"type": "number"}}, "required": ["10", "11", "12", "13", "15", "16", "1...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns": {"type": "string"}, "Version": {"type": "string"}, "DisplayData": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type"...
{"Spase" : {"xmlns" : "http://www.spase-group.org/data/schema", "Version" : "2.2.2", "DisplayData" : {"ResourceID" : "spase://VSPO/DisplayData/Ulysses/FGM/PLOTS", "ResourceHeader" : {"ResourceName" : "Ulysses magnetic field data plots at ESA", "ReleaseDate" : "2019-05-05T12:34:56Z", "Description" : "1-min and 1-hour Ul...
json_instruct
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns": {"type": "string"}, "Version": {"type": "string"}, "DisplayData": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "ReleaseDate...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "i...
{"coord" : {"lon" : -0.13, "lat" : 51.51}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01n"}], "base" : "stations", "main" : {"temp" : 7.47, "feels_like" : 3.16, "temp_min" : 4.44, "temp_max" : 10.56, "pressure" : 1019, "humidity" : 75}, "visibility" : 10000, "wind" : {"speed" : 4...
json_instruct
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"...
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" : "\uc774\uc740\uc7ac", "\ud55c\ubb38\uba85" : "\uf9e1\u6069\u5bb0", "\uc0dd\ub144\uc6d4\uc77c" : "1952-03-27", "\uc815\ub2f9" : "\ud55c\ub098\ub77c\ub2f9", "\uc120\uac70\uad6c" : "\ube44\ub840\ub300\ud45c", "\ub2f9\uc120\ud69f\uc218" : "\uc7ac\uc120", "\ub2f9\uc120\ub300\uc218" : "18, 20"}
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-100.501183, 31.410269], [-100.500437, 31.412237], [-100.49637, 31.416139], [-100.495819, 31.419632], [-100.496849, 31.424103], [-100.496263, 31.424356], [-100.469934, 31.415201], [-100.478258, 31.407649], [-100.480045, 3...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"repair_end" : "2019-07-01 20:01:37.156030", "repair_begin" : "2019-07-01 19:58:32.426513", "patches" : []}
json_instruct
{"type": "object", "properties": {"repair_end": {"type": "string"}, "repair_begin": {"type": "string"}, "patches": {"type": "array", "items": {}}}, "required": ["repair_end", "repair_begin", "patches"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"brief" : "flour", "long" : "<i>Meaning:</i> \"flour\" (as chipped off).<br/><i>Usage:</i> (fine) flour, meal.<br/><i>Source:</i> from an unused root meaning to \"strip\";"}
json_instruct
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_...
{"type" : "Feature", "properties" : {"name" : "Adams County", "name_long" : "Adams County, IL", "fips" : "17001", "state_code_int" : 17, "state_code_postal" : "IL", "state_code_iso" : "US-IL", "county_code" : 1, "population" : 65435, "countrylevel_id" : "fips:17001", "census_data" : {"COUNTYNS" : "00424202", "AFFGEOID"...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "name_long": {"type": "string"}, "fips": {"type": "string"}, "state_code_int": {"type": "integer"}, "state_code_postal": {"type": "string"}, "state_code_iso": {"type": "string"}, "co...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"title": {"type": "string"}, "tagline": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "introduce": {"type": "object", "properties": {"en": {"type": "...
{"title" : "EOSphere", "tagline" : {"en" : "Australian based, and serving the entire EOSPhere", "zh" : "\u603b\u90e8\u8bbe\u5728\u6fb3\u5927\u5229\u4e9a\uff0c\u4f46\u670d\u52a1\u4e8e\u6574\u4e2aEOSphere"}, "introduce" : {"en" : "EOSphere are a passionate group of EOS enthusiasts and data centre professionals campaignin...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "tagline": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "introduce": {"type": "object", "properties": {"en": {"type": "string"}, "zh": {"type": "string"}}, "required": ["en", "zh"]}, "acco...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"produ...
{"userId" : 24403, "cartId" : "2088811e-d9fd-4569-8642-d9d5e9fc8e73", "preferredProducts" : [977, 1107, 3522], "productReviews" : [{"productId" : 1311, "reviewText" : "heard about this on mbube radio, decided to give it a try.", "reviewDate" : "2018-07-21T22:43:26.1009912+03:00"}, {"productId" : 540, "reviewText" : "I ...
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 sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"ty...
{"coord" : {"lon" : 10.5, "lat" : 51.5}, "weather" : [{"id" : 804, "main" : "Clouds", "description" : "overcast clouds", "icon" : "04d"}], "base" : "stations", "main" : {"temp" : 28.44, "feels_like" : 28.57, "temp_min" : 26.74, "temp_max" : 28.66, "pressure" : 1020, "humidity" : 46, "sea_level" : 1020, "grnd_level" : 9...
json_instruct
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "app_id": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "app_id", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "akys", "app_id" : "4a790141", "type" : "ionic-angular"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "app_id": {"type": "string"}, "type": {"type": "string"}}, "required": ["name", "app_id", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["publish-io", "wisdom"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regency...
[{"id" : "1001", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Nunu"}, {"id" : "1002", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Palupi"}, {"id" : "1003", "provinceId" : "72", "regencyId" : "71", "districtId" : "06", "name" : "Tawanjuka"}, {"id" : "1004", "provinc...
json_instruct
{"type": "array", "items": {"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.or...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type":...
{"text" : {"0" : {"m1" : "\u0647\u0631 \u0634\u0628 \u0627\u0632 \u062f\u0633\u062a \u063a\u0645\u062a \u062f\u06cc\u062f\u0647 \u0648 \u062f\u0644 \u062e\u0648\u0646 \u0634\u0648\u062f\u0645", "m2" : "\u0648\u0627\u0646\u06af\u0647 \u0627\u0632 \u0647\u0631 \u0645\u0698\u0647 \u0631\u0627\u0648\u0642 \u0634\u062f\u064...
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "2": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d585-28", "text" : "F. H. LaGUARDIA, Mayor\nM. S. NOVIK, Director\nWNYC\nAnd\nStations\nWASJ\nWKDX\nWBCD\nW2XRG\nW2XVP\nk\nNEW YORK\nWORLD\u2019S FAIR 1939\nCITY OF NEW YORK\nMUNICIPAL BROADCASTING SYSTEM\nMUNICIPAL BUILDING\nWORTH 2-5600\nOctober 18, 1939.\nMr. Prank E. Schooley. Executive Secretary,\nThe Nat...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"u-swiper": {"type": "string"}, "u-icon": {"type": "string"}}, "required": ["u-...
{"navigationBarTitleText" : "", "enablePullDownRefresh" : false, "usingComponents" : {"u-swiper" : "/uni_modules/uview-ui/components/u-swiper/u-swiper", "u-icon" : "/uni_modules/uview-ui/components/u-icon/u-icon"}}
json_instruct
{"type": "object", "properties": {"navigationBarTitleText": {"type": "string"}, "enablePullDownRefresh": {"type": "boolean"}, "usingComponents": {"type": "object", "properties": {"u-swiper": {"type": "string"}, "u-icon": {"type": "string"}}, "required": ["u-swiper", "u-icon"]}}, "required": ["navigationBarTitleText", "...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, ...
{"bug_id" : "35", "target" : ["org/apache/commons/lang3/ArrayUtils.java:3300", "org/apache/commons/lang3/ArrayUtils.java:3574"], "tool" : "ACS", "correctness" : "Correct", "project" : "Lang", "ID" : "329_NFL_ACS_Patch_4_4"}
json_instruct
{"type": "object", "properties": {"bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}, "project": {"type": "string"}, "ID": {"type": "string"}}, "required": ["bug_id", "target", "tool", "correctness", "project", "ID"], "$s...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"modifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["modifiers"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"modifiers" : ["GUdTMN6LZb2TfnD3AAYJDTJPXBy76kVuuG"]}, {"modifiers" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"modifiers": {"type": "array", "items": {"type": "string"}}}, "required": ["modifiers"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"topthink/framework": {"type": "string"}}, "required": ["topthink/framework"...
{"name" : "chouvc/ealing-migration", "description" : "The a for Ealing migration", "type" : "library", "require-dev" : {"topthink/framework" : "^5.0"}, "license" : "Apache-2.0", "autoload" : {"psr-4" : {"Phinx\\" : "phinx/src/Phinx", "think\\migration\\" : "src"}, "files" : ["src/config.php"]}, "authors" : [{"name" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require-dev": {"type": "object", "properties": {"topthink/framework": {"type": "string"}}, "required": ["topthink/framework"]}, "license": {"type": "string"}, "autoload": {"type": "object", "pro...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ig...
{"name" : "template", "description" : "This is a starter template for Web app.", "main" : "index.js", "authors" : ["Tej"], "license" : "ISC", "homepage" : "", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests"], "dependencies" : {"bootstrap-sass" : "^3.3.6"}, "devDependencies" : {"bootstrap-sass" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "dependencies":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, ...
{"_id" : "beer_Border_Gold_Oranic_Ale", "brewery" : "Broughton Ales", "name" : "Border Gold Oranic Ale", "abv" : "6", "description" : "According to legend, gold panned from the crystal clear Border streams of the Yarrow valley, nearby the site of the Broughton Ales brewery, was used to make the third wedding ring of Ma...
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "style": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv",...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema...
{"towns" : [{"name" : "Besadingen", "url" : "besadingen"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string...
{"name" : "flashcanvas", "assets" : [{"files" : ["canvas2png.js", "flashcanvas.js", "flashcanvas.swf"], "version" : "1.5", "mainfile" : "flashcanvas.js"}], "versions" : ["1.5"], "zip" : "flashcanvas.zip", "author" : "flashcanvas", "homepage" : "http://flashcanvas.net/", "description" : "FlashCanvas is a JavaScript libr...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "assets": {"type": "array", "items": {"type": "object", "properties": {"files": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "mainfile": {"type": "string"}}, "required": ["files", "version", "mainfile"]}}, "versions": {"type...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "pro...
{"name" : "blog-back-end", "version" : "0.0.0", "private" : true, "scripts" : {"start" : "node app.js"}, "dependencies" : {"debug" : "~2.6.9", "dotenv" : "^6.0.0", "express" : "~4.16.0", "http" : "0.0.0", "mongoose" : "^5.1.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"debug": {"type": "string"}, "dotenv": {"type"...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php-di/php-di": {"type": "string"}, "selective/basepath": {"type": "stri...
{"name" : "rwi/skelton", "description" : "Skelton is a structure variant of the PHP micro framework Slim that helps you reuse past projects by configurable routing and processes and definition of processes and providers.", "type" : "library", "require" : {"php-di/php-di" : "^6.0", "selective/basepath" : "^1.0", "slim/p...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "require": {"type": "object", "properties": {"php-di/php-di": {"type": "string"}, "selective/basepath": {"type": "string"}, "slim/psr7": {"type": "string"}, "slim/slim": {"type": "string"}, "tuup...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "str...
{"code" : "P0541", "description" : "Intake Air Heater \"A\" Circuit Low", "info" : ["This generic powertrain diagnostic trouble code (DTC) typically applies to all OBD-II equipped vehicles that have an air intake heater, including but not limited to Chevrolet GMC (Duramax), Ford (Powerstroke), Honda, Nissan, Dodge, etc...
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "description": {"type": "string"}, "info": {"type": "array", "items": {"type": "string"}}, "symptoms": {"type": "array", "items": {"type": "string"}}, "causes": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}}, "required": ["code",...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {}}, "tags": {...
{"description" : "Elegantly Produce and Consume Compiled Packages (babel, coffee-script, etc) - Benjamin Lupton, Bevry\n\n\"JavaScript production use to be as easy as publishing your source code, which worked across all environments, with a few minor tweaks. Consumption was as easy as downloading and requiring the pack...
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "favorite": {"type": "string"}, "length": {"type": "string"}, "likes": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {}}, "tags": {"type": "array", "items": {}}, "thumbnail_url": {"type": "string"}, "title"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"string_to_sentences": {"type": "object", "properties": {}, "required": []}, "post_correction": {"type": "object", "properties": {}, "required": []}, "ner_bert": {"type": "object", "properties": {"berts_to_use": {"ty...
{"string_to_sentences" : {}, "post_correction" : {}, "ner_bert" : {"berts_to_use" : {"40-10-1-split-minus-137-fixed" : ["person", "location", "time"]}}, "ner_lists" : {"data_dir" : ["ner_lists", "SZSA"], "entity_types" : ["person", "location", "time"], "cutoff_score" : 0.85, "word_getter" : "BERT"}, "modernisation" : {...
json_instruct
{"type": "object", "properties": {"string_to_sentences": {"type": "object", "properties": {}, "required": []}, "post_correction": {"type": "object", "properties": {}, "required": []}, "ner_bert": {"type": "object", "properties": {"berts_to_use": {"type": "object", "properties": {"40-10-1-split-minus-137-fixed": {"type"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"typescript.preferences.importModuleSpecifier": {"type": "string"}, "typescript.preferences.quoteStyle": {"type": "string"}, "prettier.singleQuote": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "ed...
{"typescript.preferences.importModuleSpecifier" : "relative", "typescript.preferences.quoteStyle" : "single", "prettier.singleQuote" : true, "editor.formatOnSave" : true, "editor.codeActionsOnSave" : {"source.organizeImports" : true}}
json_instruct
{"type": "object", "properties": {"typescript.preferences.importModuleSpecifier": {"type": "string"}, "typescript.preferences.quoteStyle": {"type": "string"}, "prettier.singleQuote": {"type": "boolean"}, "editor.formatOnSave": {"type": "boolean"}, "editor.codeActionsOnSave": {"type": "object", "properties": {"source.or...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "string"}, "lvl1": {"type": "string"}, "lvl2": {"...
{"index_name" : "wakanda_studio", "start_urls" : ["http://wakanda.github.io/wakanda-studio/"], "selectors" : {"lvl0" : "#chapter", "lvl1" : "section h1", "lvl2" : "section h2", "lvl3" : "section h3", "lvl4" : "section h4", "lvl5" : "section h5", "text" : "section p"}, "selectors_exclude" : ["#table-of-contents", "secti...
json_instruct
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "string"}, "lvl1": {"type": "string"}, "lvl2": {"type": "string"}, "lvl3": {"type": "string"}, "lvl4": {"type": "string"}, "lv...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1988, 9], [1989, 9], [1990, 5], [1991, 8], [1992, 9], [1993, 6], [1994, 14], [1995, 20], [1996, 18], [1997, 15], [1998, 16], [1999, 18], [2000, 25], [2001, 25], [2002, 17], [2003, 32], [2004, 35], [2005, 75], [2006, 88], [2007, 89], [2008, 126], [2009, 184], [2010, 163], [2011, 218], [2012, 186], [2013, 173], [2014, ...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "440982100001", "text" : "\u957f\u5c90\u5c45\u59d4\u4f1a"}, {"id" : "440982100201", "text" : "\u957f\u5c90\u6751\u59d4\u4f1a"}, {"id" : "440982100202", "text" : "\u897f\u6e7e\u6751\u59d4\u4f1a"}, {"id" : "440982100203", "text" : "\u53cc\u724c\u6751\u59d4\u4f1a"}, {"id" : "440982100204", "text" : "\u7c73\u80fd\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "m...
{"author" : {"id" : "t2_59u6onkl", "name" : "MiscellaneaMaps"}, "date" : {"day" : 1617753600, "full" : 1617807346, "month" : 1617235200, "week" : 1617494400}, "id" : "t3_mm3wza", "misc" : {"postHint" : "image"}, "picture" : {"filesize" : 140410, "fullUrl" : "https://preview.redd.it/4e23nftglrr61.jpg?auto=webp&s=4c23783...
json_instruct
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"<page title>": {"type": "string"}, "aperture range": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "face detection": {"type": "st...
{"<page title>" : "Sony Cybershot DSC W830 Price In India, Bangalore, Hyderabad, Delhi, Chennai, Mumbai, Pune, Kolkatta", "aperture range" : "F3.3 (W) - F8.0 (T)", "auto focus" : "Yes", "camera resolution" : "20.1 MP", "digital zoom" : "32x", "face detection" : "Yes", "focal length" : "4.5 - 36 mm", "image stablizer" :...
json_instruct
{"type": "object", "properties": {"<page title>": {"type": "string"}, "aperture range": {"type": "string"}, "auto focus": {"type": "string"}, "camera resolution": {"type": "string"}, "digital zoom": {"type": "string"}, "face detection": {"type": "string"}, "focal length": {"type": "string"}, "image stablizer": {"type":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"_id": {"type": "object", "properties": {"id": {"type": "string"}, "datatype": {"type": "string"}}, "required": ["id", "datatype"]}, "lastModified": {"type": "string"}, "variableId": {"type": "string"}, "legen...
{"_id" : {"id" : "ereefs/bgc/dor_c", "datatype" : "VARIABLE"}, "lastModified" : "2020-07-23T16:40:00.000+08:00", "variableId" : "DOR_C", "legend" : {"title" : {"text" : "Dissolved Organic Carbon (mg C m-3)", "fontSize" : 12}, "steps" : 6}, "colourPaletteName" : "Blue25Red75Rainbow2", "scaleMin" : 230, "scaleMax" : 730}
json_instruct
{"type": "object", "properties": {"_id": {"type": "object", "properties": {"id": {"type": "string"}, "datatype": {"type": "string"}}, "required": ["id", "datatype"]}, "lastModified": {"type": "string"}, "variableId": {"type": "string"}, "legend": {"type": "object", "properties": {"title": {"type": "object", "properties...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"creators": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}, "orcid": {"type": "string"}}, "required": ["affiliation", "name", "orcid"]}}, "k...
{"creators" : [{"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "Wasser, Leah", "orcid" : "0000-0002-8177-6550"}, {"affiliation" : "Earth Lab, University of Colorado - Boulder", "name" : "Joseph, Max", "orcid" : "0000-0002-7745-9990"}, {"affiliation" : "Earth Lab, University of Colorado - Boulde...
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": {...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"nick": {"type": "string"}, "message": {"type": "string"}}, "required": ["nick", "message"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"nick" : "da_wunder", "message" : "Hello World!"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"nick": {"type": "string"}, "message": {"type": "string"}}, "required": ["nick", "message"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"900635240": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635241": {"type": "object", "properties": {"n...
{"900635240" : {"nama" : "TPS 1", "dapil" : [5201, 15206, 2520601]}, "900635241" : {"nama" : "TPS 2", "dapil" : [5201, 15206, 2520601]}, "900635242" : {"nama" : "TPS 3", "dapil" : [5201, 15206, 2520601]}}
json_instruct
{"type": "object", "properties": {"900635240": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900635241": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}, "gltfUpAxis": {"type": "string"}}, "required": ["version", "tilesetVersion", "gltfUpAxis"]}, "geometricError": {"ty...
{"asset" : {"version" : "0.0", "tilesetVersion" : "1.0.0-obj23dtiles", "gltfUpAxis" : "Y"}, "geometricError" : 200, "root" : {"transform" : [0.9954612079013915, 0.09516818566885954, 0, 0, -0.05300373995399989, 0.5544202259092229, 0.8305472994680405, 0, 0.07904167960254437, -0.8267776179476944, 0.5569480975336436, 0, 50...
json_instruct
{"type": "object", "properties": {"asset": {"type": "object", "properties": {"version": {"type": "string"}, "tilesetVersion": {"type": "string"}, "gltfUpAxis": {"type": "string"}}, "required": ["version", "tilesetVersion", "gltfUpAxis"]}, "geometricError": {"type": "integer"}, "root": {"type": "object", "properties": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/...
{"name" : "is-windows", "description" : "Fake non-scoped submodule", "version" : "0.0.0", "main" : "index.js"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}}, "required": ["name", "description", "version", "main"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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": {}}, "t...
{"directions" : ["To Make Sour Cream Mixture: In a blender or food processor, puree cilantro, sour cream, jalapeno salsa and 1/2 can of the green chile salsa. Set aside.", "To Make Chicken Mixture: In a large bowl, combine shredded chicken, onion and the remaining 1 1/2 cans of green chile salsa. Mix well.", "Preheat o...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["already_configured", "unknown"]}, "erro...
{"config" : {"abort" : {"already_configured" : "Seade on juba h\u00e4\u00e4lestatud", "unknown" : "Tundmatu t\u00f5rge"}, "error" : {"not_found" : "Seadmeid ei leitud"}, "step" : {"user" : {"data" : {"code" : "Jaama kood"}, "data_description" : {"code" : "N\u00e4eb v\u00e4lja nagu ESCAT4300000043206B"}}}}}
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"already_configured": {"type": "string"}, "unknown": {"type": "string"}}, "required": ["already_configured", "unknown"]}, "error": {"type": "object", "properties": {"not_found": {"type": "string"}}, ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "programmers-chest:block/programmers_chest_block"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"values" : ["aestd.private:lib1/entity/shoot_arrow/check_v2"]}
json_instruct
{"type": "object", "properties": {"values": {"type": "array", "items": {"type": "string"}}}, "required": ["values"], "$schema": "http://json-schema.org/draft-07/schema#"}
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"}, "author": {"type": "object", ...
{"name" : "dtrace-provider", "version" : "0.2.8", "description" : "Native DTrace providers for node.js applications", "keywords" : ["dtrace"], "homepage" : "https://github.com/chrisa/node-dtrace-provider#readme", "author" : {"name" : "Chris Andrews", "email" : "chris@nodnol.org"}, "repository" : {"type" : "git", "url" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"report_suites": {"type": "array", "items": {"type": "object", "properties": {"rsid": {"type": "string"}, "site_title": {"type": "string"}}, "required": ["rsid", "site_title"]}}}, "required": ["report_suites"], ...
{"report_suites" : [{"rsid" : "omniture.api-gateway", "site_title" : "test_suite"}]}
json_instruct
{"type": "object", "properties": {"report_suites": {"type": "array", "items": {"type": "object", "properties": {"rsid": {"type": "string"}, "site_title": {"type": "string"}}, "required": ["rsid", "site_title"]}}}, "required": ["report_suites"], "$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"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string...
{"name" : "@json2render/vue-full", "version" : "1.0.4", "description" : "> TODO: description", "author" : "fyl080801 <fyl080801@hotmail.com>", "homepage" : "https://github.com/fyl080801/json-to-render#readme", "license" : "MIT", "main" : "src/index.ts", "module" : "src/index.ts", "browser" : "dist/index.umd.js", "unpkg...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "browser": {"type": "string"}, "unpkg": {...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientT...
{"clientID" : "nGYo7cUpwXLGhe5gPivtkQ==", "serverToken" : "1@PpU9txfzpcA76XCLBxGfMDfOHEocSjw6UMktX2o0y4ZhSCL5GK9t7o7Vz25Xyu6nEhCip8GCp26K4A==", "clientToken" : "ZOA0sWaDqq/zwr399v7tCYZ/OuARZGRhOHPJG0o1mRU=", "encKey" : "zs/CMeAz3iw030tjWzwypjYijjUQsi/25vJg827UzY0=", "macKey" : "FtkrKIlKSg7NbuSthyyBTYvQCoSIArxQFrhe9Bybq...
json_instruct
{"type": "object", "properties": {"clientID": {"type": "string"}, "serverToken": {"type": "string"}, "clientToken": {"type": "string"}, "encKey": {"type": "string"}, "macKey": {"type": "string"}}, "required": ["clientID", "serverToken", "clientToken", "encKey", "macKey"], "$schema": "http://json-schema.org/draft-07/sch...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "prope...
{"type" : "MultiPolygon", "coordinates" : [[[[-99.319063, 38.539059], [-99.318766, 38.539057], [-99.31635, 38.539003], [-99.315529, 38.538984], [-99.312073, 38.538902], [-99.311992, 38.5389], [-99.311342, 38.538876], [-99.310961, 38.538872], [-99.309759, 38.538838], [-99.308992, 38.538817], [-99.308594, 38.538812], [-9...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "properties": {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "name": {...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "fad824bf188b06fd2b7b0626618adf5dd0f9dfe5.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"pools": {"type": "object", "properties": {"A-warm": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}, "A-cold": {"type": "object", "properties": {...
{"pools" : {"A-warm" : {"servers" : ["127.0.0.1:11610"]}, "A-cold" : {"servers" : ["127.0.0.1:11611"]}}, "route" : {"type" : "WarmUpRoute", "cold" : "PoolRoute|A-cold", "warm" : "PoolRoute|A-warm"}}
json_instruct
{"type": "object", "properties": {"pools": {"type": "object", "properties": {"A-warm": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required": ["servers"]}, "A-cold": {"type": "object", "properties": {"servers": {"type": "array", "items": {"type": "string"}}}, "required...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "label": {"type": "string"}}, "requir...
{"results" : [{"categories" : [{"count" : 2, "label" : "Male"}, {"count" : 5, "label" : "Female"}], "label" : "All", "open_ended" : null, "set" : 7, "unset" : 3}]}
json_instruct
{"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "object", "properties": {"count": {"type": "integer"}, "label": {"type": "string"}}, "required": ["count", "label"]}}, "label": {"type": "string"}, "open_ended": {"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031976": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties"...
{"type" : "Topology", "objects" : {"E01031976" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00163064", "LAD11CD" : "E06000054"}, "arcs" : [[0, 1]]}, {"type" : "Polygon", "properti...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031976": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": ...
{"userId" : 70811, "cartId" : "8e8fb7ed-dad8-4907-837b-a88bfd861132", "preferredProducts" : [4465, 2539, 948, 4660, 4835], "productReviews" : [{"productId" : 4951, "reviewText" : "I saw one of these in South Korea and I bought one.", "reviewDate" : "2016-09-23T06:54:48.079472+03:00"}, {"productId" : 2117, "reviewText" ...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"...
{"name" : "generator-nodejs-module", "version" : "1.0.2", "description" : "Yeoman generator", "license" : "MIT", "main" : "app/index.js", "repository" : {"type" : "git", "url" : "https://github.com/ericmdantas/generator-nodejs-module"}, "author" : "Eric Mendes Dantas <ericdantas0@gmail.com> (https://github.com/ericmdan...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]},...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"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", "l...
{"place_name" : "Alden", "state_name" : "Iowa", "state_abbrv" : "IA", "lat" : "42.5179", "long" : "-93.3841"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": ...
{"name" : "endelwar/doctrine1-addons", "description" : "Some missing classes and utilities for Doctrine 1.2", "minimum-stability" : "stable", "license" : "MIT", "authors" : [{"name" : "Manuel Dalla Lana", "email" : "endelwar@aregar.it"}], "repositories" : [{"type" : "vcs", "url" : "https://github.com/pepeverde/doctrine...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "minimum-stability": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", ...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "properties": {"uml": {"type": "object", "properties": {"format": {"type": "string"}, "charset": {"typ...
{"language" : "ja", "plugins" : ["-sharing", "hide-published-with", "-lunr", "-search", "search-pro-kui", "uml", "expandable-chapters", "include-codeblock", "code-editor", "code"], "pluginsConfig" : {"uml" : {"format" : "svg", "charset" : "UTF-8", "nailgun" : false}}}
json_instruct
{"type": "object", "properties": {"language": {"type": "string"}, "plugins": {"type": "array", "items": {"type": "string"}}, "pluginsConfig": {"type": "object", "properties": {"uml": {"type": "object", "properties": {"format": {"type": "string"}, "charset": {"type": "string"}, "nailgun": {"type": "boolean"}}, "required...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "...
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.192479, 34.040466], [-118.184645, 34.040516], [-118.184461, 34.031851], [-118.192359, 34.031161], [-118.192377, 34.033233], [-118.191269, 34.033613], [-118.191291, 34.034417], [-118.192384, 34.034002], [-118.192479, ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "numbe...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "websocket-component": {"type": "string...
{"name" : "rubberedge2", "description" : "Modern take of the rubberedge experiment", "main" : "index.html", "dependencies" : {"polymer" : "Polymer/polymer#^2.0.0", "websocket-component" : "^1.1.3", "lazy-imports" : "Polymer/lazy-imports#^2.0.0", "iron-ajax" : "PolymerElements/iron-ajax#^2.0.0", "app-route" : "PolymerEl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"polymer": {"type": "string"}, "websocket-component": {"type": "string"}, "lazy-imports": {"type": "string"}, "iron-ajax": {"type": "string"}, "a...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"Paper_link": {"type": "string"}, "Title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "Citations_Li...
{"citations" : [{"Paper_link" : "http://link.springer.com/chapter/10.1007/978-3-540-74761-1_12", "Title" : "Crystal growth of oxides by optical floating zone technique", "authors" : ["HA Dabkowska", "AB Dabkowski "], "Citations_Link" : "https://scholar.google.com/scholar?cites=939139899912411977&as_sdt=2005&sciodt=0,5&...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"Paper_link": {"type": "string"}, "Title": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "Citations_Link": {"type": "string"}}, "required": ["Paper_link", "Title", "authors", "Cit...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["610424101200", "\u859b\u5f55\u6751\u59d4\u4f1a", "121", "0"], ["610424101203", "\u6619\u652f\u574a\u6751\u59d4\u4f1a", "220", "0"], ["610424101205", "\u9a6c\u5170\u5be8\u6751\u59d4\u4f1a", "220", "0"], ["610424101208", "\u859b\u5b85\u6751\u59d4\u4f1a", "220", "0"], ["610424101213", "\u5317\u7530\u679c\u6751\u59d4\u4...
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": "object", "properties": {"707959f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type...
{"707959f-a" : {"width" : 600, "thumb_url" : "http://oldnyc-assets.nypl.org/thumb/707959f-a.jpg", "image_url" : "http://oldnyc-assets.nypl.org/600px/707959f-a.jpg", "title" : "", "date" : "1930", "text" : "2nd Avenue and 104th Street, looking south, showing the Atlantic and Pacific Tea Company, on northwest corner of 2...
json_instruct
{"type": "object", "properties": {"707959f-a": {"type": "object", "properties": {"width": {"type": "integer"}, "thumb_url": {"type": "string"}, "image_url": {"type": "string"}, "title": {"type": "string"}, "date": {"type": "string"}, "text": {"type": "string"}, "folder": {"type": "string"}, "height": {"type": "integer"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"average_occupancy" : [2.7485382977202186, 2.8004390438361653, 2.804595380921073, 2.8328735055609964, 2.6188840149889887, 2.80082157131404, 2.7630609920234166, 2.842243890052419, 2.923777184964981, 2.930174469453065, 2.9793570200093575, 2.8280306719900867, 2.7489538734379333, 2.806404179122874, 2.821598904327177, 2.68...
json_instruct
{"type": "object", "properties": {"average_occupancy": {"type": "array", "items": {"type": "number"}}}, "required": ["average_occupancy"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurren...
{"id" : "bc0c263d039c4d228800c3a79bee7487", "price" : {"totalPaymentPrice" : {"paymentCurrencyAmount" : 3333, "paymentCurrencyCode" : "CAD", "paymentCurrencyExchangeRate" : 1, "paymentCurrencySymbol" : "$"}, "totalPrice" : {"basePayoutCurrencyCode" : "USD", "basePayoutPrice" : 2715, "convenienceFee" : 0, "currencyCode"...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "price": {"type": "object", "properties": {"totalPaymentPrice": {"type": "object", "properties": {"paymentCurrencyAmount": {"type": "integer"}, "paymentCurrencyCode": {"type": "string"}, "paymentCurrencyExchangeRate": {"type": "integer"}, "paymentCurrencySymbo...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "a40c7946eaea3094517e", "c" : {"main" : true}}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"main": {"type": "boolean"}}, "required": ["main"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "trental", "definition" : "1. (R. C. Ch.) An office and mass for the dead on the thirtieth day after death or burial. \"Their trentals and their shrifts.\" Spenser. 2. Hence, a dirge; an elegy."}
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": "array", "items": {"type": "object", "properties": {"namespace": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"ty...
[{"namespace" : "migration", "functions" : [{"name" : "getUserPrefs", "type" : "function", "description" : "Get the prefs set by the user", "async" : true, "parameters" : []}, {"name" : "getAccountPrefs", "type" : "function", "description" : "Get the prefs set by the user for a specific account", "async" : true, "param...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"namespace": {"type": "string"}, "functions": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "async": {"type": "boolean"}, "parameters": {"type": "array",...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId",...
{"id" : "1013", "provinceId" : "73", "regencyId" : "18", "districtId" : "20", "name" : "Rembon"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"900643371": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643372": {"type": "object", "properties": {"nama": {"type...
{"900643371" : {"nama" : "TPS 1", "dapil" : [5301, 15306, 2530607]}, "900643372" : {"nama" : "TPS 2", "dapil" : [5301, 15306, 2530607]}, "900643373" : {"nama" : "TPS 3", "dapil" : [5301, 15306, 2530607]}}
json_instruct
{"type": "object", "properties": {"900643371": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900643372": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter",...
{"width" : 0.1569881, "rotation" : -2.889857, "xCenter" : 0.5085617, "yCenter" : 0.66228324, "height" : 0.19623514}
json_instruct
{"type": "object", "properties": {"width": {"type": "number"}, "rotation": {"type": "number"}, "xCenter": {"type": "number"}, "yCenter": {"type": "number"}, "height": {"type": "number"}}, "required": ["width", "rotation", "xCenter", "yCenter", "height"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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" : "sha512-uUDvYNSfyh+zCZNAchT+cKdPx7Ywh1OXlmK9GaU4idSAOuWlfTONk48gcE5Ty36IRuRYR+QrgDkKh7ect+swcg==", "aws-sdk.min.js" : "sha512-uQYvgjTtS1g2Wh5p7v+wggpRFqM7RsWPZfJAcPYGNgSlN/HzSZvjo/rLN750LjKuV6MtvDmT4VAnLDZOznDhgA=="}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "LENGTH_OF_ERA" : {"CATEGORY" : "Length of era", "MIN_VALUE" : 1, "P10_VALUE" : 1, "P25_VALUE" : 1, "MEDIAN_VAL...
json_instruct
{"type": "object", "properties": {"PREVALENCE_BY_GENDER_AGE_YEAR": {"type": "object", "properties": {"TRELLIS_NAME": {"type": "array", "items": {}}, "SERIES_NAME": {"type": "array", "items": {}}, "X_CALENDAR_YEAR": {"type": "array", "items": {}}, "Y_PREVALENCE_1000PP": {"type": "array", "items": {}}}, "required": ["TRE...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "propert...
{"name" : "label-gun", "version" : "1.0.0", "description" : "", "author" : "Emiliano Heyns <emiliano.heyns@iris-advies.com> (https://github.com/retorquere/label-gun)", "license" : "ISC", "repository" : "https://github.com/retorquere/label-gun.git", "scripts" : {"start" : "probot run ./build/index.js", "build" : "tsc --...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "stri...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties"...
{"index_name" : "storybook-js", "start_urls" : ["https://storybook.js.org", "https://storybook.js.org/basics/introduction/"], "stop_urls" : [], "selectors" : {"lvl0" : {"selector" : "//*[contains(@id, 'nav')]//li/a[contains(@class, 'selected')]/../../preceding::h3[1]", "type" : "xpath"}, "lvl1" : ".content h1", "lvl2" ...
json_instruct
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "properties": {"selector": {"type": "string"}, "type": {"type": "string...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"ty...
{"citations" : [{"textCitation" : "[See hashunx on Metamath](http://us.metamath.org/mpegif/hashunx.html)"}], "names" : ["hashunx"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wcel", "#T_cV", "#T_w3a--1", "#T_cB", "#T_wcel", "#T_cW", "#T_w3a--2", "#T_cA", "#T_cin", "#T_cB", "#T_wceq", "#T_c0", "#T_wi"...
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "st...
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": "number"}}}, "required": ["type", "coordinates"]}, "properties":...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.495984, 52.418872]}, "properties" : {"deliverable" : "yes", "maximum-net-dwellings" : "128", "name" : "F30", "site-plan-url" : "http://www.coventry.gov.uk/downloads/file/19663/lp53_shlaa_2016_report_and_appendices", "notes" : "Industrial units and...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"deliverable": {"type": "string"},...
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": "number"}}}, "required": ["type", "coordinates"]}, "properties":...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-2.468504, 53.566603]}, "properties" : {"site" : "1308-BOL", "name" : "1308-BOL", "organisation" : "local-authority-eng:BOL", "planning-permission-history" : "https://www.planningpa.bolton.gov.uk/online-applications-17/search.do?action=simple&searchT...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"site": {"type": "string"}, "name"...
Create an example JSON object that satisfies this schema: {"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": {}}, ...
{"directions" : ["Grease a disposable 8x8 inch baking pan. Stir sugar, corn syrup, and vinegar together in a heavy saucepan until the sugar is just mixed in, and the mixture looks like dirty sand.", "Place pan over medium-low heat. Cook to 307 degrees F on a candy thermometer, about 15 minutes. Remove from heat; gently...
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...
Create a JSON structure that matches this schema definition: {"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": {"ty...
{"code" : 5304071011, "parent" : 5304071, "name" : "OFU", "latitude" : null, "longitude" : null, "postal" : [85581, 85563], "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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"ty...
{"geometry" : {"type" : "Point", "coordinates" : [-73.64, 43.07]}, "type" : "Feature", "id" : "12884", "properties" : {"other_cities" : "", "city" : "Victory Mills", "state" : "NY", "county" : "Saratoga County"}}
json_instruct
{"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"other_c...