input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"...
{"publishConfig" : {"access" : "public"}, "name" : "@isomorphic-pgp/util", "version" : "0.0.7", "description" : "Miscellaneous pgp functions", "scripts" : {"test" : "jest --testEnvironment=node && karma start --single-run"}, "repository" : {"type" : "git", "url" : "git+https://github.com/wmhilton/isomorphic-pgp.git"}, ...
json_instruct
{"type": "object", "properties": {"publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required":...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "...
{"contract" : "0x2b2d7d874bbfb73f85b2f8a9ee0d9f3e93722622", "tool" : "securify", "start" : 1563250873.443408, "end" : 1563250878.486144, "duration" : 5.042736053466797, "analysis" : null}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "null"}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.or...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"tesseract:recipe_shapeless": {"type": "object", "properties": {"key": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "object", "prope...
{"tesseract:recipe_shapeless" : {"key" : "minecraft:stonecutter_red_sandstone_wall", "tags" : ["stonecutter"], "ingredients" : [{"item" : "minecraft:red_sandstone"}], "priority" : 4, "result" : {"item" : "minecraft:cobblestone_wall", "blockState" : "minecraft:cobblestone_wall[wall_block_type=red_sandstone,wall_connecti...
json_instruct
{"type": "object", "properties": {"tesseract:recipe_shapeless": {"type": "object", "properties": {"key": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "object", "properties": {"item": {"type": "string"}}, "required": ["item"]}}, "priority"...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "repository": {"type": "string"}, "navigation": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title...
{"title" : "CI/CD in Firefly Apps", "repository" : "https://github.com/AdobeDocs/adobeio-codelabs-ci-cd", "navigation" : [{"title" : "Introduction", "url" : "/README"}, {"title" : "Requirements", "url" : "/lessons/requirements"}, {"title" : "Lesson 1: Setup CI/CD", "url" : "/lessons/lesson1"}, {"title" : "Lesson 2: Mon...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "repository": {"type": "string"}, "navigation": {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}}, "required": ["title", "url"]}}}, "required": ["title", "repository", "navigation"], "$schem...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "p...
{"address" : "1TaLkFrMwvbNsooF4ioKAY9EuxTBTjipT", "cert_auth_type" : "web", "cert_sign" : "G/KIY3PhQBpQ85LrXKhOMio6BOxrMHFnWBxqwUp1ZWrD30glordW0zvyBQyPTfclOVd47tUw9BAqD0AGHAiNrxU=", "cert_user_id" : "0care17@zeroid.bit", "files" : {"data.json" : {"sha512" : "55dd208c87b683ad503d63a6c11e536b010774bb9be9ca9de3b13cc2fb559...
json_instruct
{"type": "object", "properties": {"address": {"type": "string"}, "cert_auth_type": {"type": "string"}, "cert_sign": {"type": "string"}, "cert_user_id": {"type": "string"}, "files": {"type": "object", "properties": {"data.json": {"type": "object", "properties": {"sha512": {"type": "string"}, "size": {"type": "integer"}}...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"development": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}, "production": {"type": "object", "properties": {"script_url":...
{"development" : {"script_url" : "//labs.webgeodatavore.com/osm-bookmarklet/osm-bookmarklet.build.js", "css_url" : "//labs.webgeodatavore.com/osm-bookmarklet/main.css"}, "production" : {"script_url" : "//webgeodatavore.github.io/osm-bookmarklet/osm-bookmarklet.js", "css_url" : "//webgeodatavore.github.io/osm-bookmarkle...
json_instruct
{"type": "object", "properties": {"development": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["script_url", "css_url"]}, "production": {"type": "object", "properties": {"script_url": {"type": "string"}, "css_url": {"type": "string"}}, "required": ["scr...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1896, 5], [1914, 5], [1916, 5], [1925, 5], [1945, 5], [1946, 5], [1950, 6], [1952, 6], [1955, 10], [1957, 5], [1958, 5], [1960, 9], [1965, 5], [1969, 6], [1970, 10], [1971, 8], [1972, 7], [1974, 7], [1975, 6], [1976, 6], [1977, 18], [1978, 5], [1979, 5], [1980, 7], [1981, 8], [1982, 6], [1984, 5], [1986, 7], [1988, 9...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {}}, "date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]...
{"title" : "Remote GDCR 2019 from Spain", "url" : "https://github.com/remote-code-retreat/code-retreat-2019", "moderators" : [], "date" : {"start" : "2019-11-16T09:00:00.000+01:00", "end" : "2019-11-16T14:00:00.000+01:00"}, "location" : "virtual"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "url": {"type": "string"}, "moderators": {"type": "array", "items": {}}, "date": {"type": "object", "properties": {"start": {"type": "string"}, "end": {"type": "string"}}, "required": ["start", "end"]}, "location": {"type": "string"}}, "required": ["title",...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://js...
{"FinancialDetail" : ["Paid Up Capital", "Reserve and Surplus", "Total Equity", "Borrowings", "Current Liabilities", "Current Assets", "Total Assets", "Revenue", "Gross Profit", "Operating Profit", "Net Profit", "Shares Outstanding", "EPS", "Book Value", "ROE"], "Value" : [[267907.5, 267907.5, 255150.0, 255150.0, 25515...
json_instruct
{"type": "object", "properties": {"FinancialDetail": {"type": "array", "items": {"type": "string"}}, "Value": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "required": ["FinancialDetail", "Value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object...
{"name" : "Pigeon Resistance DAO", "symbol" : "COO", "logoURI" : "https://raw.githubusercontent.com/pigeon-resistance/token-list/main/assets/mainnet/CooQi1ti8NompmbiNENsm1qicdEMqZau9G4FZg5V4bzh/logo.png", "decimals" : 9, "address" : "CooQi1ti8NompmbiNENsm1qicdEMqZau9G4FZg5V4bzh", "chainId" : 101, "extensions" : {"websi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "logoURI": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}, "extensions": {"type": "object", "properties": {"website": {"type": "string"}, "twitter": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "...
{"body" : "", "user" : "adamjstewart", "url" : "https://api.github.com/repos/spack/spack/issues/19504", "updated_at" : "2020-10-30 17:22:55", "created_at" : "2020-10-23 21:19:35", "closed_at" : "2020-10-30 17:22:54", "state" : "closed", "title" : "GDAL: add new version", "number" : 19504, "milestone" : null, "labels" :...
json_instruct
{"type": "object", "properties": {"body": {"type": "string"}, "user": {"type": "string"}, "url": {"type": "string"}, "updated_at": {"type": "string"}, "created_at": {"type": "string"}, "closed_at": {"type": "string"}, "state": {"type": "string"}, "title": {"type": "string"}, "number": {"type": "integer"}, "milestone": ...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"author": {"type": "string"}, "project_name": {"type": "string"}, "copyright": {"type": "string"}, "copyright_year": {"type": "string"}}, "required": ["author", "project_name", "copyright", "copyright_year"], "$sche...
{"author" : "Ankur Kesharwani", "project_name" : "WhatsUp", "copyright" : "Ankur Kesharwani", "copyright_year" : "2017"}
json_instruct
{"type": "object", "properties": {"author": {"type": "string"}, "project_name": {"type": "string"}, "copyright": {"type": "string"}, "copyright_year": {"type": "string"}}, "required": ["author", "project_name", "copyright", "copyright_year"], "$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"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "...
{"name" : "Treasure Map", "rarity" : "Rare", "type" : "Item", "subtypes" : [], "cost" : 3, "power" : -1, "health" : -1, "set" : {"name" : "Return to Clockwork City", "id" : "rcc"}, "collectible" : true, "soulSummon" : 100, "soulTrap" : 20, "text" : "+1/+1. Summon: Draw a card. If the wielder has Treasure Hunt, draw som...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "type": {"type": "string"}, "subtypes": {"type": "array", "items": {}}, "cost": {"type": "integer"}, "power": {"type": "integer"}, "health": {"type": "integer"}, "set": {"type": "object", "properties": {"name": {"type": "string"...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "born": {"type": "string"}, "born_place": {"type": "string"}, "died": {"type": "string"}, "died_place": {"type": "string"}, "summary": {"type": "string"}, "link": {"type": "string"}}, "required": ...
{"name" : "Edmund Georg Hermann Landau", "born" : "14 Feb 1877", "born_place" : "Berlin, Germany", "died" : "19 Feb 1938", "died_place" : "Berlin, Germany", "summary" : "Landau gave the first systematic presentation of analytic number theory and wrote important works on the theory of analytic functions of a single vari...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "born": {"type": "string"}, "born_place": {"type": "string"}, "died": {"type": "string"}, "died_place": {"type": "string"}, "summary": {"type": "string"}, "link": {"type": "string"}}, "required": ["name", "born", "born_place", "died", "died_place", "summary"...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type"...
[{"subject" : "MTEC", "catalog_nbr" : 302, "section" : 1, "class_nbr" : 16707, "title" : "HOSP INTERVENTION & SURG CARE Clinical", "component" : "1 - 15", "units" : 0, "bldg" : "TBA", "room" : "TBA", "days" : "TBA", "time" : "TBA", "instructor" : "Shook,Cordelia M", "load" : "100", "rank" : "PROX", "attributes" : null,...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Instrument": {"type": "object", ...
{"Spase" : {"xmlns:xsi" : "http://www.w3.org/2001/XMLSchema-instance", "xmlns" : "http://www.spase-group.org/data/schema", "xsi:schemaLocation" : "http://www.spase-group.org/data/schema http://www.spase-group.org/data/schema/spase-2_0_0.xsd", "Version" : "2.0.0", "Instrument" : {"ResourceID" : "spase://SMWG/Instrument/...
json_instruct
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Instrument": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type":...
Using the following JSON schema, generate a compatible JSON instance: {"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", ...
{"place_name" : "Gualala", "state_name" : "California", "state_abbrv" : "CA", "lat" : "38.8251", "long" : "-123.5399"}
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "tauri": {...
{"name" : "svelte-app", "version" : "1.0.0", "type" : "module", "scripts" : {"dev" : "vite --clearScreen false --port 5000", "build" : "vite build", "serve" : "vite preview", "tauri" : "node ../../tooling/cli/node/tauri.js"}, "dependencies" : {"@tauri-apps/api" : "../../tooling/api/dist", "hotkeys-js" : "^3.8.5"}, "dev...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "type": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "serve": {"type": "string"}, "tauri": {"type": "string"}}, "required": ["dev", "build", "serve", "...
Using the following JSON schema, generate a compatible JSON instance: {"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" : "Toko Bubblegum", "author" : "Thiridian", "description" : "NULL", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/video_embed_field_thumbnails/youtube/0hVJNq2n96E.jpg?itok=sKXhhJpN", "download" : "https://www.iwara.tv/api/video/p35z3snqjjhogjvgv", "origin" : "https://www.iwara.tv/videos/p...
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...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000602": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"...
{"type" : "Topology", "objects" : {"E01000602" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00002887", "LAD11CD" : "E09000005"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "pr...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01000602": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "string"}, "perm...
{"unversionedId" : "01features/02scheduler", "id" : "01features/02scheduler", "title" : "HwameiStor Scheduler", "description" : "The Scheduler is one of important components of the HwameiStor. It is to automatically schedule the Pod to the correct node which has the associated HwameiStor volume. With the scheduler, the...
json_instruct
{"type": "object", "properties": {"unversionedId": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "string"}, "sourceDirName": {"type": "string"}, "slug": {"type": "string"}, "permalink": {"type": "string"}, "editUrl": {"type": "string"}, ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "auriscalp", "definition" : "An earpick."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type":...
[{"id" : 2793, "gempId" : "8_133", "side" : "Dark", "rarity" : "R", "set" : "8", "printings" : [{"set" : "8"}], "front" : {"title" : "\u2022Well-earned Command", "imageUrl" : "https://res.starwarsccg.org/cards/Endor-Dark/large/wellearnedcommand.gif", "type" : "Effect", "uniqueness" : "*", "destiny" : "4", "gametext" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["s...
Generate sample JSON data that conforms to the following 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": "st...
[{"postal_code" : "88760", "place_name" : "La Laguna", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "place_name" : "Azteca", "place_type" : "Colonia", "county" : "Reynosa", "state" : "Tamaulipas", "city" : "Reynosa"}, {"postal_code" : "88760", "p...
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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"Antecessor e Sucessor.C": {"type": "string"}, "Boas vindas.C": {"type": "string"}, "Conversor Celsius para Fahrenheit.C": {"type": "string"}, "Conversor d...
{"files.associations" : {"Antecessor e Sucessor.C" : "cpp", "Boas vindas.C" : "cpp", "Conversor Celsius para Fahrenheit.C" : "cpp", "Conversor de reais para dolares.C" : "cpp", "Metade de um N\u00famero.C" : "cpp", "Numero de acertos.C" : "cpp", "Quadrado de um numero.C" : "cpp", "Salario.C" : "cpp", "Soma de 3 numeros...
json_instruct
{"type": "object", "properties": {"files.associations": {"type": "object", "properties": {"Antecessor e Sucessor.C": {"type": "string"}, "Boas vindas.C": {"type": "string"}, "Conversor Celsius para Fahrenheit.C": {"type": "string"}, "Conversor de reais para dolares.C": {"type": "string"}, "Metade de um N\u00famero.C": ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["libraries"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"libraries" : [{"name" : "AACECoreAndroid"}]}
json_instruct
{"type": "object", "properties": {"libraries": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}}, "required": ["libraries"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"iamRole": {"type": "string"}, "publicIPAction": {"type": "string"}, "securityGroupIDs": {"type": "array", "items": {"type": "string"}}, "instanceType": {"type": "string"}, "subnetIDs": {"type": "array", "items": {"type": "stri...
{"iamRole" : "", "publicIPAction" : "AS_SUBNET", "securityGroupIDs" : [""], "instanceType" : "t3.micro", "subnetIDs" : [""], "disks" : [{"iops" : 0, "type" : "SSD", "name" : "c:0"}], "privateIPAction" : "USE_NETWORK_INTERFACE", "staticIPActions" : "DONT_CREATE"}
json_instruct
{"type": "object", "properties": {"iamRole": {"type": "string"}, "publicIPAction": {"type": "string"}, "securityGroupIDs": {"type": "array", "items": {"type": "string"}}, "instanceType": {"type": "string"}, "subnetIDs": {"type": "array", "items": {"type": "string"}}, "disks": {"type": "array", "items": {"type": "object...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"//": {"type": "string"}, "BEGIN": {"type": "string"}, "navigate": {"type": "object", "properties": {"TYPE": {"type": "string"}, "modelName": {"type": "string"}, "contextData": {"type": "string"}, "VIEWS": {"type": "o...
{"//" : "Makes the root NavContainer navigate to the view that is specified in the list item context of the specified model.", "BEGIN" : "navigate", "navigate" : {"TYPE" : "pks.ui5strap.task.NavigateTask", "modelName" : "menu", "contextData" : "= event.parameters.listItem.getBindingContextData(.modelName)", "VIEWS" : {...
json_instruct
{"type": "object", "properties": {"//": {"type": "string"}, "BEGIN": {"type": "string"}, "navigate": {"type": "object", "properties": {"TYPE": {"type": "string"}, "modelName": {"type": "string"}, "contextData": {"type": "string"}, "VIEWS": {"type": "object", "properties": {"menuTarget": {"type": "object", "properties":...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "aodp", "downloads" : 1100, "count" : 988}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"dashboard": {"type": "string"}, "charts": {"type": "string"}, "tables": {"type": "string"}, "forms": {"type": "string"}, "boostrapElement": {"type": "string"}, "boostrapGrid": {"type": "string"}, "component": {"type"...
{"dashboard" : "Dashboard", "charts" : "Charts", "tables" : "Tables", "forms" : "Forms", "boostrapElement" : "Boostrap Element", "boostrapGrid" : "Boostrap Grid", "component" : "Component", "menu" : "Menu", "submenu" : "Submenu", "blankpage" : "Blank Page", "moretheme" : "More Themes", "downloadNow" : "Download Now", "...
json_instruct
{"type": "object", "properties": {"dashboard": {"type": "string"}, "charts": {"type": "string"}, "tables": {"type": "string"}, "forms": {"type": "string"}, "boostrapElement": {"type": "string"}, "boostrapGrid": {"type": "string"}, "component": {"type": "string"}, "menu": {"type": "string"}, "submenu": {"type": "string"...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gatsby": {"type": "st...
{"name" : "gatsby-project-kb", "private" : true, "devDependencies" : {"@types/react" : "^17.0.0", "@types/react-dom" : "^17.0.0", "gatsby" : "^3.0.0", "lerna" : "^4.0.0", "react" : "^17.0.0", "react-dom" : "^17.0.0", "tsdx" : "^0.14.1", "typescript" : "^4.1.2"}, "workspaces" : ["packages/*", "demo"], "scripts" : {"lern...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-dom": {"type": "string"}, "gatsby": {"type": "string"}, "lerna": {"type": "string"}, "react": {"type": "string"}, "react-do...
Generate a valid JSON object that conforms to the following schema: {"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": {"t...
{"nom" : "Reugny", "dpt" : "Indre-et-Loire", "inscrits" : 1231, "abs" : 193, "votants" : 1038, "blancs" : 20, "nuls" : 5, "exp" : 1013, "res" : [{"panneau" : "2", "voix" : 219}, {"panneau" : "11", "voix" : 215}, {"panneau" : "3", "voix" : 209}, {"panneau" : "9", "voix" : 171}, {"panneau" : "4", "voix" : 83}, {"panneau"...
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"...
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" : 12895, "cartId" : "60b73cd9-ea89-4866-822e-be46c9a1df05", "preferredProducts" : [657, 402, 4588, 389, 3461, 1893, 1040], "productReviews" : [{"productId" : 4634, "reviewText" : "one of my hobbies is toy collecting. and when i'm collecting toys this works great.", "reviewDate" : "2018-10-14T06:43:32.9911841+...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200894528406000, "key" : "/static/b093e858159e9c838a1aed7ab41277a4/53b87/kentucky.webp", "val" : "acfa5b43f973a1aa8dbf0da5f865bd7e"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"browserslist": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:embed": {"type": "string"}, "build:he...
{"browserslist" : ["> 0.2%", "last 2 versions", "not dead", "Firefox ESR", "Chrome 61", "Firefox 60", "ios_saf 9"], "scripts" : {"start" : "parcel serve src/index.html --no-cache", "build" : "parcel build src/index.html", "build:embed" : "parcel build src/embed.ts", "build:help" : "parcel build src/help.html --public-u...
json_instruct
{"type": "object", "properties": {"browserslist": {"type": "array", "items": {"type": "string"}}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "build:embed": {"type": "string"}, "build:help": {"type": "string"}, "lang:add": {"type": "string"}, "lang:sync": {"typ...
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "u...
[{"subject" : "NURS", "catalog_nbr" : 912, "section" : 1, "class_nbr" : 8104, "title" : "THEORETICAL FOUNDATIONS", "component" : "Lecture", "units" : 3, "bldg" : "TBA", "room" : "TBA", "days" : "Tu", "time" : "09", "instructor" : "KNEIPP,SHAWN MARIE", "load" : "100", "rank" : "INST", "attributes" : null, "enrl_cap" : 2...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"subject": {"type": "string"}, "catalog_nbr": {"type": "integer"}, "section": {"type": "integer"}, "class_nbr": {"type": "integer"}, "title": {"type": "string"}, "component": {"type": "string"}, "units": {"type": "integer"}, "bldg": {"type": "string"}, "room"...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "i...
{"categories" : ["Uncategorized"], "desc" : "\n", "details" : {"authors" : "L. McColl-Sylvester, F. Ponticelli", "format" : "pdf", "isbn-10" : "0470122137", "isbn-13" : "978-0470122136", "pages" : "600 pages", "publication date" : "February 11, 2008", "publisher" : "Wrox", "size" : "8.00Mb"}, "img" : "http://23.95.221....
json_instruct
{"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "desc": {"type": "string"}, "details": {"type": "object", "properties": {"authors": {"type": "string"}, "format": {"type": "string"}, "isbn-10": {"type": "string"}, "isbn-13": {"type": "string"}, "pages": {"type": "string"},...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey....
{"survey.css" : "sha256-vXqA+we0hiPKe39yVB4lIvC7FfBspEMwvFAKwVQ4adk=", "survey.min.css" : "sha256-i5xDjqr6kVia3q7QehRSZma5USqzi/UsUDj2Pn2i2YY=", "survey.react.js" : "sha256-7DtGQ4H+W/w/M9qjjtZLIC/a6+pRRl8jLJthAT9s6rc=", "survey.react.min.js" : "sha256-ZfM5W8HMQcHU/Fd2VBEU2OeYGb/myqzQUWVgBQrYlAs="}
json_instruct
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type"...
{"name" : "eslint-config-trucknet-io", "version" : "1.2.1", "description" : "Eslint Preset based on JavaScript Standard Style with comma-dangles, semi and more", "homepage" : "https://github.com/trucknet-io/eslint-config-trucknet-io", "repository" : {"type" : "git", "url" : "https://github.com/trucknet-io/eslint-config...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"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": {"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" : [[[-71.156468, 42.402568], [-71.142264, 42.405763], [-71.136277, 42.401083], [-71.140412, 42.39972], [-71.143593, 42.397412], [-71.156468, 42.402568]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 30278}}]}
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...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"revive_bg": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "inte...
{"file" : "resurrection.png", "frames" : {"revive_bg" : {"x" : 1, "y" : 1, "w" : 301, "h" : 145, "offX" : 0, "offY" : 0, "sourceW" : 301, "sourceH" : 145}, "revive_btn" : {"x" : 1, "y" : 148, "w" : 95, "h" : 34, "offX" : 0, "offY" : 0, "sourceW" : 95, "sourceH" : 34}, "revive_zz" : {"x" : 304, "y" : 1, "w" : 172, "h" :...
json_instruct
{"type": "object", "properties": {"file": {"type": "string"}, "frames": {"type": "object", "properties": {"revive_bg": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "w": {"type": "integer"}, "h": {"type": "integer"}, "offX": {"type": "integer"}, "offY": {"type": "integer"}, "sour...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"t...
{"translation-revision-date" : "2020-07-20 04:44:41+0000", "generator" : "GlotPress/3.0.0-alpha.2", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=2; plural=n != 1;", "lang" : "es"}, "Orange" : ["Naranja"], "Lightweight baseball cap" : ["Gorra de beisbol li...
json_instruct
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-for...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "index": {"type": "integer"}, "score": {"type": "number"}}, "required": ["i...
[{"name" : "0.jpg", "labels" : [{"id" : "119", "index" : 1, "score" : 0.9972795844078064}, {"id" : "120", "index" : 2, "score" : 0.989779531955719}, {"id" : "121", "index" : 3, "score" : 0.9872186183929443}, {"id" : "122", "index" : 4, "score" : 0.9812575578689575}, {"id" : "123", "index" : 5, "score" : 0.9758461713790...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "labels": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "index": {"type": "integer"}, "score": {"type": "number"}}, "required": ["id", "index", "score"]}}}, "required": ["name", "labels"]}, ...
Following the schema specification below, generate a valid 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" : 80, "objective" : "markowitz_return_on_cube", "white" : "optuna_random_clone_1", "black" : "shgo_slsqp_sobol", "traceback" : ["passing", "passing"], "best_val" : [3240.613249360582, 3024.267264801698], "best_x" : [[0.9899883877846811, 0.7321950198392818, 0.009761533878258843, 0.87224808122035...
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": {...
Following the schema specification below, generate a valid 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" : 5, "n_trials" : 30, "objective" : "powers_on_cube", "white" : "optuna_random_clone", "black" : "hyperopt_atpe", "traceback" : ["passing", "passing"], "best_val" : [7.0383943666659095, 8.77845585117532], "best_x" : [[0.691763159708083, 0.7329324593908871, 0.38175479631134024, 0.46150900219759783, 0.4954330794...
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": {...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parame...
{"user_rating" : 3.5, "review_count" : 57, "name" : "Ibis Budget Duesseldorf Willich", "reviews" : [{"rating" : 1.0, "stay_parameters" : "Stayed April 2013, traveled with family", "text" : "Yes budget but at least you expect a bed tobe able to sleep in", "title" : "Beware must be worst beds in Germany", "user" : "mrsja...
json_instruct
{"type": "object", "properties": {"user_rating": {"type": "number"}, "review_count": {"type": "integer"}, "name": {"type": "string"}, "reviews": {"type": "array", "items": {"type": "object", "properties": {"rating": {"type": "number"}, "stay_parameters": {"type": "string"}, "text": {"type": "string"}, "title": {"type":...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "strange:block/writing_desk"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category...
{"id" : 134941, "info" : {"name" : "BetterWikia - LoL", "description" : "An addon for style 134937 for the League of Legends (LoL) Wiki.", "additionalInfo" : "Removes the background image and replaces it with the blue accent color used in the page.\r\nMakes the grid of all items in League visible at the bottom of item ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type":...
Generate a valid JSON object that conforms to the following schema: {"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": {"t...
{"nom" : "Algolsheim", "dpt" : "Haut-Rhin", "inscrits" : 605, "abs" : 115, "votants" : 490, "blancs" : 41, "nuls" : 6, "exp" : 443, "res" : [{"panneau" : "1", "voix" : 245}, {"panneau" : "2", "voix" : 198}]}
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"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "...
{"name" : "stream-json", "version" : "1.5.0", "description" : "stream-json is the micro-library of Node.js stream components for creating custom JSON processing pipelines with a minimal memory footprint. It can parse JSON files far exceeding available memory streaming individual primitives using a SAX-inspired API. Inc...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "bugs": {"type": "string"}, "main": {"type": "string"}, "directories": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "de...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type":...
{"type" : "module", "name" : "prettier-config-typesafeconfig", "version" : "2.2.0", "description" : "Prettier base configuration (prettierrc) to extend from with emphasis on type safety.", "main" : ".prettierrc.json", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", ...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "prope...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"jodit.min.css" : "sha512-NCNZxJZfNODO8VAedWYpP6bvnwjcCdKZHPzEhk9jq4mO6IMaVGggNvRXaDtEFrXztJDg2eHjW3KVeXAOCND9zg==", "jodit.min.js" : "sha512-7MB2lN7wTpq3mFz55pFtPjzFbW8YooOZpUMENzOdFtVDx99CsFhwxCXqYvINdtq34xrS9hv5N+jd2J65LVzlpw=="}
json_instruct
{"type": "object", "properties": {"jodit.min.css": {"type": "string"}, "jodit.min.js": {"type": "string"}}, "required": ["jodit.min.css", "jodit.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"version": {"type": "string"}, "baseDirectory": {"type": "string"}}, "required": ["version", "baseDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : "1.0.0", "baseDirectory" : "realm_cli_rhel70_2a7101e5cbc1bae963474a5967052eed9c0f2244_20_06_05_19_38_47"}
json_instruct
{"type": "object", "properties": {"version": {"type": "string"}, "baseDirectory": {"type": "string"}}, "required": ["version", "baseDirectory"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "pr...
[{"c_ref" : "France Mainland", "totals" : {"Cases" : 374586, "Deaths" : 30661}, "daily" : {"Cases" : 9561, "Deaths" : 18}}, {"c_ref" : "French Guiana", "totals" : {"Cases" : 9462, "Deaths" : 63}, "daily" : {"Cases" : 44, "Deaths" : 1}}, {"c_ref" : "French Polynesia", "totals" : {"Cases" : 857, "Deaths" : 0}, "daily" : ...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"c_ref": {"type": "string"}, "totals": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type": "integer"}}, "required": ["Cases", "Deaths"]}, "daily": {"type": "object", "properties": {"Cases": {"type": "integer"}, "Deaths": {"type"...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"123156\"": {"type": "string"}, "\"123139\"": {"type": "string"}, "\"123131\"": {"typ...
{"status" : "success", "tp" : 1, "msg" : "Cities fetched successfully.", "result" : {"\"123156\"" : "Aleksandrovskoye", "\"123139\"" : "Asino", "\"123131\"" : "Bakchar", "\"123107\"" : "Belyy Yar", "\"123090\"" : "Bogashevo", "\"122994\"" : "Kaltay", "\"122983\"" : "Kargasok", "\"123194\"" : "Kedrovyy", "\"122954\"" : ...
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "tp": {"type": "integer"}, "msg": {"type": "string"}, "result": {"type": "object", "properties": {"\"123156\"": {"type": "string"}, "\"123139\"": {"type": "string"}, "\"123131\"": {"type": "string"}, "\"123107\"": {"type": "string"}, "\"123090\"": {"type":...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "id":...
{"geometry" : {"type" : "Point", "coordinates" : [-73.13, 43.54]}, "type" : "Feature", "id" : "05741", "properties" : {"other_cities" : "Poultney", "city" : "East Poultney", "state" : "VT", "county" : "Rutland 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...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"class_name" : "saturation", "bbox" : "403 406 502 504", "used" : true}, {"class_name" : "contrast", "bbox" : "6 242 150 416", "used" : false}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"class_name": {"type": "string"}, "bbox": {"type": "string"}, "used": {"type": "boolean"}}, "required": ["class_name", "bbox", "used"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"assignment": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "prop...
{"$schema" : "http://json-schema.org/schema#", "type" : "object", "properties" : {"assignment" : {"type" : "array", "items" : {"type" : "object", "properties" : {"period" : {"type" : "integer"}, "mode" : {"type" : "integer"}, "job" : {"type" : "integer"}}, "required" : ["job", "mode", "period"]}}}, "required" : ["assig...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"assignment": {"type": "object", "properties": {"type": {"type": "string"}, "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object",...
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#"}
[[349, -106, 2016, -163, -396, 238, -142, 109, -275, 3052, -132, -179, 437, -304, -207, 2362, 38, 2008, -2462, -374, -12911, 6046, -254, 7629, 164, -4916, -5288, 98, -3648, 6527, 196, 226], [9991, 9844, 4971, 10037, 9957, 2909, 9816, 9961, 9903, 3525, 10070, 10043, 10045, 9912, 9921, 5137, 9877, 1066, 9101, 10014, 1893...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"govTokenAddress": {"type": "string"}}, "required": ["govTokenAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"govTokenAddress" : "0xa1d0E215a23d7030842FC67cE582a6aFa3CCaB83"}
json_instruct
{"type": "object", "properties": {"govTokenAddress": {"type": "string"}}, "required": ["govTokenAddress"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmenta...
{"status" : "OK", "segmentation" : "candidate-segmentation", "url" : "/segment-image/cd54f0b3-0799-4fab-93fe-6aa1d8c6a9cc/candidate-segmentation/2786", "character" : "N", "label" : "2786", "id" : "cd54f0b3-0799-4fab-93fe-6aa1d8c6a9cc"}
json_instruct
{"type": "object", "properties": {"status": {"type": "string"}, "segmentation": {"type": "string"}, "url": {"type": "string"}, "character": {"type": "string"}, "label": {"type": "string"}, "id": {"type": "string"}}, "required": ["status", "segmentation", "url", "character", "label", "id"], "$schema": "http://json-schem...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"genre": {"type": "string"}, "event": {"type": "array", "items": {"type": "object", "properties": {"venue_id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"...
{"genre" : "indie", "event" : [{"venue_id" : 222, "title" : "Brisa", "date" : "2017-09-07", "time" : "21:00", "venue" : "\uc81c\ube44\ub2e4\ubc29", "lineup" : [{"name" : "Brisa", "musician_id" : 6945}]}], "regular_musician" : [{"name" : "Brisa", "musician_id" : 6945, "event_count" : 1}], "name" : "Brisa", "musician_id"...
json_instruct
{"type": "object", "properties": {"genre": {"type": "string"}, "event": {"type": "array", "items": {"type": "object", "properties": {"venue_id": {"type": "integer"}, "title": {"type": "string"}, "date": {"type": "string"}, "time": {"type": "string"}, "venue": {"type": "string"}, "lineup": {"type": "array", "items": {"t...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$schema": "http:/...
{"g1" : 0.9346607354236267, "g2" : 6.813307859317801, "logK" : -3.0982024945050943, "loc" : 0.00496589994197953, "logScale" : -3.9879243258254666}
json_instruct
{"type": "object", "properties": {"g1": {"type": "number"}, "g2": {"type": "number"}, "logK": {"type": "number"}, "loc": {"type": "number"}, "logScale": {"type": "number"}}, "required": ["g1", "g2", "logK", "loc", "logScale"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}...
{"code" : 7207011, "parent" : 7207, "name" : "BIAU", "latitude" : "1.1904271579993", "longitude" : "121.39863084042", "postal" : [94564, 94563], "children" : [7207011001, 7207011002, 7207011003, 7207011004, 7207011005, 7207011006, 7207011007]}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "string"}, "longitude": {"type": "string"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {"type": "integer"}}}, "required": ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type":...
{"image_name" : "lesion2251.png", "image_height" : 512, "camera_gps" : "", "bbox" : [{"score" : 1.0, "frontview" : true, "other" : {"region_attributes" : {"id" : 1.0, "type" : "car"}}, "category_id" : "car", "segmentation" : "220.0,243.0,215.0,241.0,209.0,240.0,200.0,242.0,195.0,247.0,195.0,251.0,195.0,259.0,198.0,266....
json_instruct
{"type": "object", "properties": {"image_name": {"type": "string"}, "image_height": {"type": "integer"}, "camera_gps": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "object", "properties": {"score": {"type": "number"}, "frontview": {"type": "boolean"}, "other": {"type": "object", "properties": {"regio...
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename",...
[{"manufacturer" : "ZTE", "market_name" : "BLADE V0820", "codename" : "ZTE_BLADE_V0820", "model" : "ZTE BLADE V0820"}, {"manufacturer" : "ZTE", "market_name" : "BLADE V8 SE", "codename" : "ZTE_BLADE_V0820", "model" : "BLADE V8 SE"}, {"manufacturer" : "ZTE", "market_name" : "ZTE BLADE V0820", "codename" : "ZTE_BLADE_V08...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"manufacturer": {"type": "string"}, "market_name": {"type": "string"}, "codename": {"type": "string"}, "model": {"type": "string"}}, "required": ["manufacturer", "market_name", "codename", "model"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "3598ab20c8b8a85f22c3907b5a92f86ddfa8ad12.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@testing-library/jest-dom": {"type": "string"}, "@testing-library/react": {"type": "s...
{"name" : "tidb-dashboard-ui", "version" : "0.1.0", "private" : true, "dependencies" : {"@testing-library/jest-dom" : "^4.2.4", "@testing-library/react" : "^9.3.2", "@testing-library/user-event" : "^7.1.2", "antd" : "^3.26.5", "antd-dayjs-webpack-plugin" : "^0.0.7", "axios" : "^0.19.0", "babel-plugin-import" : "^1.13.0...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"@testing-library/jest-dom": {"type": "string"}, "@testing-library/react": {"type": "string"}, "@testing-library/user-event": {"type": "string"},...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodrecipetype": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "buffs": {"type": "array", "items": {"type": "string"...
{"name" : "Jade Parcels", "rarity" : "4", "foodrecipetype" : "Warrior", "effect" : "Increases all party members' ATK by 224-320 and CRIT Rate by 6-10% for 300s.", "description" : "An exquisite-looking dish. The ham's sweetness is locked inside the fresh vegetables, drizzled with a spicy broth. Delicious is an understat...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "rarity": {"type": "string"}, "foodrecipetype": {"type": "string"}, "effect": {"type": "string"}, "description": {"type": "string"}, "buffs": {"type": "array", "items": {"type": "string"}}, "images": {"type": "object", "properties": {"image": {"type": "strin...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "re...
{"h" : [{"d" : [{"e" : ["\ufff9`Misakafangay~ `ci~`nira~.\ufffa\ufffb\u4ed6\u5728\u505a\u5927\u8863\u3002"], "f" : "\u6b63\u5728\u505a\u5927\u8863\u3002"}, {"s" : ["`misa~`ora~`ay~", "`misa~`sawfanay~"], "e" : ["\ufff9`Misakafangay~ `a~ `tamdaw~.\ufffa\ufffb\u505a\u5927\u8863\u7684\u4eba\u3002"], "f" : "\u6307\u505a\u5...
json_instruct
{"type": "object", "properties": {"h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"e": {"type": "array", "items": {"type": "string"}}, "f": {"type": "string"}}, "required": ["e", "f"]}}}, "required": ["d"]}}, "stem": {"type": "string"},...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"personas": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "nickname": {"type": "string"}}, "required": ["nombre", "nickname"]}}}, "required": ["personas"], "$schema":...
{"personas" : [{"nombre" : "chuz", "nickname" : "chuz"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"}, {"nombre" : "juan", "nickname" : "janito"},...
json_instruct
{"type": "object", "properties": {"personas": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "nickname": {"type": "string"}}, "required": ["nombre", "nickname"]}}}, "required": ["personas"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number...
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[14.722, 50.822], [14.8, 50.823], [14.823, 50.871], [14.9, 50.876], [14.963, 50.862], [15.002, 50.869], [14.989, 50.922], [15.01, 50.938], [15.017, 50.967], [14.968, 50.99], [14.985, 51.011], [15.016, 51.022], [15.077, 51.014], [15.105, 50.992], [...
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...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"coords": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["coords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"coords" : [[[-6.3, -15.0], [-6.2, -15.0]], [[-6.2, -15.0], [-6.2, -15.0]], [[-6.2, -15.0], [-6.2, -15.3]], [[-6.2, -15.3], [-6.2, -15.6]], [[-6.2, -15.6], [-6.2, -15.9]], [[-6.2, -15.9], [-6.2, -16.1]], [[-6.2, -16.1], [-6.2, -16.3]], [[-6.2, -16.3], [-6.2, -16.7]], [[-6.2, -16.7], [-6.2, -17.1]], [[-6.2, -17.1], [-6...
json_instruct
{"type": "object", "properties": {"coords": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["coords"], "$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": {}}}, "required": ["userId", "cartId", ...
{"userId" : 47364, "cartId" : "94eb51eb-cee9-4ba3-a546-731fca84e42c", "preferredProducts" : [4364, 3300, 2444, 3858, 16, 1128, 670, 1354], "productReviews" : []}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema....
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": ...
{"source" : "http://lema.rae.es/drae/srv/search?val=alborotar", "word" : "alborotar", "infinitivo" : "alborotar", "participio" : ["alborotado"], "gerundio" : ["alborotando"], "tenses" : {"3" : [["alboroto"], ["alborotas", "alborot\u00e1s"], ["alborota"], ["alborotamos"], ["alborot\u00e1is", "alborotan"], ["alborotan"]]...
json_instruct
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", ...
[{"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-courtadmin", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/2022", "CaseTypeID" : "PRLAPPS", "CaseFieldID" : "courtId", "UserRole" : "caseworker-privatelaw-solicitor", "CRUD" : "CRUD"}, {"LiveFrom" : "07/03/202...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"LiveFrom": {"type": "string"}, "CaseTypeID": {"type": "string"}, "CaseFieldID": {"type": "string"}, "UserRole": {"type": "string"}, "CRUD": {"type": "string"}}, "required": ["LiveFrom", "CaseTypeID", "CaseFieldID", "UserRole", "CRUD"]}, "$schema": "http://js...
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["500236125001", "\u9f99\u5c71\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["500236125002", "\u5408\u8425\u793e\u533a\u5c45\u59d4\u4f1a", "122", "0"], ["500236125003", "\u7ea2\u9f99\u793e\u533a\u5c45\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["500236125200", "\u70df\u5c71\u6751\u6c11\u59d4\u5458\u4f1a", "220", "0"], ["5...
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": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.config": {"type": "string"}, "deno.enable": {"type": "boolean"}, "deno.importMap": {"type": "string"}, "editor.tabSize": {"type": "integer"},...
{"cSpell.words" : ["deno", "zettel"], "deno.config" : "./tsconfig.json", "deno.enable" : true, "deno.importMap" : "./import_map.json", "editor.tabSize" : 2, "markdown.extension.toc.updateOnSave" : false}
json_instruct
{"type": "object", "properties": {"cSpell.words": {"type": "array", "items": {"type": "string"}}, "deno.config": {"type": "string"}, "deno.enable": {"type": "boolean"}, "deno.importMap": {"type": "string"}, "editor.tabSize": {"type": "integer"}, "markdown.extension.toc.updateOnSave": {"type": "boolean"}}, "required": [...
Create an example JSON object that satisfies this schema: {"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": "int...
{"nom" : "Aubigny", "dpt" : "Somme", "inscrits" : 377, "abs" : 49, "votants" : 328, "blancs" : 6, "nuls" : 7, "exp" : 315, "res" : [{"panneau" : "2", "voix" : 108}, {"panneau" : "3", "voix" : 61}, {"panneau" : "11", "voix" : 51}, {"panneau" : "9", "voix" : 46}, {"panneau" : "1", "voix" : 17}, {"panneau" : "4", "voix" :...
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"...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": ...
{"name" : "current-slide", "version" : "0.1.1", "authors" : ["Daniel Llewellyn <daniel@bowlhat.net>"], "main" : "current-slide.html", "keywords" : ["web-components"], "license" : "MIT", "homepage" : "http://diddledan.github.io/current-slide", "ignore" : ["**/.*", "node_modules", "bower_components", "test", "tests", "de...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "main": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "ignore": {"type"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "ite...
{"title" : "Data miming: inferring spatial object descriptions from human gesture.", "fields" : ["3d modeling", "natural language processing", "proof of concept", "gesture", "voxel"], "abstract" : "Speakers often use hand gestures when talking about or describing physical objects. Such gesture is particularly useful wh...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "year": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "authors": {"typ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items":...
{"features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [6.301715783333333, 51.59319878728661]}, "properties" : {"TIMESTAMP UTC" : "2020-04-05T10:56:28", "CLASSIFICATION" : "Flying plane"}}, {"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [6.301715783333333, 51.593198787...
json_instruct
{"type": "object", "properties": {"features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properti...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "propertie...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-0.048367, 51.462945]}, "properties" : {"point" : "POINT(-0.048367 51.462945)", "name" : "PNAAP31", "site" : "PNAAP31", "planning-permission-status" : "not permissioned", "maximum-net-dwellings" : "21", "minimum-net-dwellings" : "17", "site-address" ...
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": {"point": {"type": "string"}, "name...
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" : 62410, "cartId" : "264d6ff1-1ea4-4510-ac0f-3eef0bcdaf66", "preferredProducts" : [1107, 1237, 1427, 1419, 3755, 1029, 1269, 1877, 3222], "productReviews" : [{"productId" : 2382, "reviewText" : "this purple is whole-grain.", "reviewDate" : "2016-05-28T00:54:40.5636536+03:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewD...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weig...
{"id" : 9192, "name" : "Diamond bolt tips", "qualified_name" : "Diamond bolt tips", "examine" : "Diamond bolt tips.", "members" : true, "release_date" : "2006-07-31", "quest" : false, "weight" : 0.0, "value" : 133, "alchemy" : {"high" : 79, "low" : 53}, "tradeable" : true, "stackable" : true, "noteable" : false, "equip...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "qualified_name": {"type": "string"}, "examine": {"type": "string"}, "members": {"type": "boolean"}, "release_date": {"type": "string"}, "quest": {"type": "boolean"}, "weight": {"type": "number"}, "value": {"type": "integer"}, "alc...
Based on the schema below, produce a valid JSON object: {"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": "integ...
{"nom" : "Nexon", "dpt" : "Haute-Vienne", "inscrits" : 1822, "abs" : 266, "votants" : 1556, "blancs" : 34, "nuls" : 20, "exp" : 1502, "res" : [{"panneau" : "3", "voix" : 386}, {"panneau" : "9", "voix" : 309}, {"panneau" : "2", "voix" : 291}, {"panneau" : "11", "voix" : 232}, {"panneau" : "4", "voix" : 108}, {"panneau" ...
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"...
Generate a valid JSON object that conforms to the following 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", "ite...
{"directions" : ["Simmer chicken with salt and ginger in 2 quarts water in a 5-quart pot, partially covered, skimming froth occasionally, until very tender, about 40 minutes. Transfer chicken with tongs to a bowl, reserving broth. When chicken is cool, discard skin and bones and shred meat.", "Pour broth through a fine...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "url": {"type"...
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" : ["flask-genshi"]}
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": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required...
{"ETag" : "W/\"e02ba1d891ae4920366d8a10c4d1375a030c0f5c5edc51f633d45981b940f0bd\"", "Last-Modified" : "Thu, 11 Feb 2021 21:15:30 GMT", "base" : {"repo" : {"name" : "tinydb-feedstock"}}, "closed_at" : "2021-02-11T21:15:27Z", "created_at" : "2021-02-11T21:09:35Z", "draft" : false, "head" : {"ref" : "this_is_not_a_branch"...
json_instruct
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "stri...
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" : "d206-29", "text" : "- 4 -\nmay be k\u00abpt antra ef important developments In these related\nfields.\nV. INFORMATION SERVICES\nHASS will be responalble for collection and publice-\ntion of research findings andwill endeavor to establish a\nnational clearing house and referral center for all those\nrequiring d...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "230224583598", "text" : "\u4e8c\u9f99\u6d9b\u519c\u573a\u865a\u62df\u751f\u6d3b\u533a"}]
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"...
{"citations" : [{"textCitation" : "[See haustsms on Metamath](http://us.metamath.org/mpegif/haustsms.html)"}], "names" : ["haustsms"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cB", "#T_wceq", "#T_cbs", "#T_cfv", "#T_cG", "#T_wph", "#T_wi", "#T_cG", "#T_wcel", "#T_ccmn", "#T_wph", "#T_wi", "#T_cG", "#T_wcel"...
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...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": ...
{"IsRecentlyVerified" : false, "ID" : 79214, "UUID" : "7A5FC49E-D9B8-472C-9459-61624EF0D998", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "11946", "UsageTypeID" : 4, "UsageCost" : "Free", "AddressInfo" : {"ID" : 79560, "Title" : "Wild Rose Casino & Resort", "AddressLine1" : "777 Wild Rose DR", "Town...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "UsageCost": {"type": "string"}, "Ad...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"contests": {"type": "array", "items": {"type": "object", "properties": {"ballot_selections": {"type": "array", "items": {"type": "object", "properties": {"is_placeholder_selection": {"type": "boolean"}, "object_id": {"type": "...
{"contests" : [{"ballot_selections" : [{"is_placeholder_selection" : false, "object_id" : "barchi-hallaren-selection", "vote" : 1}, {"is_placeholder_selection" : false, "object_id" : "court-blumhardt-selection", "vote" : 0}, {"is_placeholder_selection" : false, "object_id" : "hildebrand-garritty-selection", "vote" : 0}...
json_instruct
{"type": "object", "properties": {"contests": {"type": "array", "items": {"type": "object", "properties": {"ballot_selections": {"type": "array", "items": {"type": "object", "properties": {"is_placeholder_selection": {"type": "boolean"}, "object_id": {"type": "string"}, "vote": {"type": "integer"}}, "required": ["is_pl...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/s...
[{"bbox" : "6 1 186 500", "used" : false, "class_name" : "bottle"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"bbox": {"type": "string"}, "used": {"type": "boolean"}, "class_name": {"type": "string"}}, "required": ["bbox", "used", "class_name"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"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_P...
{"PREVALENCE_BY_GENDER_AGE_YEAR" : {"TRELLIS_NAME" : [], "SERIES_NAME" : [], "X_CALENDAR_YEAR" : [], "Y_PREVALENCE_1000PP" : []}, "PREVALENCE_BY_MONTH" : {"X_CALENDAR_MONTH" : [], "Y_PREVALENCE_1000PP" : []}, "PROCEDURE_FREQUENCY_DISTRIBUTION" : {"Y_NUM_PERSONS" : 0, "X_COUNT" : 1}, "PROCEDURES_BY_TYPE" : {"CONCEPT_NAM...
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...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id...
{"id" : 102023225, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "2d416b2ce277bb4d7b9e8237e6838fac", "wof:id" : 102023225, "wof:repo" : "whosonfirst-data-admin-my"}, "bbox" : [102.2636, 2.5979, 102.2636, 2.5979], "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": ["...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "b...
{"name" : "@attorn/electron-theme", "author" : "qafoori", "version" : "2.0.2", "description" : "A package for theming electron projects with the ability to create, change, install and uninstall themes", "homepage" : "https://github.com/attorn/-attorn-electron-theme#readme", "license" : "MIT", "private" : false, "main" ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "types": {"type": "string"}, "bugs": {"...
Based on the schema below, produce a valid JSON object: {"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" : "3316110009", "district_id" : "3316110", "name" : "MOJOWETAN"}
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#"}
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"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", ...
{"name" : "@fman42/simple-markdown", "version" : "1.0.1", "description" : "A simple markdown editor allowing use the markdown without some troubles", "main" : "src/dist/SimpleMarkdownEditor.umd.js", "module" : "src/dist/SimpleMarkdownEditor.esm.js", "unpkg" : "src/dist/SimpleMarkdownEditor.min.js", "browser" : {"./sfc"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "module": {"type": "string"}, "unpkg": {"type": "string"}, "browser": {"type": "object", "properties": {"./sfc": {"type": "string"}}, "required": ["./sfc"]}, "scrip...