input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "63e1c8280daf739a193850c9efeb6ce8aca94d0a.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {...
{"nom" : "Marcillac-Saint-Quentin", "dpt" : "Dordogne", "inscrits" : 645, "abs" : 117, "votants" : 528, "blancs" : 10, "nuls" : 56, "exp" : 462, "res" : [{"panneau" : "1", "voix" : 329}, {"panneau" : "2", "voix" : 133}]}
json_instruct
{"type": "object", "properties": {"nom": {"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", "items": {"type": "object"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": ...
{"id" : 102029937, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "54c2d5d98e688e62c242d3984359bd7b", "wof:id" : 102029937, "wof:repo" : "whosonfirst-data-admin-in"}, "bbox" : [73.8752, 19.20815, 73.8752, 19.20815], "geometry" : {"coordinates"...
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": ["...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"defaultTitle": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"list": {"type": "string"}, "input-item": {"type": "string"}, "picker-item": {"type": "string"}}, "required": ["list", "input-item", "pick...
{"defaultTitle" : "input-item", "usingComponents" : {"list" : "../../list/index", "input-item" : "../index", "picker-item" : "../../picker-item/index"}}
json_instruct
{"type": "object", "properties": {"defaultTitle": {"type": "string"}, "usingComponents": {"type": "object", "properties": {"list": {"type": "string"}, "input-item": {"type": "string"}, "picker-item": {"type": "string"}}, "required": ["list", "input-item", "picker-item"]}}, "required": ["defaultTitle", "usingComponents"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart":...
{"categories" : ["prop"], "equivalent" : [], "manufacturer" : "Gemfan", "name" : "6x4.5 Multirotor Carbon Fiber", "replacement" : [], "subpart" : [], "urls" : {"manufacturer" : [], "related" : []}, "variants" : [{"price" : "$5.49", "stock_state" : "in_stock", "stock_text" : "In Stock", "url" : "http://www.getfpv.com/ge...
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "equivalent": {"type": "array", "items": {}}, "manufacturer": {"type": "string"}, "name": {"type": "string"}, "replacement": {"type": "array", "items": {}}, "subpart": {"type": "array", "items": {}}, "urls": {"type": "object...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type"...
{"name" : "StickyLayout", "version" : "1.0.0", "summary" : "Stick to it.", "description" : "StickyLayout is a collection view layout that provides sticky row and columns configurability.", "homepage" : "https://github.com/jeffreysfllo24/StickyLayout", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Jeff...
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"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["...
{"sha" : "\"47e7bc67f932866e4467f7ab8a23bb167405bebd\"", "commit" : {"author" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "committer" : {"name" : "\"Nicolas Silva\"", "email" : "\"nsilva@mozilla.com\"", "date" : "\"2016-09-01T15:51:09+02:00\""}, "messa...
json_instruct
{"type": "object", "properties": {"sha": {"type": "string"}, "commit": {"type": "object", "properties": {"author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "date": {"type": "string"}}, "required": ["name", "email", "date"]}, "committer": {"type": "object", "properties":...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type":...
[{"id" : "lopez-island-brewing-co", "name" : "Lopez Island Brewing Co", "brewery_type" : "micro", "street" : "4817 Center Rd", "city" : "Lopez Island", "state" : "Washington", "postal_code" : "98261-8653", "website_url" : "http://www.lopezislandbrewingco.rocks", "phone" : "3604682646", "created_at" : "2018-07-24 01:34:...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "brewery_type": {"type": "string"}, "street": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "website_url": {"type": "string"}, "phone": {"t...
Based on the schema below, produce a valid JSON object: {"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", "so...
{"ast" : null, "code" : "var en_AU = {};\nmodule['exports'] = en_AU;\nen_AU.title = \"Australia (English)\";\nen_AU.name = require(\"./name\");\nen_AU.company = require(\"./company\");\nen_AU.internet = require(\"./internet\");\nen_AU.address = require(\"./address\");\nen_AU.phone_number = require(\"./phone_number\");"...
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": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "prebuild": {"ty...
{"name" : "protractor-robot-remote", "version" : "1.0.0", "description" : "A Robot Framework remote server with Protractor integration. Write Page Objects in Typescript with Protractor and let your testers write the actual tests in Robot scripts.", "main" : "dist/index.js", "scripts" : {"lint" : "tslint ./index.ts -t v...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "prebuild": {"type": "string"}, "build": {"type": "string"}}, "required": ["lint", "prebuil...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-versio...
{"type" : "package", "name" : "dzuk-mutant/nice-screen-buckets", "summary" : "Track your browser's screen size and compare them against set boundaries.", "license" : "BSD-3-Clause", "version" : "4.0.0", "exposed-modules" : ["Screen", "Screen.Metrics", "Screen.Bucket"], "elm-version" : "0.19.0 <= v < 0.20.0", "dependenc...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "summary": {"type": "string"}, "license": {"type": "string"}, "version": {"type": "string"}, "exposed-modules": {"type": "array", "items": {"type": "string"}}, "elm-version": {"type": "string"}, "dependencies": {"type": "object", ...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"errorMessage" : "Invalid Serverless Application Specification document. Number of errors found: 2. Resource with id [TestFunc] is invalid. Architectures needs to be a list with one string, either `x86_64` or `arm64`. Resource with id [TestFunc2] is invalid. Type of property 'Architectures' is invalid."}
json_instruct
{"type": "object", "properties": {"errorMessage": {"type": "string"}}, "required": ["errorMessage"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": ...
{"name" : "next-escape", "description" : "Converts the characters &#34;&amp;&#34;, &#34;&lt;&#34;, &#34;&gt;&#34;, &#39;&#34;&#39;, and &#34;&#39;&#34; in string to their corresponding HTML entities.", "main" : "dist/next-escape.js", "authors" : ["afei"], "license" : "MIT", "keywords" : ["next"], "homepage" : "https://...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "moduleType":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "authors": {"type": "array"...
{"name" : "lugano/yii2-count-user", "description" : "Count views and users on site.", "version" : "1.0.1", "keywords" : ["yii2", "count", "views", "users"], "type" : "yii2-extension", "authors" : [{"name" : "Sergey Ponomarev", "email" : "ponomarev.link@gmail.com"}], "license" : "BSD-3-Clause", "autoload" : {"psr-4" : {...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author":...
{"id" : "A9D2E13D-A9F6-48AC-9998-22756DA6C709", "name" : "file-find", "codepoint" : "F021E", "aliases" : ["print-preview", "find-in-page"], "tags" : ["Files / Folders"], "author" : "Google", "version" : "1.5.54", "zhs" : ["\u67e5\u627e\u6587\u4ef6", "\u6253\u5370\u9884\u89c8", "\u5728\u9875\u9762\u4e2d\u67e5\u627e"], "...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "codepoint": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "version": {"type": "string"}, "zhs": {"type": "array"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"...
{"auroc" : [0.6828571428571428, 0.7102857142857143, 0.6931428571428572, 0.4268571428571428, 0.7194285714285714], "acc" : [0.5833333333333334, 0.5833333333333334, 0.5833333333333334, 0.4166666666666667, 0.5833333333333334], "aps" : [0.7585040572772033, 0.7742833498333322, 0.7529888897841166, 0.5775235115185862, 0.762910...
json_instruct
{"type": "object", "properties": {"auroc": {"type": "array", "items": {"type": "number"}}, "acc": {"type": "array", "items": {"type": "number"}}, "aps": {"type": "array", "items": {"type": "number"}}, "f1": {"type": "array", "items": {"type": "number"}}, "auprc": {"type": "array", "items": {"type": "number"}}}, "requir...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "proper...
{"name" : "service2", "version" : "1.0.0", "description" : "A kafka producer that also acts as a web server.", "author" : "Anthony Hastings <ar.hastings@gmail.com> (https://antwan1986.github.io/)", "license" : "MIT", "private" : true, "scripts" : {"start" : "NODE_PATH=./build node build/main.js", "build" : "tsc"}, "dep...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer...
{"appid" : 341960, "name" : "DP Animation Maker", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490980459}
json_instruct
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type"...
{"name" : "nodeful", "version" : "1.0.9", "description" : "", "main" : "./lib/Index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "build" : "babel dev/src --presets babel-preset-es2015 --out-dir lib"}, "babel" : {"presets" : ["es2015"]}, "repository" : {"type" : "git", "url" : "https://githu...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "babel": {"type": "object", "...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "raster": {"type": "string"}, "vector": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}}...
{"name" : "lubridate", "author" : "rstudio", "license" : "CC0", "raster" : "https://github.com/rstudio/hex-stickers/blob/master/PNG/lubridate.png", "vector" : "https://github.com/rstudio/hex-stickers/blob/master/SVG/lubridate.svg", "description" : "lubridate: Make Dealing with Dates a Little Easier.", "filename" : "met...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "raster": {"type": "string"}, "vector": {"type": "string"}, "description": {"type": "string"}, "filename": {"type": "string"}}, "required": ["name", "author", "license", "raster", "vector", "descri...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"version": {"type": "string"}, "modules": {"type": "object", "properties": {"common": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "server": {"type": "object", "propert...
{"version" : "v0.5.0-alpha.0-dev", "modules" : {"common" : {"type" : "library"}, "server" : {"type" : "application"}, "server-grpc" : {"type" : "grpc"}}}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "modules": {"type": "object", "properties": {"common": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "server": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "server-grpc": {"t...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "hulkbot2.2.0"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"], "$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"}, "title": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "countrycode": {"type": "string"}, "city": {"type": "string"}, "homepage": {"type": "string"}...
{"name" : "Swift-Taipei-User-Group", "title" : "Swift Taipei User Group", "description" : "\u81fa\u5317 Swift \u7a0b\u5f0f\u8a9e\u8a00\u793e\u7fa4", "category" : "community", "countrycode" : "tw", "city" : "Taipei", "homepage" : "https://swift.taipei", "keywords" : ["Swift", "program"], "registration" : {"type" : "meet...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "category": {"type": "string"}, "countrycode": {"type": "string"}, "city": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "regist...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": ...
[{"e_id" : "14627", "title" : "\u5fb7\u56fd\u7b2c\u4e8c\u5927\u5546\u4e1a\u94f6\u884c\u5fb7\u52d2\u65af\u767b\u94f6\u884c\u6210\u7acb", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u5728149\u5e74\u524d\u7684\u4eca\u5929\uff0c1872\u5e7412\u67081\u65e5(\u519c\u53861872\u5e7411\u67081\u65e5)\uff0c\u5fb7\u56fd\u7b2c\u4e8c\u5927...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {"type": "object", "properties": {"pic_title": {"type": "string"}, "suffix": {"type": "string"}, "id": {"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author"...
{"title" : " \u3010MMD\u3011\u3086\u3089\u3086\u3089", "author" : "ajiou", "description" : "<aundefinedhref='https://www.patreon.com/posts/391-mmd-yurayura-39734017'>https://www.patreon.com/posts/391-mmd-yurayura-39734017</a>", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/103649...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://js...
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" : "1105140044", "district_id" : "1105140", "name" : "BAGOK PANAH I"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "release": {"type"...
{"name" : "pod-publishing", "version" : "1.0.0", "description" : "pod-publishing", "scripts" : {"start" : "node src/index.js --workflow \"./samples/workflow.json\" --credentials \"$(cat ~/projects/ocean/barge/networks/spree/keys/account1.json)\" --password secret --outputs /tmp/pod-publishing/ --verbose", "lint" : "esl...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "lint": {"type": "string"}, "release": {"type": "string"}}, "required": ["start", "lint", "release"]}, "repository": {...
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": {"prestart": {"type": "string"}, "start": {"type": "string"}}...
{"name" : "wildocean-api", "version" : "2.0.0", "description" : "This is the OpenAPI specification for the RESTful API of the WildOcean web app developed as project for the Hypermedia Web and Application course at Polimi A.Y. 2019-2020. ", "main" : "index.js", "scripts" : {"prestart" : "npm install", "start" : "node ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"prestart": {"type": "string"}, "start": {"type": "string"}}, "required": ["prestart", "start"]}, "keywords": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"autolispext.project.openproject.onlyprjallowed": {"type": "string"}, "autolispext.project.openproject.readfailed": {"type": "string"}, "autolispext.project.openproject.malformedfile": {"type": "string"}, "autolispext.projec...
{"autolispext.project.openproject.onlyprjallowed" : "Solo se admiten archivos PRJ.", "autolispext.project.openproject.readfailed" : "No se puede leer el archivo de proyecto: ", "autolispext.project.openproject.malformedfile" : "Archivo de proyecto con formato incorrecto: ", "autolispext.project.openproject.label" : "Ab...
json_instruct
{"type": "object", "properties": {"autolispext.project.openproject.onlyprjallowed": {"type": "string"}, "autolispext.project.openproject.readfailed": {"type": "string"}, "autolispext.project.openproject.malformedfile": {"type": "string"}, "autolispext.project.openproject.label": {"type": "string"}, "autolispext.project...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"t...
{"name" : "technophile-jekyll", "homepage" : "https://github.com/AquisTech/technophile-jekyll", "authors" : ["AquisTech <anand.bait@gmail.com>"], "description" : "A Jekyll Theme for Technophiles, Developers and Hackers", "main" : "", "keywords" : ["jekyll-theme", "jekyll", "portfolio", "developer", "coder", "blog", "ga...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "ignore": {"t...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["ty...
{"name" : "magic-mirror-backend", "description" : "Backend for the MagicMirror", "version" : "0.1.0", "repository" : {"type" : "git", "url" : "https://github.com/samsamann/MagicMirror"}, "author" : "Samuel Ackermann", "license" : "MIT", "scripts" : {"build-tsc" : "tsc -p .", "test" : "tsc -b tsconfig.spec.json && jasmi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}}, "required": ["main.js", "main.js.map"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"main.js" : "static/js/main.35a96251.js", "main.js.map" : "static/js/main.35a96251.js.map"}
json_instruct
{"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}}, "required": ["main.js", "main.js.map"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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"}}, ...
{"n_dim" : 8, "n_trials" : 340, "objective" : "landscapes_combo2_on_cube", "white" : "hyperopt_atpe", "black" : "platypus_evolutionary", "traceback" : ["passing", "passing"], "best_val" : [31.485464223874125, 169.9722312908012], "best_x" : [[0.5330506175334142, 0.548460237147551, 0.5000965758352299, 0.49889811670549444...
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": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "...
{"nom" : "Pageas", "dpt" : "Haute-Vienne", "inscrits" : 486, "abs" : 97, "votants" : 389, "blancs" : 37, "nuls" : 16, "exp" : 336, "res" : [{"panneau" : "1", "voix" : 216}, {"panneau" : "2", "voix" : 120}]}
json_instruct
{"type": "object", "properties": {"nom": {"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", "items": {"type": "object"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "aut...
{"name" : "lawrencium", "displayName" : "Lawrencium", "version" : "0.0.24", "description" : "lawrencium is a lightweight realtime storage layer.", "main" : "dist/index.js", "types" : "declarations/index.d.ts", "repository" : "https://github.com/azuwey/coal.git", "author" : "Azuwey", "license" : "BSD-3-Clause", "private...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "priv...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "n...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[137.25, 25.583333333333332], [137.25, 25.666666666666668], [137.375, 25.666666666666668], [137.375, 25.583333333333332], [137.25, 25.583333333333332]]]}, "properties" : {"code" : 383732, "url" : "http://madefor.github.io/0410/api/v1/383732.geojso...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"t...
{"type" : "FeatureCollection", "title" : "Henchir-et-Tfel", "id" : "324739", "bbox" : [8.610719, 34.444862, 8.610719, 34.444862], "description" : "An ancient place, cited: BAtlas 33 C4 Henchir-et-Tfel", "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [8.610719, 34.444862]}, "propertie...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry":...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}}, "required": ["body"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"body" : "{\"username\":\"francesco\",\"password\":\"wrong_password\"}"}
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}}, "required": ["body"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "nodes": {"type": "integer"}, "dir_e": {"type": "integer"}, "und_e": {"type": "integer"}, "data": {"type": "object", "properties": {"A": {"type": "object", "properties": {"e": {"typ...
{"name" : "SEARCH graph for Priority First Search / Toposort", "nodes" : 6, "dir_e" : 9, "und_e" : 0, "data" : {"A" : {"e" : [{"t" : "B", "d" : 1, "w" : 3}, {"t" : "C", "d" : 1, "w" : 4}, {"t" : "D", "d" : 1, "w" : 1}]}, "B" : {"e" : [{"t" : "F", "d" : 1, "w" : 1}, {"t" : "C", "d" : 1, "w" : 2}]}, "C" : {"e" : [{"t" : ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "nodes": {"type": "integer"}, "dir_e": {"type": "integer"}, "und_e": {"type": "integer"}, "data": {"type": "object", "properties": {"A": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "object", "properties": {"t": {"type": "string...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "s...
{"name" : "augustash/module-cookie-consent", "description" : "A Magento 2 implementation of Osano Cookie Consent.", "license" : "MIT", "type" : "magento2-module", "version" : "1.1.0", "require" : {"php" : ">=7.4", "augustash/module-backend" : "*", "magento/module-cms" : "*", "magento/module-store" : "*", "magento/frame...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "augustash/module-backend": {"type": "string"}, "magento/modu...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}...
{"schema_version" : "1.2.0", "id" : "GHSA-229x-53vm-m4f4", "modified" : "2022-05-13T01:12:23Z", "published" : "2022-05-13T01:12:23Z", "aliases" : ["CVE-2018-1108"], "details" : "kernel drivers before version 4.17-rc1 are vulnerable to a weakness in the Linux kernel's implementation of random seed data. Programs, early ...
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {"type": "object", "properti...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/sch...
{"_id" : "5e064f5aeb009468d90bac66", "_tpl" : "5c471c442e221602b542a6f8", "parentId" : "5e064f5aeb009468d90bac64", "slotId" : "mod_magazine"}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "_tpl": {"type": "string"}, "parentId": {"type": "string"}, "slotId": {"type": "string"}}, "required": ["_id", "_tpl", "parentId", "slotId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": ...
{"id" : "VIS321H1F20199", "code" : "VIS321H1F", "name" : "Artists' Multiples", "description" : "Production of artists multiples in various media is augmented with gallery and archive visits, screenings, and artist talks. Historical and contemporary technologies for reproduction are examined.", "division" : "John H. Dan...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "division": {"type": "string"}, "department": {"type": "string"}, "prerequisites": {"type": "string"}, "exclusions": {"type": "string"}, "level": {"type": "integer"}, "c...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draf...
{"id" : "17", "provinceId" : "61", "regencyId" : "07", "name" : "Tujuh Belas"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/...
{"cam/image_array" : "1839_cam-image_array_.jpg", "user/throttle" : 0.8, "timestamp" : "2019-02-17 21:49:16.604991", "user/angle" : 0.9897152623065889, "user/mode" : "user"}
json_instruct
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/throttle": {"type": "number"}, "timestamp": {"type": "string"}, "user/angle": {"type": "number"}, "user/mode": {"type": "string"}}, "required": ["cam/image_array", "user/throttle", "timestamp", "user/angle", "user/mode"], "$schema": "http://...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station...
{"station_g" : [{"pref_cd" : 17, "line_cd" : 11415, "line_name" : "JR\u5317\u9678\u672c\u7dda(\u7c73\u539f\uff5e\u91d1\u6ca2)", "station_cd" : 1141537, "station_name" : "\u5c0f\u821e\u5b50"}]}
json_instruct
{"type": "object", "properties": {"station_g": {"type": "array", "items": {"type": "object", "properties": {"pref_cd": {"type": "integer"}, "line_cd": {"type": "integer"}, "line_name": {"type": "string"}, "station_cd": {"type": "integer"}, "station_name": {"type": "string"}}, "required": ["pref_cd", "line_cd", "line_na...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "prop...
{"template" : {"small" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/1.0", "medium" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/2.0", "large" : "https://static-cdn.jtvnw.net/emoticons/v1/{image_id}/3.0"}, "channels" : {"narumichian" : {"title" : "NarumiChian", "channel_id" : 27607977, "link" : "ht...
json_instruct
{"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {"narumichian": {"type": "object", "properties": {"title": {"ty...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Temara": {"type": "string"}}, "required": ["Temara"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Temara" : "TEM"}
json_instruct
{"type": "object", "properties": {"Temara": {"type": "string"}}, "required": ["Temara"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": {"type": "num...
{"topCrop" : {"x" : 0, "y" : 8, "width" : 175, "height" : 175, "score" : {"detail" : 11.879218624789939, "saturation" : -0.8147468246533526, "skin" : 16.522551014484144, "boost" : 170.30703027192556, "total" : 0.557145307385998}}}
json_instruct
{"type": "object", "properties": {"topCrop": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "score": {"type": "object", "properties": {"detail": {"type": "number"}, "saturation": {"type": "number"}, "skin": {"type": "num...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"bi\u1e0f\u00b7qar": {"type": "object", "properties": {"2ki.9.25|2": {"type": "array", "items": {"type": "string"}}}, "required": ["2ki...
{"pos" : "proper", "translits" : {"bi\u1e0f\u00b7qar" : {"2ki.9.25|2" : ["to", "Bidkar", "his captain\uff64"]}}, "meanings" : {"bidkar" : 1}, "meaningsCount" : 1, "occurences" : 1}
json_instruct
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"bi\u1e0f\u00b7qar": {"type": "object", "properties": {"2ki.9.25|2": {"type": "array", "items": {"type": "string"}}}, "required": ["2ki.9.25|2"]}}, "required": ["bi\u1e0f\u00b7qar"]}, "meanings": {"type": "object...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["opus-tools"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[8, 1, 9, 2], [10, 4, 11, 3], [20, 10, 7, 9], [2, 7, 3, 8], [4, 20, 5, 19], [14, 5, 15, 6], [16, 11, 17, 12], [18, 13, 19, 14], [12, 17, 13, 18], [6, 15, 1, 16]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "...
{"_active" : true, "_notice_text" : null, "_plus_required" : false, "_plus_store_url" : null, "_support_contract" : false, "_version_required" : 0, "account_supported" : true, "api" : "sisis", "city" : "Leipzig", "country" : "Deutschland", "data" : {"baseurl" : "https://webopac.stadtbibliothek-leipzig.de/webOPACClient"...
json_instruct
{"type": "object", "properties": {"_active": {"type": "boolean"}, "_notice_text": {"type": "null"}, "_plus_required": {"type": "boolean"}, "_plus_store_url": {"type": "null"}, "_support_contract": {"type": "boolean"}, "_version_required": {"type": "integer"}, "account_supported": {"type": "boolean"}, "api": {"type": "s...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "...
{"name" : "@tuture/core", "description" : "Core logics and data interfaces for Tuture", "version" : "0.0.7", "main" : "dist/index.js", "module" : "dist/index.esm.js", "types" : "dist/index.d.ts", "files" : ["dist/"], "license" : "MIT", "dependencies" : {"editure" : "^0.1.9", "lodash.omit" : "^4.5.0", "tuture-slate" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "dependencies": {...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["./fonts/google/ingrid-darling/files/ingrid-darling-latin-400-normal.woff", "./fonts/google/ingrid-darling/files/ingrid-darling-latin-ext-400-normal.woff", "./fonts/google/ingrid-darling/files/ingrid-darling-vietnamese-400-normal.woff", "./fonts/google/ingrid-darling/files/ingrid-darling-vietnamese-400-normal.woff2", ...
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": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "requi...
[{"postal_code" : "90255", "place_name" : "El Sabinal", "place_type" : "Colonia", "county" : "Tlaxco", "state" : "Tlaxcala", "city" : ""}, {"postal_code" : "90255", "place_name" : "Chico", "place_type" : "Barrio", "county" : "Tlaxco", "state" : "Tlaxcala", "city" : ""}, {"postal_code" : "90255", "place_name" : "Santiag...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "s...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "sortkey": {"type": "integer"}, "authors": {"type": "array", "items": {"type": "object", "properties": ...
{"id" : "cocco2017banking", "title" : "Banking On Blockchain: Costs Savings Thanks To The Blockchain Technology", "year" : 2017, "type" : "article", "sortkey" : 20170702, "authors" : [{"affiliation" : "", "name" : "Luisanna Cocco"}, {"affiliation" : "", "name" : "Andrea Pinna"}, {"affiliation" : "", "name" : "Michele M...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "sortkey": {"type": "integer"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"affiliation": {"type": "string"}, "name": {"type": "string"}}, "requi...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}, "adminChannelName": {"type": "string"}, "gameRoleColor": {"type": "string"}}, "required": ["token", "prefix", "adminChannelName", "gameRoleColor"], "$schema"...
{"token" : "YOUR TOKEN GOES HERE", "prefix" : "!", "adminChannelName" : "admincmds", "gameRoleColor" : "#FF0000"}
json_instruct
{"type": "object", "properties": {"token": {"type": "string"}, "prefix": {"type": "string"}, "adminChannelName": {"type": "string"}, "gameRoleColor": {"type": "string"}}, "required": ["token", "prefix", "adminChannelName", "gameRoleColor"], "$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"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"...
{"name" : "react-router-sample", "version" : "1.0.0", "description" : "Sample application to understand the react-router better", "main" : "./src/js/main.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/Marcoga/react-router-sample.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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": ...
{"nom" : "Bonn\u00e9table", "circ" : "5\u00e8me circonscription", "dpt" : "Sarthe", "inscrits" : 2959, "abs" : 1778, "votants" : 1181, "blancs" : 75, "nuls" : 42, "exp" : 1064, "res" : [{"nuance" : "LR", "nom" : "M. Jean-Carles GRELIER", "voix" : 667}, {"nuance" : "REM", "nom" : "M. Willy COLIN", "voix" : 397}]}
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"...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "E:\\Software\\SpeechPlugin\\app\\build\\intermediates\\res\\merged\\debug\\raw\\explore_end.ogg", "source" : "E:\\Software\\SpeechPlugin\\speechutils\\app\\build\\intermediates\\bundles\\default\\res\\raw\\explore_end.ogg"}, {"merged" : "E:\\Software\\SpeechPlugin\\app\\build\\intermediates\\res\\merged\\...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "i...
{"id" : 101879815, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "4a6fb54ce34f145c2e655d94c89f7ca2", "wof:id" : 101879815, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-4.95578, 48.39656, -4.95578, 48.39656], "geometry" : {"coordinate...
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": ["...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "...
{"nom" : "Xonrupt-Longemer", "dpt" : "Vosges", "inscrits" : 1382, "abs" : 263, "votants" : 1119, "blancs" : 99, "nuls" : 42, "exp" : 978, "res" : [{"panneau" : "1", "voix" : 671}, {"panneau" : "2", "voix" : 307}]}
json_instruct
{"type": "object", "properties": {"nom": {"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", "items": {"type": "object"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"siteId" : "244e635e-8d68-40dd-8d18-4e19b43720b9"}
json_instruct
{"type": "object", "properties": {"siteId": {"type": "string"}}, "required": ["siteId"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"displayName" : "Java Language Features", "description" : "Provides Syntax highlighting, Folding, Bracket matching, Snippets and other language features in Java files"}
json_instruct
{"type": "object", "properties": {"displayName": {"type": "string"}, "description": {"type": "string"}}, "required": ["displayName", "description"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStr...
{"Logging" : {"LogLevel" : {"Default" : "Warning"}}, "AllowedHosts" : "*", "ConnectionStrings" : {"LongBoardist" : "Server=tcp:longboardist-vitya.database.windows.net,1433;Initial Catalog=longboardist;Persist Security Info=False;User ID=longboardist;Password=yOU4can$wiTnEs$s$34234myPa55w0rD_4doWnHere21;MultipleActiveRe...
json_instruct
{"type": "object", "properties": {"Logging": {"type": "object", "properties": {"LogLevel": {"type": "object", "properties": {"Default": {"type": "string"}}, "required": ["Default"]}}, "required": ["LogLevel"]}, "AllowedHosts": {"type": "string"}, "ConnectionStrings": {"type": "object", "properties": {"LongBoardist": {"...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "refinedpipes:block/pipe/item/advanced/straight"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "item/generated", "textures" : {"layer0" : "ironcoals:item/iron_coal_chunk"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"layer0": {"type": "string"}}, "required": ["layer0"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "target_ref": {"type": "string"}, ...
{"type" : "bundle", "id" : "bundle--609a019f-5d1c-4f8d-b55d-72d601dc1383", "spec_version" : "2.0", "objects" : [{"type" : "relationship", "target_ref" : "attack-pattern--890c9858-598c-401d-a4d5-c67ebcdd703a", "description" : "A Cloud Access Security Broker (CASB) can be used to set usage policies and manage user permis...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "target_ref": {"type": "string"}, "description": {"type": "string"}, "created_by_ref": {"type": ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d469-30", "text" : "B.\nthose derived from statutory requirements or legislative history.\nAssurances which were included in the old regs. which were not\nrequired by the Act or legislative history will have been deleted or\ntransferred to a section on \"conditions to the grant.\"\nSPECIFIC ASSURANCES\nThere a...
json_instruct
{"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": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type...
{"type" : "bundle", "id" : "bundle--605ce0ce-85ad-4a47-8346-23d48a0e9dcf", "spec_version" : "2.0", "objects" : [{"created_by_ref" : "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5", "object_marking_refs" : ["marking-definition--fa42a846-8d90-4e51-bc29-71d5b4802168"], "source_ref" : "intrusion-set--0ec2f388-bf0f-4b5c-97...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "spec_version": {"type": "string"}, "objects": {"type": "array", "items": {"type": "object", "properties": {"created_by_ref": {"type": "string"}, "object_marking_refs": {"type": "array", "items": {"type": "string"}}, "source_ref": {...
Please provide a valid JSON object following this schema: {"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"}, "provi...
{"name" : "Private Technical University of Loja", "alt_name" : "Universidad T\u00e9cnica Particular de Loja (UTPL)", "country" : "Ecuador", "state" : null, "address" : {"street" : "Casilla Postal 11-01-608, Barrio San Cayetano Alto s/n", "city" : "Loja", "province" : null, "postal_code" : null}, "contact" : {"telephone...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "null"}}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"ty...
{"name" : "@effect-ts/tracing-plugin", "version" : "0.15.3", "license" : "MIT", "repository" : "https://github.com/Effect-TS/core.git", "homepage" : "https://www.matechs.com", "scripts" : {"clean" : "yarn ets:rimraf build tsbuildinfo dist", "build-cjs" : "yarn ets:tsc -p tsconfig.build.cjs.json", "build-post" : "yarn e...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "build-cjs": {"type": "string"}, "build-post": {"type": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"jimp.js": {"type": "string"}, "jimp.min.js": {"type": "string"}}, "required": ["jimp.js", "jimp.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jimp.js" : "sha512-OUZvdc2gD5SbHXb1VGhLzlWaKRGFt3U5XJvCIOqRGU18Wjje2Y6NYgdAe+ANUuA+hFlDkIHeiNzJfs4BibzpKA==", "jimp.min.js" : "sha512-0aqhlEiiwH1TF6NCngJTs/mflrYVy+keWyd7GPE70ZZ2qeQ7bRyF3LV8QEuuNyH7Z8eNhESJcPhYR68yqiKTrg=="}
json_instruct
{"type": "object", "properties": {"jimp.js": {"type": "string"}, "jimp.min.js": {"type": "string"}}, "required": ["jimp.js", "jimp.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "num...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[138.0, 31.333333333333332], [138.0, 32.0], [139.0, 32.0], [139.0, 31.333333333333332], [138.0, 31.333333333333332]]]}, "properties" : {"code" : 4738, "url" : "http://madefor.github.io/0410/api/v1/4738.geojson", "view" : "https://github.com/madefo...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "ob...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "it...
{"rustc" : 10368881109578526382, "features" : "[]", "target" : 14973750003704100601, "profile" : 15791677790105649212, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/scrape_url-7bdc4cba503f8559/dep-test-bin-scrape_url"}}], "rustflags" : [], "metadata" : 7797948...
json_instruct
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"lumx.js": {"type": "string"}, "lumx.min.js": {"type": "string"}}, "required": ["lumx.js", "lumx.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lumx.js" : "sha256-IzoDt6RXVDBN4skfdVTCLkGKBbIErcViD+uUvrRhANU=", "lumx.min.js" : "sha256-GVTOwolMDIQErahb0dEMVRPTnFq+dQX53C7ukBsO+eg="}
json_instruct
{"type": "object", "properties": {"lumx.js": {"type": "string"}, "lumx.min.js": {"type": "string"}}, "required": ["lumx.js", "lumx.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m...
{"MRRm_new" : 0.15382716520318354, "MRm_new" : 905.2785342836619, "HITS@1m_new" : 0.09369735038617509, "HITS@3m_new" : 0.15893655091274994, "HITS@10m_new" : 0.27630884630801156}
json_instruct
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1979, 7], [1986, 5], [1988, 5], [1990, 5], [2002, 5], [2003, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"platform_igf_id": {"type": "string"}, "model_name": {"type": "string"}, "vendor_name": {"type": "string"}, "software_name": {"type": "string"}, "software_version": {"type": "string"}}...
[{"platform_igf_id" : "K00001", "model_name" : "HISEQ4000", "vendor_name" : "ILLUMINA", "software_name" : "RTA", "software_version" : "RTA2"}, {"platform_igf_id" : "NB00001", "model_name" : "NEXTSEQ", "vendor_name" : "ILLUMINA", "software_name" : "RTA", "software_version" : "RTA2"}, {"platform_igf_id" : "MI00001", "mod...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"platform_igf_id": {"type": "string"}, "model_name": {"type": "string"}, "vendor_name": {"type": "string"}, "software_name": {"type": "string"}, "software_version": {"type": "string"}}, "required": ["platform_igf_id", "model_name", "vendor_name", "software_na...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": ...
{"name" : "Chinese Yuan Renminbi", "website" : "https://dollarprotocol.com", "description" : "Dollar Protocol is a suite of algorithmic synthetics governed by Share", "explorer" : "https://etherscan.io/token/0x07f89875b1F142AbCba60FF1D7FCFb7Fe404d4ed", "type" : "ERC20", "symbol" : "CNYx", "decimals" : 9, "status" : "ac...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "status": {"type": "string"}, "id": {"type": "string"}, "logo": {"typ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "languageCodes": {"type": "a...
{"id" : "de-berlin-telegram", "type" : "telegram", "locationSet" : {"include" : ["de-berlin-brandenburg.geojson"]}, "languageCodes" : ["de"], "name" : "@osmberlin on Telegram", "description" : "OpenStreetMap Berlin Telegram chat", "url" : "https://t.me/osmberlin", "contacts" : [{"name" : "Christopher Lorenz", "email" :...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "locationSet": {"type": "object", "properties": {"include": {"type": "array", "items": {"type": "string"}}}, "required": ["include"]}, "languageCodes": {"type": "array", "items": {"type": "string"}}, "name": {"type": "string"}, "des...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type...
{"parent" : "questIRenderFxManagerNodeType", "name" : "questSetRenderLayer_NodeType", "flags" : 2, "props" : [{"type" : "RenderSceneLayer", "name" : "renderSceneLayer", "flags" : 6627016705}]}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}, "props": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "flags": {"type": "integer"}}, "required": ["type", "name", "flags"]}}},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema"...
{"Time" : "2021-04-27T08:00:00Z", "Temp" : 15.8, "RelHum" : 67, "WindSpeed" : 3, "WindDir" : 297}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "integer"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"libraryStrings": {"type": "object", "properties": {"confirmReset": {"type": "string"}, "sameAsSpacing": {"type": "string"}, "noFrame": {"type": "string"}, "uploadError": {"type": "string"}, "zoomIn": {"type": "string"}, "zoomO...
{"libraryStrings" : {"confirmReset" : "\u041d\u0430\u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u0438 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u0438\u0435\u0442\u043e? \u0422\u043e\u0432\u0430 \u0449\u0435 \u...
json_instruct
{"type": "object", "properties": {"libraryStrings": {"type": "object", "properties": {"confirmReset": {"type": "string"}, "sameAsSpacing": {"type": "string"}, "noFrame": {"type": "string"}, "uploadError": {"type": "string"}, "zoomIn": {"type": "string"}, "zoomOut": {"type": "string"}, "noMoreZoom": {"type": "string"}, ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array",...
{"ast" : null, "code" : "import styled from 'styled-components';\n\nvar AntProgress = function AntProgress(ComponentName) {\n return styled(ComponentName).withConfig({\n displayName: \"progressstyle\",\n componentId: \"i6jinq-0\"\n })([\"&.ant-progress-line{.ant-progress-outer{padding-right:calc(2em + 16px);mar...
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesCont...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"ty...
{"author" : "Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)", "name" : "sol", "description" : "Hash data structure utility belt for node and the browser.", "version" : "0.3.0", "repository" : {"type" : "git", "url" : "git://github.com/logicalparadox/sol.git"}, "main" : "./index", "scripts" : {"test" ...
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "main": {"type": "string"}, ...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "s...
{"month" : "6", "num" : 1698, "link" : "", "year" : "2016", "news" : "", "safe_title" : "Theft Quadrants", "transcript" : "", "alt" : "TinyURL was the most popular link shortener for long enough that it made it into a lot of printed publications. I wonder what year the domain will finally lapse and get picked up by a p...
json_instruct
{"type": "object", "properties": {"month": {"type": "string"}, "num": {"type": "integer"}, "link": {"type": "string"}, "year": {"type": "string"}, "news": {"type": "string"}, "safe_title": {"type": "string"}, "transcript": {"type": "string"}, "alt": {"type": "string"}, "img": {"type": "string"}, "title": {"type": "stri...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "ambushment", "definition" : "An ambush. [Obs.] 2 Chron. xiii. 13."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type"...
[{"id" : 28002, "title" : "Fever", "year" : 2017, "type" : "novel", "imageName" : "dm_fever.jpg", "nominations" : 1, "wins" : -1}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "year": {"type": "integer"}, "type": {"type": "string"}, "imageName": {"type": "string"}, "nominations": {"type": "integer"}, "wins": {"type": "integer"}}, "required": ["id", "title", "year", "type", "im...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "earthen", "definition" : "Made of earth; made of burnt or baked clay, or other like substances; as, an earthen vessel or pipe."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "planet": {"type": "string"}, "age": {"type": "integer"}}, "required": ["name", "planet", "age"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Andrew", "planet" : "Earth", "age" : 27}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "planet": {"type": "string"}, "age": {"type": "integer"}}, "required": ["name", "planet", "age"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"prod...
{"userId" : 91960, "cartId" : "a649d212-4aa5-4ee7-aeff-528ca8d3331e", "preferredProducts" : [4227, 3714, 428, 3937, 3308, 4032, 2062, 550], "productReviews" : [{"productId" : 3033, "reviewText" : "this Massachusetts is ratty.", "reviewDate" : "2019-02-07T07:50:24.2502203+02:00"}, {"productId" : 26, "reviewText" : "one ...
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...
Please provide a valid JSON object following this schema: {"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/sc...
{"towns" : [{"name" : "Toyakawa", "url" : "toyakawa"}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"4127": {"type": "string"}, "4129": {"type": "string"}}, "required": ["4127", "4129"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"4127" : "4128", "4129" : "4130"}
json_instruct
{"type": "object", "properties": {"4127": {"type": "string"}, "4129": {"type": "string"}}, "required": ["4127", "4129"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "format": {"type": "string"}, "boundingbox": {"type": "array", "items": {"type": "number"}}, "boundingzoom": {"type": "integer"}, "ove...
{"parameters" : {"api-version" : "1.0", "format" : "json", "boundingbox" : [-939584.4813015489, -23954526.723651607, 14675583.153020501, 25043442.895825107], "boundingzoom" : 2, "overviewbox" : [-939584.4813018347, -23954526.723651607, 14675583.153020501, 25043442.89582291], "overviewzoom" : 2, "copyright" : true}, "re...
json_instruct
{"type": "object", "properties": {"parameters": {"type": "object", "properties": {"api-version": {"type": "string"}, "format": {"type": "string"}, "boundingbox": {"type": "array", "items": {"type": "number"}}, "boundingzoom": {"type": "integer"}, "overviewbox": {"type": "array", "items": {"type": "number"}}, "overviewz...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"t...
{"t" : "tikasan", "h" : [{"d" : [{"f" : "\u8352\u5730\u3001\u8ca7\u7620\u4e4b\u5730\u3002", "s" : ["`fohokan~"]}]}]}
json_instruct
{"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "s": {"type": "array", "items": {"type": "string"}}}, "required": ["f", "s"]}}}, "required": ["d"]}}}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "arr...
{"objects" : {"vectile" : {"type" : "GeometryCollection", "geometries" : [{"arcs" : [[0]], "type" : "Polygon", "properties" : {"id" : "22651"}, "clipped" : true, "id" : "77ecee1262"}, {"arcs" : [[1]], "type" : "Polygon", "properties" : {"id" : "22869"}, "clipped" : true, "id" : "7d07922516"}, {"arcs" : [[2]], "type" : ...
json_instruct
{"type": "object", "properties": {"objects": {"type": "object", "properties": {"vectile": {"type": "object", "properties": {"type": {"type": "string"}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "type": ...
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"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"typ...
{"name" : "shipwars", "version" : "1.0.0", "description" : "Pirate Ship Wars game over network using Socket.io", "main" : "app.js", "private" : false, "scripts" : {"dev" : "npm run development", "development" : "webpack --progress --hide-modules --config webpack.config.js", "watch" : "webpack --watch --progress --hide...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "development": {"type": "string"}, "watch": {"type": "string...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"fileglob": {"type": "string"}, "timecols": {"type": "array", "items": {"type": "string"}}, "magcols": {"type": "array", "items": {"type": "string"}}, "errcols": {"type": "array", "items": {"type": "string"}}, "magsarefluxes": {"...
{"fileglob" : "*_llc.fits", "timecols" : ["rjd", "rjd"], "magcols" : ["sap.sap_flux", "pdc.pdc_sapflux"], "errcols" : ["sap.sap_flux_err", "pdc.pdc_sapflux_err"], "magsarefluxes" : true, "lcreader_module" : "astrobase.astrokep", "lcreader_func" : "read_kepler_pklc", "lcreader_kwargs" : null, "lcnorm_module" : null, "lc...
json_instruct
{"type": "object", "properties": {"fileglob": {"type": "string"}, "timecols": {"type": "array", "items": {"type": "string"}}, "magcols": {"type": "array", "items": {"type": "string"}}, "errcols": {"type": "array", "items": {"type": "string"}}, "magsarefluxes": {"type": "boolean"}, "lcreader_module": {"type": "string"},...