input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {...
{"type" : "Feature", "properties" : {"name" : "Al Jawf Governorate", "iso2" : "YE-JA", "admin_level" : 4, "osm_id" : 383899, "wikidata_id" : "Q328128", "wikipedia_id" : "ar:\u0627\u0644\u062c\u0648\u0641 (\u0645\u062d\u0627\u0641\u0638\u0629)", "population" : 552000, "countrylevel_id" : "iso2:YE-JA", "osm_data" : {"loc...
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "string"}, "population": {"...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "filePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "desc...
{"name" : "MycoLab Docker Workflow", "description" : "MycoLab Organization CI starter workflow for GCP Docker.", "categories" : ["Docker"], "filePatterns" : ["^Dockerfile"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "categories": {"type": "array", "items": {"type": "string"}}, "filePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "description", "categories", "filePatterns"], "$schema": "http://json-schem...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "colouredmoss:block/red_moss_carpet"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "stri...
{"data" : {"id" : 78783, "title" : "Jasmine Xu", "primoId" : "", "slug" : "", "shortcode" : "Bo6JnwjFFGp", "imageUrl" : "https://dxlab.sl.nsw.gov.au/images-newselfwales/selfie-1539510003657-.jpg", "content" : "Study time \u539f\u6765\u6089\u5c3c\u4e5f\u6709\u53e4\u8001\u7684\u56fe\u4e66\u9986\n.\n.\n.\n#sydney #newself...
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "primoId": {"type": "string"}, "slug": {"type": "string"}, "shortcode": {"type": "string"}, "imageUrl": {"type": "string"}, "content": {"type": "string"}, "imageType": {"type": "string"}, ...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"@ns": {"type": "string"}, "user": {"type": "object", "properties": {"oid": {"type": "string"}, "version": {"type": "string"}, "@ns": {"type": "string"}, "name": {"type": "string"}, "fullName": {"type": "string"}, "g...
{"@ns" : "http://midpoint.evolveum.com/xml/ns/test/foo-1.xsd", "user" : {"oid" : "c0c010c0-d34d-b33f-f00d-111111112222", "version" : "7", "@ns" : "http://midpoint.evolveum.com/xml/ns/test/foo-1.xsd", "name" : "barbossa", "fullName" : "Hector Barbossa", "givenName" : "Hector", "familyName" : "Barbossa"}}
json_instruct
{"type": "object", "properties": {"@ns": {"type": "string"}, "user": {"type": "object", "properties": {"oid": {"type": "string"}, "version": {"type": "string"}, "@ns": {"type": "string"}, "name": {"type": "string"}, "fullName": {"type": "string"}, "givenName": {"type": "string"}, "familyName": {"type": "string"}}, "req...
Please provide a valid JSON object following this schema: {"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": {}}, "...
{"ast" : null, "code" : "import { useMemo } from 'react';\nimport { useWallet } from './useWallet';\nexport function useAnchorWallet() {\n var _useWallet = useWallet(),\n publicKey = _useWallet.publicKey,\n signTransaction = _useWallet.signTransaction,\n signAllTransactions = _useWallet.signAllTransacti...
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": {}}, "mappings": {"type": "string"}, "sourceRoot": {"type": "stri...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type...
{"name" : "bootdialog", "homepage" : "https://github.com/mai7star/bootdialog", "authors" : ["Hiroyuki Toda <mai7star@gmail.com>"], "description" : "", "main" : "bootdialog.js", "moduleType" : ["amd"], "keywords" : ["bootstrap", "dialog", "modal"], "license" : "MIT", "ignore" : ["**/.*", "node_modules", "bower_component...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "main": {"type": "string"}, "moduleType": {"type": "array", "items": {"type": "string"}}, "keywords": {"type": "array", "items": {"t...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties...
{"name" : "WHLCategory", "version" : "0.0.1", "summary" : "A short description of WHLCategory.", "description" : "\"This is a commonly used classification in my project\"", "homepage" : "https://github.com/WCMYCML/WHLCategory", "license" : "MIT", "authors" : {"WCMYCML" : "wcmycml@163.com"}, "platforms" : {"ios" : "9.0"...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "object", "properties": {"WCMYCML": {"type": "string"}}, "required": ["WCMYCML...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}}...
{"name" : "be-dog", "version" : "1.0.0", "description" : "BeCompany's web component to display random cats pictures.", "main" : "dist/main.js", "scripts" : {"build" : "npm run clean && webpack", "clean" : "del-cli dist"}, "keywords" : ["web-component", "tutorial", "cat"], "author" : "Javier Puerto <javier.puerto@becomp...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}}, "required": ["build", "clean"]}, "keywords": {"type": "array...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type"...
{"id" : 181192, "info" : {"name" : "ScA1", "description" : "Scale animating", "additionalInfo" : null, "format" : "uso", "category" : "lichess", "createdAt" : "2020-03-17T20:29:32.000Z", "updatedAt" : "2020-03-24T11:31:58.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 891623, "name" : "TricaSet"}}, "stats" ...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"xbox" : 41838, "ps" : 47457}
json_instruct
{"type": "object", "properties": {"xbox": {"type": "integer"}, "ps": {"type": "integer"}}, "required": ["xbox", "ps"], "$schema": "http://json-schema.org/draft-07/schema#"}
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": {"all": {"type": "string"}, "lint": {"type": "string"}, "test...
{"name" : "xsd-schema-validator", "version" : "0.7.0", "description" : "A (XSD) schema validator for nodejs", "main" : "lib/validator.js", "scripts" : {"all" : "run-s lint test", "lint" : "eslint .", "test" : "mocha", "postinstall" : "node ./lib/post-install.js"}, "repository" : {"type" : "git", "url" : "https://github...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"all": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}, "postinstall": {"type": "string"}}, ...
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": {"docker-build": {"type": "string"}, "docker-start": {"type":...
{"name" : "postgres", "version" : "1.0.0", "description" : "Postgres SQL application for cloud-apps", "main" : "index.js", "scripts" : {"docker-build" : "docker build -t escobard/create-app-postgres:latest -f Dockerfile .", "docker-start" : "docker run --name postgres -e POSTGRES_PASSWORD=postgres_password -p 5432:5432...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"docker-build": {"type": "string"}, "docker-start": {"type": "string"}, "docker-rm": {"type": "string"}, "docker": {"ty...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[["431023001000", "\u4fbf\u6c5f\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["431023002000", "\u6e58\u9634\u6e21\u8857\u9053\u529e\u4e8b\u5904", "4", "1"], ["431023101000", "\u9a6c\u7530\u9547", "4", "1"], ["431023104000", "\u91d1\u9f9f\u9547", "4", "1"], ["431023105000", "\u67cf\u6797\u9547", "4", "1"], ["431023106000"...
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["DADF#AD", "EADGHE", "CGDGAD", "D#A#CGA#D", "DGDGAD", "F#ADGHE", "HGDGAD", "DAC#EHE", "CGCGAD"]
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "arc...
{"vendor" : "zulu", "filename" : "zulu8.52.0.23-ca-jdk8.0.282-solaris_sparcv9.zip", "release_type" : "ga", "version" : "8.52.0.23", "java_version" : "8.0.282", "jvm_impl" : "hotspot", "os" : "solaris", "architecture" : "sparcv9", "file_type" : "zip", "image_type" : "jdk", "features" : [], "url" : "https://static.azul.c...
json_instruct
{"type": "object", "properties": {"vendor": {"type": "string"}, "filename": {"type": "string"}, "release_type": {"type": "string"}, "version": {"type": "string"}, "java_version": {"type": "string"}, "jvm_impl": {"type": "string"}, "os": {"type": "string"}, "architecture": {"type": "string"}, "file_type": {"type": "stri...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema...
{"name" : "beaker", "sample1" : "1BylSeqSSkpNjfCzI_jodLyXSFMrXAM-n", "sample2" : "1kHBXJiHVfitk6dAFddwrj74Noitm3iQe", "sample3" : "1UZeNcY1mhWe8ygLksffL2tHHvcMQvNlJ"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "sample1": {"type": "string"}, "sample2": {"type": "string"}, "sample3": {"type": "string"}}, "required": ["name", "sample1", "sample2", "sample3"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "...
{"acadYear" : "2019/2020", "preclusion" : "BH4413 or BZ4611", "description" : "Pricing is one of the important decisions that a marketing manager must make. In fact a firm's profitability critically depends on how its products or services are priced. Pricing decisions however are difficult to make and can be quite co...
json_instruct
{"type": "object", "properties": {"acadYear": {"type": "string"}, "preclusion": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "prerequisite": {"type": "stri...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type":...
{"id" : 7324, "title" : "One Step at a Time", "points" : 10, "description" : "Complete The Crumbling Hall and The Thunder Below without taking damage from any source.", "rewardItems" : [], "icon" : "achievement_dungeon_mogupalace", "criteria" : [{"id" : 20975, "description" : "Complete The Crumbling Hall without taking...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "points": {"type": "integer"}, "description": {"type": "string"}, "rewardItems": {"type": "array", "items": {}}, "icon": {"type": "string"}, "criteria": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : " 3. Mensajes de estudiantes de Colombia a Julioprofe\n\nMensajes a Julioprofe\\nVideo 3\n\n\n", "url" : "https://www.youtube.com/watch?v=_iMaYVEtmrM"}
json_instruct
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"community": {"type": "object", "properties": {"publ1c": {"type": "object", "properties": {"mode": {"type": "string"}, "acl": {"type": "string"}}, "required": ["mode", "acl"]}}, "required": ["publ1c"]}, "contact...
{"community" : {"publ1c" : {"mode" : "read-only", "acl" : ""}}, "contact" : "ex@example.com", "location" : "example", "chassis_id" : ""}
json_instruct
{"type": "object", "properties": {"community": {"type": "object", "properties": {"publ1c": {"type": "object", "properties": {"mode": {"type": "string"}, "acl": {"type": "string"}}, "required": ["mode", "acl"]}}, "required": ["publ1c"]}, "contact": {"type": "string"}, "location": {"type": "string"}, "chassis_id": {"type...
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "null"}}, "req...
[{"molecule_structure" : "linear", "definition" : "Algerian watermelon mosaic virus, complete genome", "virus_id" : "08d1cf98", "isolate_id" : "ge0ykq4w", "_id" : "NC_010736", "host" : null}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"molecule_structure": {"type": "string"}, "definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "null"}}, "required": ["molecule_structure", "definition", "virus_id", "i...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"t": {"type": "string"}, "h": {"type": "array", "items": {"type": "object", "properties": {"d": {"type": "array", "items": {"type": "object", "properties": {"f": {"type": "string"}, "e": {"type": "array", "items": {"type": "strin...
{"t" : "forok", "h" : [{"d" : [{"f" : "\u574e\u5777\uff0c\u51f9\u51f8\u4e0d\u5e73\u3002", "e" : ["\ufff9`O~ `f~`o~`r~`o~`k~ `ko~ `lalan~ `niyam~ `a~ `mi'adop~.\ufffa\ufffb\u6211\u5011\u8d70\u51f9\u51f8\u4e0d\u5e73\u7684\u8def\u53bb\u6253\u7375\u3002"], "s" : ["`f~`r~`o~`k~"], "r" : ["`ma~`f~`o~`r~`o~`k~"]}]}]}
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"}, "e": {"type": "array", "items": {"type": "string"}}, "s": {"type": "array", "items": {"type": "string"}}...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "action": {"type": "string"}, "vars": {"type": "array", "items": {"type": "object", "properties": {"n...
{"name" : "NOC | Periodic | Periodic Failed", "$collection" : "fm.eventclasses", "uuid" : "919bf2f9-bc5e-43a1-8df8-f462ab4ea025", "description" : "Periodic task has been failed", "action" : "A", "vars" : [{"name" : "task", "description" : "Task's name", "type" : "str", "required" : true}], "subject_template" : "Periodi...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "action": {"type": "string"}, "vars": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"...
{"Time" : "2021-10-13T17:00:00Z", "Temp" : 24.5, "RelHum" : 55, "WindSpeed" : 3.1, "WindDir" : 359}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "number"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["id", "name", "location"]}}...
{"name" : "Hughes Family", "members" : [{"id" : "507f191e810c19729de860ea", "name" : "Jack Hughes", "location" : "347f191e810c19729de860ea"}, {"id" : "507f191e810c19729de860eb", "name" : "Catherine Hughes", "location" : "347f191e810c19729de860ec"}, {"id" : "507f191e810c19729de860ec", "name" : "Mumford Hughes", "locatio...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "members": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "location": {"type": "string"}}, "required": ["id", "name", "location"]}}}, "required": ["name", "members"], "$schema": "http://json...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"server": {"type": "object", "properties": {"request": {"type": "object", "properties": {"payload": {"type": "object", "properties": {"limit": {"type": "string"}}, "required": ["limit"]}}, "required": ["payload"]}}, "...
{"server" : {"request" : {"payload" : {"limit" : "5mb"}}}, "db" : {"maxRetriesPerRequest" : 3}}
json_instruct
{"type": "object", "properties": {"server": {"type": "object", "properties": {"request": {"type": "object", "properties": {"payload": {"type": "object", "properties": {"limit": {"type": "string"}}, "required": ["limit"]}}, "required": ["payload"]}}, "required": ["request"]}, "db": {"type": "object", "properties": {"max...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"beautifier.js": {"type": "string"}, "beautifier.min.js": {"type": "string"}, "beautify-css.js": {"type": "string"}, "beautify-css.min.js": {"type": "string"}, "beautify-html.js": {"type": "string"}, "beautify-html.min.js": {"t...
{"beautifier.js" : "sha512-jCrBBy+tiUunVMD4mxpXaNhH0InKvbCxG0B911W+NMHJi5csVwePBQpXrEQ+hwgpFayu4gZuDUcKzE5HE5bLRg==", "beautifier.min.js" : "sha512-zNLNVqKaq4xJOIfrJ6vV0YPSMdBlK2kcVzqUx4sdKjViOed1MiE5WGMfcseqhwDc7sSQPzqA8+RY+EevzuIjfg==", "beautify-css.js" : "sha512-M4T8i1wYZtKhdgWhsW6CRNE9SU4r1J55jucR/QqKdP4hiG7YCHd31...
json_instruct
{"type": "object", "properties": {"beautifier.js": {"type": "string"}, "beautifier.min.js": {"type": "string"}, "beautify-css.js": {"type": "string"}, "beautify-css.min.js": {"type": "string"}, "beautify-html.js": {"type": "string"}, "beautify-html.min.js": {"type": "string"}, "beautify.js": {"type": "string"}, "beauti...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"...
{"version" : 1.3, "people" : [{"person_id" : [-1], "pose_keypoints_2d" : [0.49467, 0.389403, 0.905888, 0.495442, 0.436998, 0.903231, 0.41064, 0.429103, 0.826899, 0.381762, 0.39714, 0.877747, 0.381722, 0.341316, 0.877919, 0.579353, 0.444933, 0.835652, 0.650169, 0.413238, 0.827365, 0.635928, 0.349688, 0.840548, 0.508843,...
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "array", "items": {"type": "integer"}}, "pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, ...
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": {"start": {"type": "string"}, "step1": {"type": "string"}, "s...
{"name" : "webmo-workshop-sample", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"start" : "serve ./public", "step1" : "serve ./step1", "step2" : "serve ./step2", "step3" : "serve ./step3", "extra1" : "serve ./extra1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/kaneko6...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "step1": {"type": "string"}, "step2": {"type": "string"}, "step3": {"type": "string"}, "ex...
Construct a JSON document that adheres to this schema specification: {"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-vvwg-mm2q-wvgr", "modified" : "2022-04-29T00:00:24Z", "published" : "2022-04-29T00:00:24Z", "aliases" : ["CVE-2022-29820"], "details" : "In JetBrains PyCharm before 2022.1 exposure of the debugger port to the internal network was possible", "severity" : [], "affected" : [], "re...
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": {}}, "affected": {"type": "a...
Generate a valid JSON object that conforms to the following 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" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-79.980006, 40.400437], [-79.979305, 40.40194], [-79.976555, 40.40392], [-79.96889, 40.405645], [-79.96377, 40.409502], [-79.956782, 40.41063], [-79.952955, 40.410659], [-79.951621, 40.405367], [-79.948135, 40.400422], [-...
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...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"sys": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "id"]}, "name": {"type": "string"}, "locales": {"type": "array", "items": {"type": "object", "properties": {"c...
{"sys" : {"type" : "Space", "id" : "dqpnpm0n4e75"}, "name" : "blog space", "locales" : [{"code" : "en-US", "default" : true, "name" : "U.S. English", "fallbackCode" : null}]}
json_instruct
{"type": "object", "properties": {"sys": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "id"]}, "name": {"type": "string"}, "locales": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "default": {"type": "boolean"}, "...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"one_instance_allowed": {"type": "string"}}, "required": ["one_instance_allowed"]}, "error": {"type": "object", "properties": {"cannot_connect...
{"config" : {"abort" : {"one_instance_allowed" : "\u00c8 necessaria solo una singola istanza."}, "error" : {"cannot_connect" : "Impossibile connettersi all'host", "wrong_credentials" : "Nome utente o password non validi"}, "step" : {"options" : {"data" : {"scan_interval" : "Frequenza di aggiornamento"}, "title" : "Conf...
json_instruct
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"one_instance_allowed": {"type": "string"}}, "required": ["one_instance_allowed"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}, "wrong_credentials": {"type": "str...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "...
{"publisher_name" : "Iranian Society of Ophthalmology", "journals" : 1, "scihub" : 103, "crossref_open_access" : 0, "crossref_active" : 118, "crossref" : 118, "coverage" : 0.87288136, "publisher_slug" : "iranian-society-of-ophthalmology", "access_logs" : {"downloads" : 0.42857, "visitors" : 0.35714, "countries" : 0.285...
json_instruct
{"type": "object", "properties": {"publisher_name": {"type": "string"}, "journals": {"type": "integer"}, "scihub": {"type": "integer"}, "crossref_open_access": {"type": "integer"}, "crossref_active": {"type": "integer"}, "crossref": {"type": "integer"}, "coverage": {"type": "number"}, "publisher_slug": {"type": "string...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"USER": {"type": "string"}, "ID": {"type": "string"}, "NICKNAME": {"type": "string"}, "TIME": {"type": "string"}}, "required": ["USER", "ID", "NICKNAME", "TIME"], "$schema": "http://json-schema.org/draft-07/schema#...
{"USER" : "Z\u00e9Fumante", "ID" : "282221380483678209", "NICKNAME" : "ZeFumante", "TIME" : "2019-10-6 11:11:25"}
json_instruct
{"type": "object", "properties": {"USER": {"type": "string"}, "ID": {"type": "string"}, "NICKNAME": {"type": "string"}, "TIME": {"type": "string"}}, "required": ["USER", "ID", "NICKNAME", "TIME"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$...
{"id" : "2013", "provinceId" : "18", "regencyId" : "08", "districtId" : "11", "name" : "Sari Jaya"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[6, 1, 7, 2], [3, 11, 4, 10], [7, 15, 8, 14], [13, 5, 14, 8], [18, 11, 19, 12], [20, 15, 21, 16], [22, 17, 9, 18], [16, 21, 17, 22], [12, 19, 13, 20], [2, 5, 3, 6], [9, 1, 10, 4]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"year": {"type": "integer"}, "month": {"type": "integer"}, "entity": {"type": "string"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"impacted-user-count": {"type": "integer"}, "cost-us...
{"year" : 2019, "month" : 10, "entity" : "City of Johannesburg", "summary" : "Data compromised and ransom requested to prevent public disclosure of data", "tags" : {"impacted-user-count" : 0, "cost-usd" : 0, "actor" : "Criminal:Shadow Kill Hackers", "initial-access" : "?", "motive" : "Money:Ransom"}, "links" : ["https:...
json_instruct
{"type": "object", "properties": {"year": {"type": "integer"}, "month": {"type": "integer"}, "entity": {"type": "string"}, "summary": {"type": "string"}, "tags": {"type": "object", "properties": {"impacted-user-count": {"type": "integer"}, "cost-usd": {"type": "integer"}, "actor": {"type": "string"}, "initial-access": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "ch...
{"code" : 7103091007, "parent" : 7103091, "name" : "TAPUANG", "latitude" : null, "longitude" : null, "postal" : [95859, 95815], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "stateShort": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "image...
{"id" : "stl", "name" : "Lambert\u2013St. Louis International Airport", "city" : "St. Louis", "state" : "Missouri", "stateShort" : "MO", "country" : "USA", "description" : "Lambert-St. Louis International is named after Albert Bond Lambert, Olympic golfer and the first to receive a pilot\u2019s license in the city of *...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "city": {"type": "string"}, "state": {"type": "string"}, "stateShort": {"type": "string"}, "country": {"type": "string"}, "description": {"type": "string"}, "imageCredit": {"type": "string"}, "imageCreditLink": {"type": "string"}}, ...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cheerio": {...
{"name" : "picrawler", "version" : "0.0.1", "description" : "Simple Webcrawler", "main" : "crawler.js", "author" : "Satrajit", "dependencies" : {"cheerio" : "^0.19.0", "url-parse" : "^1.0.5", "request" : "^2.65.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"cheerio": {"type": "string"}, "url-parse": {"type": "string"}, "request": {"type": ...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"tommasonegri.vue.serverRunning": {"type": "boolean"}}, "required": ["tommasonegri.vue.serverRunning"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"tommasonegri.vue.serverRunning" : true}
json_instruct
{"type": "object", "properties": {"tommasonegri.vue.serverRunning": {"type": "boolean"}}, "required": ["tommasonegri.vue.serverRunning"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "logo": {"type": "string"}, "sponsorships": {"type": "array", "items": {}}}, "required": ["name", "url", "logo", "sponsorships"], "$schema": "http://json-schema.org/draft-0...
{"name" : "Re-factor", "url" : "https://re-factor.co/", "logo" : "/images/re-factor-co.jpg", "sponsorships" : []}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "logo": {"type": "string"}, "sponsorships": {"type": "array", "items": {}}}, "required": ["name", "url", "logo", "sponsorships"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id_2284": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "rea...
{"id_2284" : {"title" : "Short Poetry Collection 066", "language" : "English", "totaltime" : "0:40:05", "url_librivox" : "http://librivox.org/short-poetry-collection-066/", "url_iarchive" : "http://archive.org/details/short_poetry_066_librivox", "readers" : ["1944", "205", "2506", "2713", "2724", "2748", "2757", "2784"...
json_instruct
{"type": "object", "properties": {"id_2284": {"type": "object", "properties": {"title": {"type": "string"}, "language": {"type": "string"}, "totaltime": {"type": "string"}, "url_librivox": {"type": "string"}, "url_iarchive": {"type": "string"}, "readers": {"type": "array", "items": {"type": "string"}}, "authors": {"typ...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "alias": {"type": "null"}, "history": {"type": "array", "items": {"type": "object", "properties": {"changes": {"type": "array", ...
{"bugs" : [{"id" : 1637145, "alias" : null, "history" : [{"changes" : [{"removed" : "NEW", "added" : "ASSIGNED", "field_name" : "status"}, {"removed" : "nobody@mozilla.org", "added" : "aethanyc@gmail.com", "field_name" : "assigned_to"}, {"field_name" : "priority", "added" : "P1", "removed" : "--"}], "who" : "aethanyc@g...
json_instruct
{"type": "object", "properties": {"bugs": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "alias": {"type": "null"}, "history": {"type": "array", "items": {"type": "object", "properties": {"changes": {"type": "array", "items": {"type": "object", "properties": {"removed": {"type":...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$schema":...
[{"name" : "ELIOTT", "frequency" : 28462, "males" : "99.88756939076664 %", "females" : "0.11243060923336377 %"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "males": {"type": "string"}, "females": {"type": "string"}}, "required": ["name", "frequency", "males", "females"]}, "$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"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": ...
{"name" : "bariew/yii2-pusher", "description" : "yii2 web push for pusher.com", "type" : "helpers", "keywords" : ["pusher", "push", "yii2"], "license" : "BSD-3-Clause", "authors" : [{"name" : "Bariev Pavel", "email" : "bariew@yandex.ru"}], "require" : {"yiisoft/yii2" : ">=2.0.7", "pusher/pusher-php-server" : "^2.2"}, "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "ema...
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" : 60778, "cartId" : "f5e1424c-4ff4-44d2-8918-b8adbc67efe5", "preferredProducts" : [427, 4938, 1159, 1392, 4869, 4657], "productReviews" : [{"productId" : 4489, "reviewText" : "I saw one of these in Libya and I bought one.", "reviewDate" : "2018-12-08T21:20:53.4571565+02: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...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "testtemplateapp1234_23630", "displayName" : "testtemplateapp1234_23630"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"ty...
{"name" : "@geekie/eslint-plugin", "version" : "1.0.3", "description" : "ESLint rules used at Geekie", "main" : "index.js", "repository" : "https://github.com/geekie/eslint-plugin", "license" : "MIT", "files" : ["configs", "rules/*.js", "index.js", "LICENSE", "README.md"], "dependencies" : {"match-ast" : "^1.0.0"}, "de...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "license": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}, "dependencies": {"type": "object", "proper...
Create an example JSON object that satisfies this schema: {"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" : 113996, "UUID" : "063FDFAE-8108-44DC-A823-DC1A270F88D9", "DataProviderID" : 1, "OperatorID" : 23, "OperatorsReference" : "47358", "UsageTypeID" : 7, "AddressInfo" : {"ID" : 114342, "Title" : "Hostellerie Val Fleuri", "AddressLine1" : "28 Rue Lohr", "Town" : "Mersch", "Postcode" : "...
json_instruct
{"type": "object", "properties": {"IsRecentlyVerified": {"type": "boolean"}, "ID": {"type": "integer"}, "UUID": {"type": "string"}, "DataProviderID": {"type": "integer"}, "OperatorID": {"type": "integer"}, "OperatorsReference": {"type": "string"}, "UsageTypeID": {"type": "integer"}, "AddressInfo": {"type": "object", "p...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"},...
{"id" : 124567, "info" : {"name" : "Ars Technica - Homepage Listing", "description" : "Makes all articles on the homepage of ArsTechnica.com appear in a listing format.", "additionalInfo" : null, "format" : "uso", "category" : "arstechnica", "createdAt" : "2016-02-22T01:42:37.000Z", "updatedAt" : "2016-02-22T01:42:37.0...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "x...
{"derivation" : "probably of foreign derivation;", "pron" : "hay-nah'", "outline" : "<span class=\"literal-meaning\">Hena = &quot;troubling&quot;</span><ol><li> a city in Mesopotamia which the Assyrian kings reduced shortly before the time of Sennacherib; site unknown</li></ol>", "kjv_def" : "Hena.", "lemma" : "\u05d4\...
json_instruct
{"type": "object", "properties": {"derivation": {"type": "string"}, "pron": {"type": "string"}, "outline": {"type": "string"}, "kjv_def": {"type": "string"}, "lemma": {"type": "string"}, "frequency": {"type": "integer"}, "strongs_def": {"type": "string"}, "xlit": {"type": "string"}}, "required": ["derivation", "pron", ...
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "object", "properties": {"totalSize": {"type": "integer"}, "start": {"type": "integer"}, "limit": {"type": "integer"}, "size": {"type": "integer"}, "results": {"type": "array", "items": {"type": "object", "properti...
[{"totalSize" : 100, "start" : 20, "limit" : 10, "size" : 0, "results" : [{"DataDate" : "01/01/1900", "PlanNumber" : "111111-01", "IndividualId" : 1234, "FullName" : "John Doe"}, {"DataDate" : "01/01/1900", "PlanNumber" : "111111-01", "IndividualId" : 2345, "FullName" : "John Doe"}, {"DataDate" : "01/01/1900", "PlanNum...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"totalSize": {"type": "integer"}, "start": {"type": "integer"}, "limit": {"type": "integer"}, "size": {"type": "integer"}, "results": {"type": "array", "items": {"type": "object", "properties": {"DataDate": {"type": "string"}, "PlanNumber": {"type": "string"}...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"inst_name": {"type": "string"}, "time_searched": {"type": "number"}, "average_primal": {"type": "string"}, "average_nb_iters": {"type": "string"}, "primal_list": {"type": "array", "items": {"type": "integer"}}}, "required": ["...
{"inst_name" : "/home/decrypt/dogs/dogs-pfsp/insts/Large/VFR200_40_9_Gap.txt", "time_searched" : 120.0, "average_primal" : "13156.000000", "average_nb_iters" : "71301.100000", "primal_list" : [13159, 13141, 13191, 13112, 13164, 13180, 13117, 13181, 13137, 13178]}
json_instruct
{"type": "object", "properties": {"inst_name": {"type": "string"}, "time_searched": {"type": "number"}, "average_primal": {"type": "string"}, "average_nb_iters": {"type": "string"}, "primal_list": {"type": "array", "items": {"type": "integer"}}}, "required": ["inst_name", "time_searched", "average_primal", "average_nb_...
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"individual_parts": {"type": "object", "properties": {"head": {"type": "object", "properties": {"mining_level": {"type": "integer"}, "durability": {"type": "integer"}, "mining_speed": {"type": "number"}, "attack...
{"individual_parts" : {"head" : {"mining_level" : 3, "durability" : 1053, "mining_speed" : 8.0, "attack_damage" : 3.0, "attack_speed" : 0.6}, "binding" : {"mining_level" : 0, "durability" : 300, "mining_speed" : -0.1, "attack_damage" : 0.2, "attack_speed" : -0.1}, "handle" : {"mining_level" : 0, "durability" : 200, "mi...
json_instruct
{"type": "object", "properties": {"individual_parts": {"type": "object", "properties": {"head": {"type": "object", "properties": {"mining_level": {"type": "integer"}, "durability": {"type": "integer"}, "mining_speed": {"type": "number"}, "attack_damage": {"type": "number"}, "attack_speed": {"type": "number"}}, "require...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"t...
{"directions" : ["Preheat oven to 325 degrees F (160 degrees C).", "Place turkey breast in a shallow baking pan; coat outside of turkey with nonstick cooking spray. Tuck onion and celery in breast cavity; place butter between meat and skin. Pour chicken broth and white wine into bottom of pan.", "Combine lemon pepper, ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "image": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "icon", "description", "castTime"], ...
{"id" : 26656, "name" : "Black Qiraji Battle Tank", "icon" : "inv_misc_qirajicrystal_05", "description" : "Summons and dismisses a rideable Black Qiraji Battle Tank.", "castTime" : "1.5 sec cast"}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "icon": {"type": "string"}, "description": {"type": "string"}, "castTime": {"type": "string"}}, "required": ["id", "name", "icon", "description", "castTime"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"app": {"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "category": {"type": "string"}, "icon": {"type": "string"}}, "required": ["title", "short_descriptio...
{"app" : {"title" : "Trustvox", "short_description" : "Integra\u00e7\u00e3o E-Com Plus e Trustvox.", "category" : "marketing", "icon" : "https://market.e-com.plus/media/H1_l4fs7VPmI.png"}}
json_instruct
{"type": "object", "properties": {"app": {"type": "object", "properties": {"title": {"type": "string"}, "short_description": {"type": "string"}, "category": {"type": "string"}, "icon": {"type": "string"}}, "required": ["title", "short_description", "category", "icon"]}}, "required": ["app"], "$schema": "http://json-sch...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "...
{"Id" : "70363", "ProductId" : "P1000-05", "UserId" : "A126YLPKFPNQDS", "ProfileName" : "Neker", "HelpfulnessNumerator" : 2, "HelpfulnessDenominator" : 3, "Score" : 4, "Time" : "1338076800", "Summary" : "fruity blend", "text" : "I liked it a lot. Not too sweet and very fruity. I liked being able to have it available ...
json_instruct
{"type": "object", "properties": {"Id": {"type": "string"}, "ProductId": {"type": "string"}, "UserId": {"type": "string"}, "ProfileName": {"type": "string"}, "HelpfulnessNumerator": {"type": "integer"}, "HelpfulnessDenominator": {"type": "integer"}, "Score": {"type": "integer"}, "Time": {"type": "string"}, "Summary": {...
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"template": {"type": "object", "properties": {"small": {"type": "string"}, "medium": {"type": "string"}, "large": {"type": "string"}}, "required": ["small", "medium", "large"]}, "channels": {"type": "object", "properties": {...
{"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" : {"canaldoviniboy" : {"title" : "CanalDoViniboy", "channel_id" : 119578992, "link...
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": {"canaldoviniboy": {"type": "object", "properties": {"title": {...
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "pairId": {"type": "integer"}, "itemId": {"type": "integer"}}, "required": ["id", "pairId", "itemId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : 21644, "pairId" : 1556, "itemId" : 26327}, {"id" : 21654, "pairId" : 1557, "itemId" : 26328}, {"id" : 21655, "pairId" : 1558, "itemId" : 26329}, {"id" : 21656, "pairId" : 1559, "itemId" : 26330}, {"id" : 21657, "pairId" : 1560, "itemId" : 26331}, {"id" : 21658, "pairId" : 1561, "itemId" : 26332}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "pairId": {"type": "integer"}, "itemId": {"type": "integer"}}, "required": ["id", "pairId", "itemId"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"h" : "2822b291918a52b5e313", "c" : [3]}
json_instruct
{"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "array", "items": {"type": "integer"}}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract",...
{"contract" : "0xa717d0f45652fb430fd84d3d1b6b02e4510102ea", "tool" : "osiris", "start" : 1564584059.7950697, "end" : 1564584062.5285687, "duration" : 2.733499050140381, "analysis" : []}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "bib_ref": {"type": "string"}, "local_bib": {"type": "string"}, "local_doc": {"type": "string"}, "plac...
{"authors" : [{"name" : "77a4fb782e4f4d84"}, {"name" : "924b2f893dbca4b0"}, {"name" : "9199fa4b7395f48e"}, {"name" : "cd1f7a38fdde4536"}, {"name" : "cb97a7d6ac920c9d"}, {"name" : "befefe4e6bbe82be"}, {"name" : "4f0a84d5da4afc18"}, {"name" : "8c81ece32c41129a"}, {"name" : "581fe8fa5a2b8ee4"}, {"name" : "ed9526426ea833f1...
json_instruct
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "bib_ref": {"type": "string"}, "local_bib": {"type": "string"}, "local_doc": {"type": "string"}, "place": {"type": "string"}, "publish_iso_date": {"type": "strin...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "coffeecheese:block/ham_cooked_wood_pressure_plate"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "requir...
{"generated_at" : "2017-01-27T09:37:27.596486", "required_by" : ["django-segment", "pyramid_analytics", "flask-segmentio"], "requires" : ["requests", "six", "python-dateutil"], "package" : "analytics-python"}
json_instruct
{"type": "object", "properties": {"generated_at": {"type": "string"}, "required_by": {"type": "array", "items": {"type": "string"}}, "requires": {"type": "array", "items": {"type": "string"}}, "package": {"type": "string"}}, "required": ["generated_at", "required_by", "requires", "package"], "$schema": "http://json-sch...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d687-171", "text" : "NAEB\nCHANGE\nORDER\nx New\u00ae-Letter Addressograph Lis t\n( ) Tap\u00a9 Network Address\u00a9graph List\n( x) r&mbershi (Associate B)\n( } Check Attached\n{ ) Letter Attached\nCHANGE (AS I1-5DIC ATED * ABOVE) $ \u25a0\u00ab\u00bb\nFROM?\n2\n3 COPIES TO*\nPR..... ;.'m x\n8 SECRETARY\n8 T...
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$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"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}}, ...
{"ID" : "JAID_commons-math32_Patch_2", "project" : "Math", "bug_id" : "32", "target" : ["org/apache/commons/math3/geometry/euclidean/twod/PolygonsSet.java:147"], "tool" : "Jaid", "correctness" : "Correct"}
json_instruct
{"type": "object", "properties": {"ID": {"type": "string"}, "project": {"type": "string"}, "bug_id": {"type": "string"}, "target": {"type": "array", "items": {"type": "string"}}, "tool": {"type": "string"}, "correctness": {"type": "string"}}, "required": ["ID", "project", "bug_id", "target", "tool", "correctness"], "$s...
Based on the schema below, produce a valid JSON object: {"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"]...
{"place_name" : "Big Rock", "state_name" : "Tennessee", "state_abbrv" : "TN", "lat" : "36.5716", "long" : "-87.7378"}
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier",...
{"identifier" : "OPTIDXBANKNIFTY26-05-2022PE38800.00", "name" : "BANKNIFTY", "grapthData" : [[1646730911000, 0], [1646731059000, 0], [1646732141000, 0], [1646732199000, 0], [1646733953000, 0], [1646736014000, 0], [1646740086000, 0], [1646747119000, 0], [1646747735000, 0], [1646748050000, 0], [1646748366000, 0], [164674...
json_instruct
{"type": "object", "properties": {"identifier": {"type": "string"}, "name": {"type": "string"}, "grapthData": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}, "closePrice": {"type": "number"}}, "required": ["identifier", "name", "grapthData", "closePrice"], "$schema": "http://json-schema.org...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"instructions": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "image": {"type": "string"}}, "required": ["instructions", "ingredients", "title", "ima...
{"instructions" : "Heat olive oil in a large Dutch over over medium-high heat. Saute beef in hot oil until completely browned, about 5 minutes. Remove browned beef with a slotted spoon to a plate, retaining beef drippings in the Dutch oven.\nSaute celery and onion in the beef drippings until tender, about 5 minutes. Re...
json_instruct
{"type": "object", "properties": {"instructions": {"type": "string"}, "ingredients": {"type": "array", "items": {"type": "string"}}, "title": {"type": "string"}, "image": {"type": "string"}}, "required": ["instructions", "ingredients", "title", "image"], "$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"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "addres...
{"name" : "Mia Loin Nng", "symbol" : "GLN", "address" : "0x03241323E870b4D4dF639F86188FABF256F7Fc57", "decimals" : 18, "dharmaVerificationStatus" : "UNVERIFIED"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "address": {"type": "string"}, "decimals": {"type": "integer"}, "dharmaVerificationStatus": {"type": "string"}}, "required": ["name", "symbol", "address", "decimals", "dharmaVerificationStatus"], "$schema": "http://json-schema.o...
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"title": {"type": "string"}, "item": {"type": "string"}, "text": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["title", "item", "text"], "$schema":...
{"title" : "Tinker's Anvil", "item" : "tconstruct:tinkers_anvil", "text" : [{"text" : "Alright Tinker, it's time to put that puny Tinker Station away and create the mighty Tinker's Anvil. The ability to create the biggest and best tools is simply one hammer pound away."}, {"text" : "This anvil can only be made with the...
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "item": {"type": "string"}, "text": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}}, "required": ["text"]}}}, "required": ["title", "item", "text"], "$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"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": ...
{"name" : "nexusse", "version" : "1.0.1", "description" : "A Pub/Sub HUB for Server-Sent Event", "main" : "src/nexusse.js", "repository" : "asiby/nexusse", "scripts" : {"test" : "jest", "start" : "node src/nexusse.js", "build-demo" : "npm install --prefix ./demo/ . && echo \"Start the demo projet by running: npm start-...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "build-demo": {"type": "stri...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": ...
{"courseCode" : "YSC3245", "courseCredit" : "5", "description" : "In Operations Research (OR), we apply mathematical methods to model and solve decision-making problems from a wide range of domains, including Management or Engineering. This module will provide students with a broad overview of common problems and techn...
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "prereqTree": {"type": "object", "properties": {"and": {"type": "array", "items": {"type": "string"}}}, "required": ["and"]}, "title": {"type": "strin...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"item.strawdummy.strawdummy": {"type": "string"}, "item.strawdummy.strawdummy.tooltip1": {"type": "string"}, "item.strawdummy.strawdummy.tooltip2": {"type": "string"}, "item.strawdummy.strawdummy.too_tight": {...
{"item.strawdummy.strawdummy" : "Straw Dummy", "item.strawdummy.strawdummy.tooltip1" : "You can only have %s dummy!", "item.strawdummy.strawdummy.tooltip2" : "You can only have %s dummies!", "item.strawdummy.strawdummy.too_tight" : "Cannot place a Straw Dummy here!"}
json_instruct
{"type": "object", "properties": {"item.strawdummy.strawdummy": {"type": "string"}, "item.strawdummy.strawdummy.tooltip1": {"type": "string"}, "item.strawdummy.strawdummy.tooltip2": {"type": "string"}, "item.strawdummy.strawdummy.too_tight": {"type": "string"}}, "required": ["item.strawdummy.strawdummy", "item.strawdum...
Generate sample JSON data that conforms to the following schema definition: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "451001", "text" : "\u5e02\u8f96\u533a"}, {"id" : "451002", "text" : "\u53f3\u6c5f\u533a"}, {"id" : "451021", "text" : "\u7530\u9633\u53bf"}, {"id" : "451022", "text" : "\u7530\u4e1c\u53bf"}, {"id" : "451023", "text" : "\u5e73\u679c\u53bf"}, {"id" : "451024", "text" : "\u5fb7\u4fdd\u53bf"}, {"id" : "451026", "...
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"MNRE": {"type": "string"}, "MNPE": {"type": "string"}, "AMNRE": {"type": "string"}}, "required": ["MNRE", "MNPE", "AMNRE"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MNRE" : "**/results/slcp-mnre-adv_roc.h5", "MNPE" : "**/results/slcp-mnpe-adv_roc.h5", "AMNRE" : "**/results/slcp-amnre-adv_roc.h5"}
json_instruct
{"type": "object", "properties": {"MNRE": {"type": "string"}, "MNPE": {"type": "string"}, "AMNRE": {"type": "string"}}, "required": ["MNRE", "MNPE", "AMNRE"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "...
{"name" : "Frederica Lipps", "attribute" : "Fire", "type" : "Resonator", "cmc" : 6, "racesOrTraits" : ["Military", "Nameless"], "text" : "When this card enters your field \u21d2 Gain control of target recovered resonator your opponent controls until end of turn. It gains Swiftness until end of turn.", "set" : "Vingolf ...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "s...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": {"t...
{"name" : "kt", "fields" : [{"name" : "a", "descriptor" : "Lbsv;"}, {"name" : "b", "descriptor" : "Lbsv;"}, {"name" : "c", "descriptor" : "Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;"}], "methods" : [{"name" : "<clinit>", "descriptor" : "()V"}, {"name" : "<init>", "descriptor" : "()V"}, {"name" : "a", "descriptor" : "(I...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "descriptor": {"type": "string"}}, "required": ["name", "descriptor"]}}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type...
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "participio": {"type": "array", "items": {"type": "string"}}, "gerundio": {"type": "array", "items": {"type": "string"}}, "...
{"source" : "http://lema.rae.es/drae/srv/search?val=ajorar", "word" : "ajorar", "infinitivo" : "ajorar", "participio" : ["ajorado"], "gerundio" : ["ajorando"], "tenses" : {"3" : [["ajoro"], ["ajoras", "ajor\u00e1s"], ["ajora"], ["ajoramos"], ["ajor\u00e1is", "ajoran"], ["ajoran"]], "4" : [["ajor\u00e9"], ["ajoraste"], ...
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": "object", "properties": {"$schema": {"type": "string"}, "solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "isDomainIsolated": {"type": "boolean"}, "includeCli...
{"$schema" : "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json", "solution" : {"name" : "react-async-await-sp-pnp-js-client-side-solution", "id" : "c3bd0bfa-1bee-4af0-ad3d-a72d02b4dc7c", "version" : "2.0.0.0", "isDomainIsolated" : false, "includeClientSideAssets" : true, "features" :...
json_instruct
{"type": "object", "properties": {"$schema": {"type": "string"}, "solution": {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "version": {"type": "string"}, "isDomainIsolated": {"type": "boolean"}, "includeClientSideAssets": {"type": "boolean"}, "features": {"type": "array", "item...
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": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "...
{"code" : 1220051010, "parent" : 1220051, "name" : "JAMBU TONANG", "latitude" : null, "longitude" : null, "postal" : [22746], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "n...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"173010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "119051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": [...
{"173010" : {"count" : 1}, "count" : 26, "119051" : {"count" : 1}, "499071" : {"count" : 1}, "254031" : {"count" : 1}, "151150" : {"count" : 1}, "472031" : {"count" : 1}, "151199" : {"count" : 1}, "373010" : {"count" : 1}, "352010" : {"count" : 2}, "172141" : {"count" : 1}, "N.A.//" : {"count" : 12}, "5191XX" : {"count...
json_instruct
{"type": "object", "properties": {"173010": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "count": {"type": "integer"}, "119051": {"type": "object", "properties": {"count": {"type": "integer"}}, "required": ["count"]}, "499071": {"type": "object", "properties": {"count": {"typ...
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "arra...
{"directions" : ["Stir the mango, tomato, onion, jalapeno pepper, cilantro, and lime juice together in a bowl; season with salt and pepper."], "ingredients" : ["2 mangoes - peeled, seeded, and chopped", "1 large tomato, diced", "1 small onion, minced", "1 small jalapeno pepper, seeded and minced", "1 tablespoon minced ...
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "r...
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "str...
{"name" : "clean/phpdoc-md", "description" : "Parse PHP classes and writes documentation to markdown files", "keywords" : ["phpdoc", "markdown"], "type" : "library", "license" : "MIT", "minimum-stability" : "dev", "prefer-stable" : true, "require" : {"phpdocumentor/reflection-docblock" : "^3|^4|^5", "clean/view" : "0.1...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "license": {"type": "string"}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "require": {"type": "obje...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": ...
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [-1.951727, 51.230634]}, "properties" : {"documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1023967", "listed-building" : "1023967", "start-date" : "1985-07-04", "point" : "POINT (-1.951727 51.230634)", "listed-building-...
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": {"documentation-url": {"type": "str...
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://jso...
{"text" : {"0" : {"m1" : "\u0627\u06cc\u0646 \u062d\u0642\u06cc\u0642\u062a \u062f\u0631 \u0647\u0645\u0647 \u0633\u0627\u0631\u06cc \u0628\u0648\u062f", "m2" : "\u0628\u0627 \u0647\u0645\u0647 \u062f\u0631 \u063a\u0627\u06cc\u062a \u06cc\u0627\u0631\u06cc \u0628\u0648\u062f"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"backbone.collectionView.js": {"type": "string"}, "backbone.collectionView.min.js": {"type": "string"}}, "required": ["backbone.collectionView.js", "backbone.collectionView.min.js"], "$schema": "http://json-schema.or...
{"backbone.collectionView.js" : "sha512-KRQ01xkrYQQdzRavzolvWasrBYEAITn6iy3Z01BekxVRb8HNOjozaypeh/2w/+MoRnFHOu5KkresAAlYMaz1aQ==", "backbone.collectionView.min.js" : "sha512-KMTfekmjjzoqLxm+Tk8MEOr+E7/r6Uv/066EzrlLxVi0KtADHuU1iqhejC+qc2rbEw3HLyaFEkoapojnXjT3iA=="}
json_instruct
{"type": "object", "properties": {"backbone.collectionView.js": {"type": "string"}, "backbone.collectionView.min.js": {"type": "string"}}, "required": ["backbone.collectionView.js", "backbone.collectionView.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "pro...
{"name" : "imicros-groups", "version" : "0.1.2", "author" : "Andreas Leinen <andreas.leinen@imicros.de> (www.imicros.de)", "license" : "MIT", "description" : "Moleculer Service for Managing Usergroups", "main" : "index.js", "scripts" : {"test" : "jest --coverage --no-cache --config=travis.js --silent", "test-local" : "...
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-local": {"type": "string...
Based on the schema below, produce a valid JSON object: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["./fonts/google/anton/files/anton-latin-400-normal.woff", "./fonts/google/anton/files/anton-latin-ext-400-normal.woff", "./fonts/google/anton/files/anton-vietnamese-400-normal.woff", "./fonts/google/anton/files/anton-vietnamese-400-normal.woff2", "./fonts/google/anton/files/anton-all-400-normal.woff", "./fonts/google/...
json_instruct
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["type", "id"...
{"type" : "value", "id" : "3cb4254a-0a99-41b8-b6f4-b5dc6e13f7ff", "description" : "num_cpus / num_cpus_physical", "properties" : {"value" : "1"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "description": {"type": "string"}, "properties": {"type": "object", "properties": {"value": {"type": "string"}}, "required": ["value"]}}, "required": ["type", "id", "description", "properties"], "$schema": "http://json-schema.org/dr...
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "...
[{"label" : "Person", "normalizedVertices" : [{"x" : 0.61388236, "y" : 0.5105882}, {"x" : 0.84, "y" : 0.5105882}, {"x" : 0.84, "y" : 0.8237648}, {"x" : 0.61388236, "y" : 0.8237648}], "score" : 0.8821928}, {"label" : "Person", "normalizedVertices" : [{"x" : 0.10340178, "y" : 0.05323824}, {"x" : 0.34201, "y" : 0.05323824...
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"label": {"type": "string"}, "normalizedVertices": {"type": "array", "items": {"type": "object", "properties": {"x": {"type": "number"}, "y": {"type": "number"}}, "required": ["x", "y"]}}, "score": {"type": "number"}}, "required": ["label", "normalizedVertice...
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"profiles": {"type": "object", "properties": {"WinBM.PowerShell": {"type": "object", "properties": {"commandName": {"type": "string"}, "executablePath": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "...
{"profiles" : {"WinBM.PowerShell" : {"commandName" : "Executable", "executablePath" : "pwsh.exe", "commandLineArgs" : "-ExecutionPolicy Unrestricted -NoExit -Command \"Import-Module .\\WinBM.PowerShell.dll; Update-FormatData .\\WinBM.PowerShell.ps1xml\""}}}
json_instruct
{"type": "object", "properties": {"profiles": {"type": "object", "properties": {"WinBM.PowerShell": {"type": "object", "properties": {"commandName": {"type": "string"}, "executablePath": {"type": "string"}, "commandLineArgs": {"type": "string"}}, "required": ["commandName", "executablePath", "commandLineArgs"]}}, "requ...
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required"...
{"latest_version" : ["0.0.1"], "meta" : {"description" : "First-class Postgres feature support for the Django ORM", "homepage" : "UNKNOWN", "license" : "Public Domain"}, "versions" : {}}
json_instruct
{"type": "object", "properties": {"latest_version": {"type": "array", "items": {"type": "string"}}, "meta": {"type": "object", "properties": {"description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}}, "required": ["description", "homepage", "license"]}, "versions": {"type": "obje...
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://js...
{"id" : 19406, "cites" : 5, "cited_by" : 5, "reference" : ["Bettinger, Eric P., and Bridget T. Long. \u00c3\u00a2\u00e2\u0082\u00ac\u00c5\u0093Does Cheaper Mean Better? The Impact of Using Adjunct Instructors on Student Outcomes.\u00c3\u00a2\u00e2\u0082\u00ac\u00c2\u009d Review of Economics and Statistics 92, no. 3 (Au...
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "cites": {"type": "integer"}, "cited_by": {"type": "integer"}, "reference": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "cites", "cited_by", "reference"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "Wind...
{"Time" : "2021-03-13T11:00:00Z", "Temp" : 19, "RelHum" : 49, "WindSpeed" : 1.1, "WindDir" : 238}
json_instruct
{"type": "object", "properties": {"Time": {"type": "string"}, "Temp": {"type": "integer"}, "RelHum": {"type": "integer"}, "WindSpeed": {"type": "number"}, "WindDir": {"type": "integer"}}, "required": ["Time", "Temp", "RelHum", "WindSpeed", "WindDir"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "d0de8c239d45d184543b297829dc4ac60b10e8be"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"], "$schema": "http://json-schema.org/draft-07/schema#"}