input stringlengths 159 2.05k | output stringlengths 5 10.3k | task stringclasses 1
value | schema stringlengths 100 1.99k |
|---|---|---|---|
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state... | {"coverage" : {"US Census" : {"geoid" : "53045", "name" : "Mason County", "state" : "Washington"}, "country" : "us", "state" : "wa", "county" : "Mason"}, "license" : "http://www.co.mason.wa.us/gis/disclaimer.php", "type" : "ESRI", "compression" : "zip", "note" : "point shapefile Site_Address.shp, address columns: ADDRE... | json_instruct | {"type": "object", "properties": {"coverage": {"type": "object", "properties": {"US Census": {"type": "object", "properties": {"geoid": {"type": "string"}, "name": {"type": "string"}, "state": {"type": "string"}}, "required": ["geoid", "name", "state"]}, "country": {"type": "string"}, "state": {"type": "string"}, "coun... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "sourceMap": {... | {"compilerOptions" : {"module" : "commonjs", "target" : "es5", "declaration" : true, "rootDir" : "./src/my-date-picker", "outDir" : "./dist", "sourceMap" : true, "emitDecoratorMetadata" : true, "experimentalDecorators" : true, "moduleResolution" : "node", "removeComments" : true, "noImplicitAny" : true, "suppressImplic... | json_instruct | {"type": "object", "properties": {"compilerOptions": {"type": "object", "properties": {"module": {"type": "string"}, "target": {"type": "string"}, "declaration": {"type": "boolean"}, "rootDir": {"type": "string"}, "outDir": {"type": "string"}, "sourceMap": {"type": "boolean"}, "emitDecoratorMetadata": {"type": "boolean... |
Create an example JSON object that satisfies this schema:
{"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" : "Shidler", "state_name" : "Oklahoma", "state_abbrv" : "OK", "lat" : "36.7819", "long" : "-96.6607"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema... | [{"name" : "ARESU", "frequency" : 0, "gender" : "male"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "frequency": {"type": "integer"}, "gender": {"type": "string"}}, "required": ["name", "frequency", "gender"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}}, "required": ["sideEffects", "main", "module", "typings"], "$schema": "http://json-s... | {"sideEffects" : false, "main" : "../../cjs/viz/vector_map.js", "module" : "../../esm/viz/vector_map.js", "typings" : "../vector_map.d.ts"} | json_instruct | {"type": "object", "properties": {"sideEffects": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "typings": {"type": "string"}}, "required": ["sideEffects", "main", "module", "typings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this 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": "string"... | {"id" : 35053, "info" : {"name" : "MM Poznan Admin", "description" : "Zmiana stylu tabeli admina MM Pozna\u0144", "additionalInfo" : null, "format" : "uso", "category" : "mmpoznan", "createdAt" : "2010-07-29T09:35:12.000Z", "updatedAt" : "2013-01-24T02:18:39.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 58... | 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": "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engin... | {"name" : "demo-services", "version" : "1.0.0", "description" : "", "main" : "server.ts", "scripts" : {"start" : "nodemon"}, "engines" : {"node" : "10.4.1", "npm" : "6.1.0"}, "author" : "", "license" : "ISC", "devDependencies" : {"@types/express" : "^4.16.0", "@types/lodash" : "^4.14.149", "nodemon" : "^1.18.3"}, "depe... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "engines": {"type": "object", "properties": {"node": {"type": "st... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"ll": {"type": "array", "items": {"type": "string"}}, "uri": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["ll", "uri", "id", "title"], "$schema": "http://json-schema.org/d... | {"ll" : ["39.25", "35.75"], "uri" : "http://pleiades.stoa.org/places/628949", "id" : "628949", "title" : "Cappadocia"} | json_instruct | {"type": "object", "properties": {"ll": {"type": "array", "items": {"type": "string"}}, "uri": {"type": "string"}, "id": {"type": "string"}, "title": {"type": "string"}}, "required": ["ll", "uri", "id", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "sitemap_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": ... | {"index_name" : "goteleport", "start_urls" : ["https://goteleport.com/docs/"], "stop_urls" : [], "sitemap_urls" : ["https://goteleport.com/sitemap.xml"], "selectors" : {"lvl0" : {"selector" : "", "default_value" : "Documentation"}, "lvl1" : "#__next h1", "lvl2" : "#__next h2", "lvl3" : "#__next h3", "lvl4" : "#__next h... | json_instruct | {"type": "object", "properties": {"index_name": {"type": "string"}, "start_urls": {"type": "array", "items": {"type": "string"}}, "stop_urls": {"type": "array", "items": {}}, "sitemap_urls": {"type": "array", "items": {"type": "string"}}, "selectors": {"type": "object", "properties": {"lvl0": {"type": "object", "proper... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {}}, "children": {"type": "ar... | {"code" : 9104051012, "parent" : 9104051, "name" : "TIRASAI", "latitude" : null, "longitude" : null, "postal" : [], "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": {}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude",... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "... | {"name" : "12goTestTask", "description" : "All Different Directions", "authors" : [{"name" : "Evgeny Putseiko", "email" : "panikac@gmail.com"}], "require" : {}, "require-dev" : {"phpunit/phpunit" : "^5.0"}, "autoload" : {"psr-4" : {"App\\" : "app\\"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {}, "required": ... |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : "371329110001", "text" : "\u5357\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110002", "text" : "\u897f\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110003", "text" : "\u5317\u5e97\u5934\u5c45\u59d4\u4f1a"}, {"id" : "371329110004", "text" : "\u4e1c\u5e97\u5934\u56de\u65cf\u5c45\u59d4\u4f1a"}, {"id" : "37... | 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#"} |
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"}, "departments": {"type": "array", "items": {"type": "string"}}, "a... | {"title" : "Algorithms and matching lower bounds for approximately-convex optimization.", "fields" : ["convex function", "regular polygon", "conjecture", "existential quantification", "gradient descent"], "abstract" : "In recent years, a rapidly increasing number of applications in practice requires solving non-convex ... | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"typ... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"require": {"type": "object", "properties": {"saturn/hyperion": {"type": "string"}, "saturn/Session": {"type": "string"}, "saturn/image": {"type": "string"}}, "required": ["saturn/hyperion", "saturn/Session", "s... | {"require" : {"saturn/hyperion" : "^1.0", "saturn/Session" : "^1.0", "saturn/image" : "^1.0"}} | json_instruct | {"type": "object", "properties": {"require": {"type": "object", "properties": {"saturn/hyperion": {"type": "string"}, "saturn/Session": {"type": "string"}, "saturn/image": {"type": "string"}}, "required": ["saturn/hyperion", "saturn/Session", "saturn/image"]}}, "required": ["require"], "$schema": "http://json-schema.or... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url"... | {"authors" : [{"author" : "Shivesh Prakash"}, {"author" : "Shailesh Bihari"}, {"author" : "Ubbo Wiersema"}], "doi" : "10.1186/1471-2466-14-41", "publication_date" : "2014-03-13", "id" : "EN116074", "url" : "https://pubmed.ncbi.nlm.nih.gov/24612935", "source" : "BMC pulmonary medicine", "source_url" : "", "licence" : "C... | json_instruct | {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "object", "properties": {"author": {"type": "string"}}, "required": ["author"]}}, "doi": {"type": "string"}, "publication_date": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "source": {"type": "string"}, "source... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/sche... | [{"Similarity" : "0.987", "Title" : "Memory Retrieval Effects on Filler-Gap Procession", "Year" : 2007}, {"Similarity" : "0.979", "Title" : "The use of that in the Production and Comprehension of Object Relative Clauses", "Year" : 2003}, {"Similarity" : "0.976", "Title" : "Working Memory Constraints on Multiple Center-... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Similarity": {"type": "string"}, "Title": {"type": "string"}, "Year": {"type": "integer"}}, "required": ["Similarity", "Title", "Year"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "unmercied", "definition" : "Unmerciful; merciless. [Obs.] Drayton."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"category": {"type": "string"}, "comments": {"type": "null"}, "location": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["category", "comments", "location", "name", "url"], "... | {"category" : "Photography", "comments" : null, "location" : "Chicago & Destination", "name" : "OkBritknee Photography", "url" : "http://www.okbritknee.com"} | json_instruct | {"type": "object", "properties": {"category": {"type": "string"}, "comments": {"type": "null"}, "location": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["category", "comments", "location", "name", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "i... | {"acadYear" : "2019/2020", "description" : "Today's Japan is one of the most highly developed consumer markets. For its people shopping has presumably become the most important leisure and social activity and companies try to attract customers with continuous product and sales innovations. The module investigates this ... | json_instruct | {"type": "object", "properties": {"acadYear": {"type": "string"}, "description": {"type": "string"}, "title": {"type": "string"}, "department": {"type": "string"}, "faculty": {"type": "string"}, "workload": {"type": "array", "items": {"type": "integer"}}, "moduleCredit": {"type": "string"}, "moduleCode": {"type": "stri... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "re... | {"staves" : [{"lines" : [[[2001, 881], [2291, 881]]]}, {"lines" : [[[535, 1257], [2908, 1257]], [[535, 1297], [2908, 1297]], [[535, 1300], [2908, 1300]]]}, {"lines" : [[[862, 1674], [1154, 1674]]]}, {"lines" : [[[2170, 1881], [2461, 1881]]]}]} | json_instruct | {"type": "object", "properties": {"staves": {"type": "array", "items": {"type": "object", "properties": {"lines": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}}, "required": ["lines"]}}}, "required": ["staves"], "$schema": "http://json-schema.org/draft-07/schema... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string... | {"id" : 23, "university" : {"fullName" : "Fuzhou University", "shortName" : "Fuzhou U", "region" : "Asia", "hashTag" : "FuzhouU", "url" : "http://www.fzu.edu.cn", "myIcpcId" : "313615", "appearances" : 7, "wins" : 0, "gold" : 0, "silver" : 0, "bronze" : 0, "regionalChampionships" : 0}, "team" : {"name" : "_______", "re... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "university": {"type": "object", "properties": {"fullName": {"type": "string"}, "shortName": {"type": "string"}, "region": {"type": "string"}, "hashTag": {"type": "string"}, "url": {"type": "string"}, "myIcpcId": {"type": "string"}, "appearances": {"type": "i... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"resources": {"type": "object", "properties": {"virtualServers": {"type": "array", "items": {}}}, "required": ["virtualServers"]}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"resources" : {"virtualServers" : []}} | json_instruct | {"type": "object", "properties": {"resources": {"type": "object", "properties": {"virtualServers": {"type": "array", "items": {}}}, "required": ["virtualServers"]}}, "required": ["resources"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"sn56.74:0.1": {"type": "string"}, "sn56.74:0.2": {"type": "string"}, "sn56.74:0.3": {"type": "string"}, "sn56.74:1.1": {"type": "string"}}, "required": ["sn56.74:0.1", "sn56.74:0.2", "sn56.74:0.3", "sn56.74:1.1"],... | {"sn56.74:0.1" : "Linked Discourses 56 ", "sn56.74:0.2" : "8. Abbreviated Texts on Raw Grain ", "sn56.74:0.3" : "74. Lying ", "sn56.74:1.1" : "\u201c\u2026 the sentient beings who refrain from lying are few, while those who don\u2019t refrain are many. \u2026\u201d "} | json_instruct | {"type": "object", "properties": {"sn56.74:0.1": {"type": "string"}, "sn56.74:0.2": {"type": "string"}, "sn56.74:0.3": {"type": "string"}, "sn56.74:1.1": {"type": "string"}}, "required": ["sn56.74:0.1", "sn56.74:0.2", "sn56.74:0.3", "sn56.74:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HI... | {"MRRm_new" : 0.11440195830716257, "MRm_new" : 1113.7503098888396, "HITS@1m_new" : 0.06479297432745225, "HITS@3m_new" : 0.11670235202658805, "HITS@10m_new" : 0.21232253588938038} | json_instruct | {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.or... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "blockus:block/bamboo_stairs"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "s... | {"name" : "SDDatabase", "version" : "1.0.0", "summary" : "A simple yet powerful wrapper over the famous FMDB.", "homepage" : "https://github.com/SagarSDagdu/SDDatabase", "license" : {"type" : "MIT", "file" : "LICENSE"}, "authors" : {"Sagar Dagdu" : "shags032@gmail.com"}, "source" : {"git" : "https://github.com/SagarSDa... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"]}, "authors": {"type": "object", "... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"sikera": {"type": "object", "properties": {"luk.1.15|9": {"type": "array", "items": {"type": "string"}}}, "required": ["luk.1.15|9"]}}, "required": ["si... | {"pos" : "n", "translits" : {"sikera" : {"luk.1.15|9" : ["and", "strong drink", "no"]}}, "meanings" : {"strong" : 1}, "meaningsCount" : 1, "occurences" : 1} | json_instruct | {"type": "object", "properties": {"pos": {"type": "string"}, "translits": {"type": "object", "properties": {"sikera": {"type": "object", "properties": {"luk.1.15|9": {"type": "array", "items": {"type": "string"}}}, "required": ["luk.1.15|9"]}}, "required": ["sikera"]}, "meanings": {"type": "object", "properties": {"str... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": ... | {"id" : "18065729", "tms:id" : "85", "accession_number" : "1931-66-148", "title" : "Cameo", "url" : "http://collection.cooperhewitt.org/objects/18065729/", "department_id" : "35347497", "period_id" : null, "media_id" : "35389407", "type_id" : "35237143", "date" : null, "year_start" : null, "year_end" : null, "year_acqu... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "null"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "da... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "... | {"expireTime" : 9007200842677770000, "key" : "0c27162f-df53-535e-9f9e-297842602694{\"duotone\":false,\"grayscale\":false,\"rotate\":0,\"trim\":false,\"toFormat\":\"png\",\"toFormatBase64\":\"\",\"width\":20,\"height\":6}", "val" : {"src" : "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAGCAYAAADDl76dAAAACXBIWXMAA... | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "object", "properties": {"src": {"type": "string"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "aspectRatio": {"type": "number"}, "originalName": {"type": "string"}}, "required": ["src", "wi... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01003503": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}... | {"type" : "Topology", "objects" : {"E01003503" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00017684", "LAD11CD" : "E09000025"}, "arcs" : [[0, 1, 2, 3, 4]]}, {"type" : "Polygon", ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01003503": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "str... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isoCode": {"type": "string"}, "countryCode": {"type": "string"}, "cities": {"type": "null"}}, "required": ["name", "isoCode", "countryCode", "cities"]}, "$sche... | [{"name" : "Alberta", "isoCode" : "CA-AB", "countryCode" : "CA", "cities" : null}, {"name" : "British Columbia", "isoCode" : "CA-BC", "countryCode" : "CA", "cities" : null}, {"name" : "Manitoba", "isoCode" : "CA-MB", "countryCode" : "CA", "cities" : null}, {"name" : "New Brunswick", "isoCode" : "CA-NB", "countryCode" :... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isoCode": {"type": "string"}, "countryCode": {"type": "string"}, "cities": {"type": "null"}}, "required": ["name", "isoCode", "countryCode", "cities"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"company": {"type": "string"}, "inkname": {"type": "string"}, "dominant": {"type": "object", "properties": {"rgb": {"type": "object", "properties": {"r": {"type": "integer"}, "g": {"type": "integer"}, "b": {"type": "... | {"company" : "Noodler's Ink", "inkname" : "Saguaro Wine", "dominant" : {"rgb" : {"r" : 103, "g" : 0, "b" : 77}, "hsl" : {"\u03b1" : 0.3583333333333333, "\u03b2" : -0.37046642273000985, "H" : 5.481140638953821, "S" : 2.867073351236838, "L" : 0.2861111111111111, "C" : 1.640603084318857}}, "id" : "6a6ad2f3b8e610fd4737cc13... | json_instruct | {"type": "object", "properties": {"company": {"type": "string"}, "inkname": {"type": "string"}, "dominant": {"type": "object", "properties": {"rgb": {"type": "object", "properties": {"r": {"type": "integer"}, "g": {"type": "integer"}, "b": {"type": "integer"}}, "required": ["r", "g", "b"]}, "hsl": {"type": "object", "p... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"<page title>": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "supply ability": {"type": "string"}}, "re... | {"<page title>" : "Hot Sale!!!7inch Tft Monitor Cctv Sewer Pipe Inspection Camera With Dvr And Keyboard Tec-z710dk - Buy Sewer Pipe Inspection Camera,Cctv Pipe Inspection Camera,Inspection Camera With Dvr Product on Alibaba.com", "fob price" : "Get Latest Price", "minorder quantity" : "1 Set/Sets waterproof pipe inspec... | json_instruct | {"type": "object", "properties": {"<page title>": {"type": "string"}, "fob price": {"type": "string"}, "minorder quantity": {"type": "string"}, "payment terms": {"type": "string"}, "port": {"type": "string"}, "supply ability": {"type": "string"}}, "required": ["<page title>", "fob price", "minorder quantity", "payment ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type... | {"name" : "ODMSwipeSelector", "version" : "0.0.2", "summary" : "A value selector with a swipe gesture.", "homepage" : "https://github.com/oscart/ODMSwipeSelector", "screenshots" : "https://s3.amazonaws.com/f.cl.ly/items/3b2v2V2j0y2E2z1l3V3a/Screen%20Recording%202014-12-31%20at%2010.55%20AM.gif", "license" : {"type" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "summary": {"type": "string"}, "homepage": {"type": "string"}, "screenshots": {"type": "string"}, "license": {"type": "object", "properties": {"type": {"type": "string"}, "file": {"type": "string"}}, "required": ["type", "file"... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"},... | [{"appId" : "49470", "cpu" : "Intel(R) Xeon(R) CPU X5687 @ 3.60GHz", "gpu" : "GeForce GTX 960/PCIe/SSE2", "gpuDriver" : "4.6.0 NVIDIA 396.54", "kernel" : "4.15.0-33-generic", "notes" : "Everything worked with out any issues. Tested campaign and deck building.", "os" : "Ubuntu 18.04.1 LTS (64 bit)", "protonVe... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"appId": {"type": "string"}, "cpu": {"type": "string"}, "gpu": {"type": "string"}, "gpuDriver": {"type": "string"}, "kernel": {"type": "string"}, "notes": {"type": "string"}, "os": {"type": "string"}, "protonVersion": {"type": "string"}, "ram": {"type": "stri... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"Q5Y944": {"type": "string"}, "POLG_HAVCF": {"type": "string"}, "Genome polyprotein": {"type": "string"}}, "required": ["Q5Y944", "POLG_HAVCF", "Genome polyprotein"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Q5Y944" : "Q5Y944", "POLG_HAVCF" : "Q5Y944", "Genome polyprotein" : "Q5Y944"} | json_instruct | {"type": "object", "properties": {"Q5Y944": {"type": "string"}, "POLG_HAVCF": {"type": "string"}, "Genome polyprotein": {"type": "string"}}, "required": ["Q5Y944", "POLG_HAVCF", "Genome polyprotein"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"900758613": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900758614": {"type": "object", "properties":... | {"900758613" : {"nama" : "TPS 1", "dapil" : [8201, 18202, 2820702]}, "900758614" : {"nama" : "TPS 2", "dapil" : [8201, 18202, 2820702]}} | json_instruct | {"type": "object", "properties": {"900758613": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900758614": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "te... | {"source" : "http://www.spanishdict.com/conjugate/exorcizar", "word" : "exorcizar", "infinitivo" : "exorcizar", "gerundio" : ["exorcizando"], "participio" : ["exorcizado"], "tenses" : {"3" : [["exorcizo"], ["exorcizas"], ["exorciza"], ["exorcizamos"], ["exorciz\u00e1is"], ["exorcizan"]], "4" : [["exorcic\u00e9"], ["exo... | json_instruct | {"type": "object", "properties": {"source": {"type": "string"}, "word": {"type": "string"}, "infinitivo": {"type": "string"}, "gerundio": {"type": "array", "items": {"type": "string"}}, "participio": {"type": "array", "items": {"type": "string"}}, "tenses": {"type": "object", "properties": {"3": {"type": "array", "item... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"t... | {"\u5de5\u5ee0\u540d\u7a31" : "\u4e45\u8abc\u80a1\u4efd\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "99635792", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "07710006017317", "\u5de5\u5ee0\u5730\u5740" : "\u81fa\u4e2d\u5e02\u5916\u57d4\u5340\u9435\u5c71\u91cc\u9577\u751f\u8def806\u865f", ... | json_instruct | {"type": "object", "properties": {"\u5de5\u5ee0\u540d\u7a31": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f": {"type": "string"}, "\u5de5\u5ee0\u5730\u5740": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "st... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "st... | {"schema_version" : "1.2.0", "id" : "GHSA-8jxr-w97p-qwwv", "modified" : "2022-05-01T18:09:43Z", "published" : "2022-05-01T18:09:43Z", "aliases" : ["CVE-2007-3026"], "details" : "Integer overflow in Panda Software AdminSecure allows remote attackers to execute arbitrary code via crafted packets with modified length valu... | 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 sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"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/sche... | [{"id" : "5318010001", "district_id" : "5318010", "name" : "AEWOE"}, {"id" : "5318010002", "district_id" : "5318010", "name" : "BELA"}, {"id" : "5318010003", "district_id" : "5318010", "name" : "WOLOKISA"}, {"id" : "5318010004", "district_id" : "5318010", "name" : "WULIWALO"}, {"id" : "5318010005", "district_id" : "531... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": ... | {"description" : "cmd/gc: fix a typo", "cc" : ["golang-dev@googlegroups.com", "iant@golang.org"], "reviewers" : [], "messages" : [{"sender" : "cshapiro@golang.org", "recipients" : ["cshapiro@golang.org", "golang-dev@googlegroups.com", "reply@codereview-hr.appspotmail.com"], "text" : "Hello golang-dev@googlegroups.com,\... | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "cc": {"type": "array", "items": {"type": "string"}}, "reviewers": {"type": "array", "items": {}}, "messages": {"type": "array", "items": {"type": "object", "properties": {"sender": {"type": "string"}, "recipients": {"type": "array", "items": {"type":... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "medi... | {"published" : "2015-09-30T20:16:58Z", "media-type" : "Blog", "title" : "Open Post", "id" : "172d7435-86c4-4042-af14-90e204af64e3", "content" : "Open Post by DatzHott on September 30, 2015 in Hott Culture Leave a comment This is an open post, where you can discuss any subject matter. This post will not be censored or m... | json_instruct | {"type": "object", "properties": {"published": {"type": "string"}, "media-type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "content": {"type": "string"}, "source": {"type": "string"}}, "required": ["published", "media-type", "title", "id", "content", "source"], "$schema": "http://json-s... |
Create an example JSON object that satisfies this schema:
{"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": {"typ... | {"body" : "", "user" : "alexander-baumgarten", "url" : "https://api.github.com/repos/spack/spack/issues/19902", "updated_at" : "2020-11-13 20:14:38", "created_at" : "2020-11-13 19:32:20", "closed_at" : "2020-11-13 20:14:37", "state" : "closed", "title" : "Feature/r tximportdata", "number" : 19902, "milestone" : null, "... | 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": ... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"firstOctave": {"type": "integer"}, "amplitudes": {"type": "array", "items": {"type": "integer"}}}, "required": ["firstOctave", "amplitudes"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"firstOctave" : 0, "amplitudes" : [0, 0]} | json_instruct | {"type": "object", "properties": {"firstOctave": {"type": "integer"}, "amplitudes": {"type": "array", "items": {"type": "integer"}}}, "required": ["firstOctave", "amplitudes"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", ... | [{"id" : "2001", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Nawang"}, {"id" : "2002", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Nawang Baru"}, {"id" : "2003", "provinceId" : "65", "regencyId" : "02", "districtId" : "05", "name" : "Long Temuyat"}, {"id" : "... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"]}, "$schema": "http://json-schema.or... |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"... | [{"title" : "Hit It Again", "yearf" : 2011.1052511416, "rscore" : 1.0316553384}, {"title" : "Don't Trust Me", "yearf" : 2009.0915525114, "rscore" : 1.2581219586}, {"title" : "Dont Trust Me", "yearf" : 2008.9577625571, "rscore" : 1.2581219586}, {"title" : "Deja Vu", "yearf" : 2010.5520547945, "rscore" : 1.0593785471}, {... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"title": {"type": "string"}, "yearf": {"type": "number"}, "rscore": {"type": "number"}}, "required": ["title", "yearf", "rscore"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org... | {"locked" : false, "starred" : false, "name" : "boat", "command" : "print('https://youtu.be/COQR9A8D4XQ')"} | json_instruct | {"type": "object", "properties": {"locked": {"type": "boolean"}, "starred": {"type": "boolean"}, "name": {"type": "string"}, "command": {"type": "string"}}, "required": ["locked", "starred", "name", "command"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"t... | {"author" : {"id" : "t2_10bjw9", "name" : "sFAMINE"}, "date" : {"day" : 1615334400, "full" : 1615364388, "month" : 1614556800, "week" : 1615075200}, "id" : "t3_m1sswv", "picture" : {"filesize" : 160224, "fullUrl" : "https://preview.redd.it/415zqtd5u5m61.jpg?width=3024&format=pjpg&auto=webp&s=272dc788cdf66bd3307d7558132... | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}},... |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"movie_name": {"type": "string"}, "movie_rating": {"type": "number"}, "movie_links": {"type": "string"}, "movie_years": {"type": "integer"}, "movie_postion": {"type": "integer"}}, "required": ["movie_name", "movie_rating", "mov... | {"movie_name" : "Sholay", "movie_rating" : 8.1, "movie_links" : "https://www.imdb.com/title/tt0073707/", "movie_years" : 1975, "movie_postion" : 60} | json_instruct | {"type": "object", "properties": {"movie_name": {"type": "string"}, "movie_rating": {"type": "number"}, "movie_links": {"type": "string"}, "movie_years": {"type": "integer"}, "movie_postion": {"type": "integer"}}, "required": ["movie_name", "movie_rating", "movie_links", "movie_years", "movie_postion"], "$schema": "htt... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"public": {"type": "object", "properties": {"serverInstance": {"type": "integer"}, "node": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type... | {"public" : {"serverInstance" : 1, "node" : {"pollInterval" : 2000, "concurrency" : 10, "timeout" : 10000, "maxContainersPerJob" : 5, "repo" : "dockervhf/mononode"}, "v8" : {"pollInterval" : 2000, "concurrency" : 20, "timeout" : 10000, "repo" : "dockervhf/d8"}, "analyticsSettings" : {"Google Analytics" : {"trackingId" ... | json_instruct | {"type": "object", "properties": {"public": {"type": "object", "properties": {"serverInstance": {"type": "integer"}, "node": {"type": "object", "properties": {"pollInterval": {"type": "integer"}, "concurrency": {"type": "integer"}, "timeout": {"type": "integer"}, "maxContainersPerJob": {"type": "integer"}, "repo": {"ty... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"parent" : "embellishcraft:block/sandstone_large_bricks_slab"} | json_instruct | {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"ml.get_filters": {"type": "object", "properties": {"documentation": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "stability": {"type": "str... | {"ml.get_filters" : {"documentation" : {"url" : "https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-get-filter.html", "description" : "Retrieves filters."}, "stability" : "stable", "visibility" : "public", "headers" : {"accept" : ["application/json"]}, "url" : {"paths" : [{"path" : "/_ml/filters", "meth... | json_instruct | {"type": "object", "properties": {"ml.get_filters": {"type": "object", "properties": {"documentation": {"type": "object", "properties": {"url": {"type": "string"}, "description": {"type": "string"}}, "required": ["url", "description"]}, "stability": {"type": "string"}, "visibility": {"type": "string"}, "headers": {"typ... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ja332:0.1": {"type": "string"}, "ja332:0.2": {"type": "string"}, "ja332:0.3": {"type": "string"}, "ja332:0.4": {"type": "string"}, "ja332:1.1": {"type": "string"}, "ja332:1.2": {"type": "string"}, "ja332:1.3"... | {"ja332:0.1" : "J\u0101taka", "ja332:0.2" : "Catukkanip\u0101ta", "ja332:0.3" : "Kokilavagga", "ja332:0.4" : "2. Rathala\u1e6d\u1e6dhij\u0101taka", "ja332:1.1" : "\u201cApi hantv\u0101 hato br\u016bti,", "ja332:1.2" : "jetv\u0101 jitoti bh\u0101sati;", "ja332:1.3" : "Pubbamakkh\u0101yino r\u0101ja,", "ja332:1.4" : "a\u... | json_instruct | {"type": "object", "properties": {"ja332:0.1": {"type": "string"}, "ja332:0.2": {"type": "string"}, "ja332:0.3": {"type": "string"}, "ja332:0.4": {"type": "string"}, "ja332:1.1": {"type": "string"}, "ja332:1.2": {"type": "string"}, "ja332:1.3": {"type": "string"}, "ja332:1.4": {"type": "string"}, "ja332:2.1": {"type": ... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/... | [{"year" : 1968, "sex" : "F", "n" : 7, "prop" : 4.09e-06}, {"year" : 1969, "sex" : "F", "n" : 10, "prop" : 5.67e-06}, {"year" : 1970, "sex" : "F", "n" : 14, "prop" : 7.64e-06}, {"year" : 1972, "sex" : "F", "n" : 8, "prop" : 4.96e-06}, {"year" : 1973, "sex" : "F", "n" : 5, "prop" : 3.22e-06}, {"year" : 1974, "sex" : "F"... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"year": {"type": "integer"}, "sex": {"type": "string"}, "n": {"type": "integer"}, "prop": {"type": "number"}}, "required": ["year", "sex", "n", "prop"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "pretest": {"type": "string"}, "... | {"name" : "gilp-util", "description" : "Utils for gilp.", "version" : "0.0.11", "main" : "lib/index.js", "scripts" : {"lint" : "semistandard", "pretest" : "npm run lint --scripts-prepend-node-path", "test" : "jest", "coverage" : "jest --coverage && cat ./tests/coverage/lcov.info | coveralls"}, "repository" : {"type" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "pretest": {"type": "string"}, "test": {"type": "string"}, "coverage": {"type": "string"}},... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type... | {"id" : 39581190, "name" : "Subterror Nemesis Archer", "is_illegal" : false, "is_custom" : false, "text" : "At the start of the Damage Step, if this card attacks an opponent's face-down Defense Position monster, and you control another \"Subterror\" monster: You can shuffle that opponent's monster into the Deck. If thi... | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type":... |
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#"}
| [["(", "Never", "gon", "na", "give", "up", "on", "you", ")"], ["(", "just", "a", "little", "bit", ")", "c'mon", ")"], ["Keep", "on", "comin", "'", "4", "more"], ["It", "'s", "that", "brown", "man", "from", "long", "islandin", "'", "shores"], ["Got", "a", "way", "with", "women", ",", "so", "I", "get", "away", "with", "y... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": ... | {"name" : "scaife-cts-api", "env" : {}, "formation" : {"web" : {"quantity" : 1, "size" : "hobby"}}, "addons" : ["logdna:quaco"], "stack" : "container"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "env": {"type": "object", "properties": {}, "required": []}, "formation": {"type": "object", "properties": {"web": {"type": "object", "properties": {"quantity": {"type": "integer"}, "size": {"type": "string"}}, "required": ["quantity", "size"]}}, "required":... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"browse... | {"name" : "DMT_CSR_AN", "version" : "1.0.0", "private" : true, "scripts" : {}, "devDependencies" : {"browser-sync" : "^2.24.6", "gulp" : "^3.9.1", "gulp-ejs" : "^3.1.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"browser-sync": {"type": "string"}, "gulp": {"type": "string"}, "gulp-ejs": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"... | {"cam/image_array" : "7122_cam-image_array_.jpg", "user/angle" : 0.986, "user/throttle" : 0.696, "user/mode" : "user", "pos/pos_x" : 83.50198, "pos/pos_y" : 0.5532885, "pos/pos_z" : -4.097638, "pos/speed" : 10.58221, "pos/cte" : -0.9271564, "milliseconds" : 380084} | json_instruct | {"type": "object", "properties": {"cam/image_array": {"type": "string"}, "user/angle": {"type": "number"}, "user/throttle": {"type": "number"}, "user/mode": {"type": "string"}, "pos/pos_x": {"type": "number"}, "pos/pos_y": {"type": "number"}, "pos/pos_z": {"type": "number"}, "pos/speed": {"type": "number"}, "pos/cte": ... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "strin... | {"schema_version" : "1.2.0", "id" : "GHSA-3f52-g2gw-29vq", "modified" : "2022-05-02T00:09:42Z", "published" : "2022-05-02T00:09:42Z", "aliases" : ["CVE-2008-4397"], "details" : "Directory traversal vulnerability in the RPC interface (asdbapi.dll) in CA ARCserve Backup (formerly BrightStor ARCserve Backup) r11.1 through... | 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... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "array", "items": {"type": "string"}}, "asin": {"type": "string"}, "averageRating": {"type": "number"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category":... | {"accountLinkingWhitelistedDomains" : ["google.com", "googleapis.com"], "asin" : "B01NAK87B2", "averageRating" : 3.2, "canDisable" : true, "capabilities" : null, "category" : null, "description" : "Elderly people and others with difficulty using computers and tablets may prefer a voice interface to review email message... | json_instruct | {"type": "object", "properties": {"accountLinkingWhitelistedDomains": {"type": "array", "items": {"type": "string"}}, "asin": {"type": "string"}, "averageRating": {"type": "number"}, "canDisable": {"type": "boolean"}, "capabilities": {"type": "null"}, "category": {"type": "null"}, "description": {"type": "string"}, "en... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"900767431": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767432": {"type": "object", "properties": {"nam... | {"900767431" : {"nama" : "TPS 1", "dapil" : [9101, 19106, 2910203]}, "900767432" : {"nama" : "TPS 2", "dapil" : [9101, 19106, 2910203]}, "900767433" : {"nama" : "TPS 3", "dapil" : [9101, 19106, 2910203]}, "900767434" : {"nama" : "TPS 4", "dapil" : [9101, 19106, 2910203]}, "900767435" : {"nama" : "TPS 5", "dapil" : [910... | json_instruct | {"type": "object", "properties": {"900767431": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900767432": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": ... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "i... | [{"results" : [{"tech" : 7, "pts" : 2, "connections" : 170, "capacity" : 14884, "investments" : 121272}, {"tech" : 1, "pts" : 452, "connections" : 176151, "capacity" : 19664124, "investments" : 142782652}, {"tech" : 4, "pts" : 1090, "connections" : 48158, "capacity" : 6014115, "investments" : 16736479}, {"tech" : 3, "p... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"results": {"type": "array", "items": {"type": "object", "properties": {"tech": {"type": "integer"}, "pts": {"type": "integer"}, "connections": {"type": "integer"}, "capacity": {"type": "integer"}, "investments": {"type": "integer"}}, "required": ["tech", "pt... |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-sche... | {"word" : "Umbo", "definitions" : ["The central boss of a shield.", "A rounded knob or protuberance.", "The highest point of each valve of a bivalve shell.", "A central swelling on the cap of a mushroom or toadstool."], "parts-of-speech" : "Noun"} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definitions": {"type": "array", "items": {"type": "string"}}, "parts-of-speech": {"type": "string"}}, "required": ["word", "definitions", "parts-of-speech"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title":... | {"actors" : ["European Union", "Group of 77"], "countries" : ["Saudi Arabia", "Australia", "Samoa", "United States", "Switzerland", "China", "Russian Federation", "Japan", "New Zealand"], "enb_end_date" : "14-Jun-00", "enb_long_title" : "TWELFTH SESSION OF THE SUBSIDIARY BODIES OF THE UNFCCC", "enb_short_title" : "SB-1... | json_instruct | {"type": "object", "properties": {"actors": {"type": "array", "items": {"type": "string"}}, "countries": {"type": "array", "items": {"type": "string"}}, "enb_end_date": {"type": "string"}, "enb_long_title": {"type": "string"}, "enb_short_title": {"type": "string"}, "enb_start_date": {"type": "string"}, "enb_url": {"typ... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayNam... | {"Id" : 3314642243, "DisplayName" : "Dount", "Username" : "donut", "Level" : 1, "XP" : 0, "Developer" : false} | json_instruct | {"type": "object", "properties": {"Id": {"type": "integer"}, "DisplayName": {"type": "string"}, "Username": {"type": "string"}, "Level": {"type": "integer"}, "XP": {"type": "integer"}, "Developer": {"type": "boolean"}}, "required": ["Id", "DisplayName", "Username", "Level", "XP", "Developer"], "$schema": "http://json-s... |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integ... | {"nom" : "Maul\u00e9vrier-Sainte-Gertrude", "circ" : "5\u00e8me circonscription", "dpt" : "Seine-Maritime", "inscrits" : 791, "abs" : 436, "votants" : 355, "blancs" : 12, "nuls" : 4, "exp" : 339, "res" : [{"nuance" : "SOC", "nom" : "M. Christophe BOUILLON", "voix" : 259}, {"nuance" : "LR", "nom" : "M. Jean DELALANDRE",... | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array"... |
Create a JSON structure that matches this schema definition:
{"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" : "sonicparanoid", "downloads" : 9400, "count" : 5973}] | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description",... | {"name" : "Totsuka PS Bot", "description" : "Bot for Totsuka Poker School", "keywords" : ["totsuka", "go", "poker", "totsukaps"], "website" : "https://github.com/totsukapoker/totsuka-ps-bot", "repository" : "https://github.com/totsukapoker/totsuka-ps-bot"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "website": {"type": "string"}, "repository": {"type": "string"}}, "required": ["name", "description", "keywords", "website", "repository"], "$schema": "http://json... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["... | {"name" : "rgb", "version" : "0.0.1", "description" : "simple example for controlling the balenaFin RGB LED", "main" : "index.js", "scripts" : {"start" : "node index.js"}, "author" : "Carlo Maria Curinga <carlo@balena.io>", "license" : "Apache-2.0", "jshintConfig" : {"esversion" : 6, "strict" : true}, "dependencies" : ... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "jsh... |
The schema below describes a JSON structure. Generate a valid example:
{"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": "s... | {"vendor" : "zulu", "filename" : "zulu8.48.0.51-ca-jre8.0.262-win_i686.msi", "release_type" : "ga", "version" : "8.48.0.51", "java_version" : "8.0.262", "jvm_impl" : "hotspot", "os" : "windows", "architecture" : "i686", "file_type" : "msi", "image_type" : "jre", "features" : [], "url" : "https://static.azul.com/zulu/bi... | 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... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"deny": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["categories", "blocks"]}}, "required": ["... | {"deny" : {"categories" : ["Sound", "Pen (Experimental)", "Radio (Experimental)", "Control", "Math", "Text", "Lists", "Variables"], "blocks" : ["move_tank", "move_steering", "stop", "run_motor", "stop_motor", "speed", "position", "reset_motor", "color_sensor", "ultrasonic_sensor", "gyro_sensor", "reset_gyro", "gps_sens... | json_instruct | {"type": "object", "properties": {"deny": {"type": "object", "properties": {"categories": {"type": "array", "items": {"type": "string"}}, "blocks": {"type": "array", "items": {"type": "string"}}}, "required": ["categories", "blocks"]}}, "required": ["deny"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "ReactNativeTesting", "displayName" : "ReactNativeTesting"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "obj... | {"hash" : "0xb97ee532eec65c689f951a8424b90cec62c7cb0f4bad7e6fc5696c8797da2a50", "parentHash" : "0x73c059670877d809665454e94afc185973b162a4a9ca00711a4d902eb69f2dd0", "number" : 17501, "timestamp" : 1438448868, "nonce" : "0x435140aa68f79789", "difficulty" : 898857878273, "gasLimit" : {"_hex" : "0x1388"}, "gasUsed" : {"_h... | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"next_comment_id": {"type": "integer"}, "comment": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "post_id": {"type": "integer"}, "date_a... | {"next_comment_id" : 2, "comment" : [{"comment_id" : 1, "body" : "Top middle is great.", "post_id" : 56, "date_added" : 1443765698}], "comment_vote" : {}, "post_vote" : {"102" : 1}} | json_instruct | {"type": "object", "properties": {"next_comment_id": {"type": "integer"}, "comment": {"type": "array", "items": {"type": "object", "properties": {"comment_id": {"type": "integer"}, "body": {"type": "string"}, "post_id": {"type": "integer"}, "date_added": {"type": "integer"}}, "required": ["comment_id", "body", "post_id... |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "1116051004", "district_id" : "1116051", "name" : "PAJAR"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Name" : "Violette Schl\u00fcsselkarte des Labors", "ShortName" : "Violette Schl.Karte", "Description" : "Schl\u00fcsselkarte"} | json_instruct | {"type": "object", "properties": {"Name": {"type": "string"}, "ShortName": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "ShortName", "Description"], "$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"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "com... | {"name" : "toggl-got", "version" : "0.1.0", "description" : "Convenience wrapper for `got` to interact with the Toggl API", "main" : "index.js", "scripts" : {"lint" : "eslint source.js", "test" : "babel-node node_modules/.bin/babel-istanbul cover _mocha && codecov", "compile" : "babel --presets es2015 --plugins add-mod... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"lint": {"type": "string"}, "test": {"type": "string"}, "compile": {"type": "string"}, "prepublish": {"type": "string"}... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"webtorrent.min.js": {"type": "string"}}, "required": ["webtorrent.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"webtorrent.min.js" : "sha256-OchFXVL9lIt1BFZLi6mO4Suq3fslXxzwsMFGIG3eVao="} | json_instruct | {"type": "object", "properties": {"webtorrent.min.js": {"type": "string"}}, "required": ["webtorrent.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "null"}, "multiValueHeaders": {"type": "null"}, "queryStringParameters": {"type": "null"}, "multiValueQueryString... | {"resource" : "/nja-yourame-lambda", "path" : "/nja-yourame-lambda", "httpMethod" : "POST", "headers" : null, "multiValueHeaders" : null, "queryStringParameters" : null, "multiValueQueryStringParameters" : null, "pathParameters" : null, "stageVariables" : null, "requestContext" : {"resourceId" : "fproz2"}, "body" : "{\... | json_instruct | {"type": "object", "properties": {"resource": {"type": "string"}, "path": {"type": "string"}, "httpMethod": {"type": "string"}, "headers": {"type": "null"}, "multiValueHeaders": {"type": "null"}, "queryStringParameters": {"type": "null"}, "multiValueQueryStringParameters": {"type": "null"}, "pathParameters": {"type": "... |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "test": {"type": ... | {"name" : "skipper", "version" : "1.0.0", "description" : "", "scripts" : {"watch" : "webpack --watch --config webpack.dev.js", "build" : "webpack --config webpack.prod.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : [], "author" : "", "license" : "MIT", "devDependencies" : {"@babel/core" : "... | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"watch": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["watch", "build", "test"]}, "keywords": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type... | [{"province" : "\u5185\u8499\u53e4\u81ea\u6cbb\u533a", "city" : "\u547c\u4f26\u8d1d\u5c14\u5e02", "area" : "\u65b0\u5df4\u5c14\u864e\u5de6\u65d7", "name" : "\u65b0\u5df4\u5c14\u864e\u5de6\u65d7\u8bfa\u4eec\u7f55\u5e03\u65e5\u5fb7\u90ae\u653f\u4ee3\u529e\u6240", "code" : "021216", "address" : "\u65b0\u5de6\u65d7\u8bfa\u... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"province": {"type": "string"}, "city": {"type": "string"}, "area": {"type": "string"}, "name": {"type": "string"}, "code": {"type": "string"}, "address": {"type": "string"}, "phone": {"type": "string"}}, "required": ["province", "city", "area", "name", "code... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "... | {"_id" : "beer_Black_Orchard", "brewery" : "The Bruery", "name" : "Black Orchard", "abv" : "5.7", "description" : "Black Orchard is an unfiltered, bottle conditioned Belgian-style black wheat beer, or \u00e2\u0080\u009cblack wit\u00e2\u0080\u009d, if you will. This dark but surprisingly light bodied beer is very drinka... | json_instruct | {"type": "object", "properties": {"_id": {"type": "string"}, "brewery": {"type": "string"}, "name": {"type": "string"}, "abv": {"type": "string"}, "description": {"type": "string"}, "updated": {"type": "string"}}, "required": ["_id", "brewery", "name", "abv", "description", "updated"], "$schema": "http://json-schema.or... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["370829108200", "\u9a6c\u96c6\u6751\u59d4\u4f1a", "121", "0"], ["370829108201", "\u4e91\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["370829108202", "\u9619\u91cc\u6751\u59d4\u4f1a", "122", "0"], ["370829108203", "\u78e8\u5c71\u6751\u59d4\u4f1a", "122", "0"], ["370829108204", "\u4efb\u5c71\u6751\u59d4\u4f1a", "220", "0"],... | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "... | {"versionEnd" : {"versionNum" : 763, "commit" : "889fe1de67eaa7513d3d2272b1a7eef53fd81c88", "date" : "2021-04-24T10:45:13.679Z"}, "versionStart" : {"versionNum" : 762, "commit" : "bf73f73d7042e081843639ec1c1625d28eb13d03", "date" : "2021-04-24T10:43:59.921Z"}, "changes" : ["blockchains/smartchain/allowlist.json", "bloc... | json_instruct | {"type": "object", "properties": {"versionEnd": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"type": "string"}, "date": {"type": "string"}}, "required": ["versionNum", "commit", "date"]}, "versionStart": {"type": "object", "properties": {"versionNum": {"type": "integer"}, "commit": {"... |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "is... | [{"divisionCode" : 411425100, "post" : "476300", "divisionName" : "\u57ce\u5173\u9547", "isLeaf" : 1}, {"divisionCode" : 411425101, "post" : "476300", "divisionName" : "\u754c\u6c9f\u9547", "isLeaf" : 1}, {"divisionCode" : 411425102, "post" : "476300", "divisionName" : "\u8425\u90ed\u9547", "isLeaf" : 1}, {"divisionCod... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"divisionCode": {"type": "integer"}, "post": {"type": "string"}, "divisionName": {"type": "string"}, "isLeaf": {"type": "integer"}}, "required": ["divisionCode", "post", "divisionName", "isLeaf"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs... | {"artist_id" : "ARG5GH71187FB4C030", "artist_latitude" : null, "artist_location" : "", "artist_longitude" : null, "artist_name" : "Matt Mays", "duration" : 247.66649, "num_songs" : 1, "song_id" : "SOMAQHE12AB0180A64", "title" : "Under My Senses", "year" : 2006} | json_instruct | {"type": "object", "properties": {"artist_id": {"type": "string"}, "artist_latitude": {"type": "null"}, "artist_location": {"type": "string"}, "artist_longitude": {"type": "null"}, "artist_name": {"type": "string"}, "duration": {"type": "number"}, "num_songs": {"type": "integer"}, "song_id": {"type": "string"}, "title"... |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"database": {"type": "string"}, "resource": {"type": "string"}, "old-revision": {"type": "integer"}, "new-revision": {"type": "integer"}, "diffs": {"type": "array", "items": {"type": "object", "properties": {"... | {"database" : "json-path1", "resource" : "shredded", "old-revision" : 1, "new-revision" : 3, "diffs" : [{"insert" : {"nodeKey" : 26, "insertPositionNodeKey" : 15, "insertPosition" : "asRightSibling", "deweyID" : "1.3.11", "depth" : 2, "type" : "jsonFragment", "data" : "{\"hereIAm\":\"yeah\"}"}}, {"insert" : {"nodeKey" ... | json_instruct | {"type": "object", "properties": {"database": {"type": "string"}, "resource": {"type": "string"}, "old-revision": {"type": "integer"}, "new-revision": {"type": "integer"}, "diffs": {"type": "array", "items": {"type": "object", "properties": {"insert": {"type": "object", "properties": {"nodeKey": {"type": "integer"}, "i... |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"text" : " Graph the system of four linear inequalities in two different ways and shade\n\n\\begin{array}{l}\\nx+y<5 \\\\\\nx+y>-5 \\\\\\nx-y<4 \\\\\\nx-y>-2\\n\\end{array}[imath]x+y<5 [/imath] [imath]x+y>-5 [/imath] [imath]x-y<4 [/imath] [imath]x-y>-2[/imath] \n\n\n", "url" : "https://www.youtube.com/watch?v=Bix-l6Y9... | json_instruct | {"type": "object", "properties": {"text": {"type": "string"}, "url": {"type": "string"}}, "required": ["text", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "sinnoh_bdsp": {"type": "integer"}, "hisui_legarc": {"type": "integer"}}, "required": ["national", "sinnoh_bdsp", "hisui_legarc"]}, "name": {"type": "obje... | {"id" : {"national" : 483, "sinnoh_bdsp" : 149, "hisui_legarc" : 235}, "name" : {"en" : "Dialga", "jp" : "\u30c7\u30a3\u30a2\u30eb\u30ac", "chs" : "", "cht" : ""}, "baby" : false, "default" : {"desc" : "Temporal Pok\u00e9mon", "type_id" : [15, 0], "type" : ["steel", "dragon"], "abilities" : {"ability_1" : "Pressure", "... | json_instruct | {"type": "object", "properties": {"id": {"type": "object", "properties": {"national": {"type": "integer"}, "sinnoh_bdsp": {"type": "integer"}, "hisui_legarc": {"type": "integer"}}, "required": ["national", "sinnoh_bdsp", "hisui_legarc"]}, "name": {"type": "object", "properties": {"en": {"type": "string"}, "jp": {"type"... |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"summary_path": {"type": "string"}, "csv_folder": {"type": "string"}, "cp_folder": {"type": "string"}, "props": {"type": "array", "items": {"type": "string"}}, "split_sizes": {"type": "array", "items": {"type": "numbe... | {"summary_path" : "/home/gridsan/saxelrod/models/full_dset/rdkit_folder/summary_drugs.json", "csv_folder" : "/home/gridsan/saxelrod/synthetic", "cp_folder" : "/home/gridsan/saxelrod/repo/chemprop/chemprop", "props" : ["ensemblefreeenergy", "ensembleenergy", "log_uniqueconfs"], "split_sizes" : [0.6, 0.2, 0.2], "split_ty... | json_instruct | {"type": "object", "properties": {"summary_path": {"type": "string"}, "csv_folder": {"type": "string"}, "cp_folder": {"type": "string"}, "props": {"type": "array", "items": {"type": "string"}}, "split_sizes": {"type": "array", "items": {"type": "number"}}, "split_type": {"type": "string"}, "max_specs": {"type": "intege... |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "... | {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Rizal, Oton, Iloilo, Western Visayas (Region VI), PH", "locale" : "ph.western-visayas-region-vi.iloilo.oton.rizal", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "16", "region_reference" : ... | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {... |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"rx-player.js": {"type": "string"}, "rx-player.min.js": {"type": "string"}}, "required": ["rx-player.js", "rx-player.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rx-player.js" : "sha512-Ym72Xts4Tp+X9FSQ1XCeExzxpBw1AGoDPnYeUFTDSzZg5l4WiAq4Z6r9TMq5RCLTIqYOy8yI3B1VsPVfXS14Cw==", "rx-player.min.js" : "sha512-9gU0RZaQenxhU3i41aQJMlWlPbFHTpQdgSSHeCrv9/DFwsEls12f7WzrrDb9A9TZwg1eRHQI/WqlWWcKIA8FRg=="} | json_instruct | {"type": "object", "properties": {"rx-player.js": {"type": "string"}, "rx-player.min.js": {"type": "string"}}, "required": ["rx-player.js", "rx-player.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draf... | {"id" : "http://data.doremus.org/performance/5a234087-2c1e-37c0-950a-1cf981891b13", "expression" : [{"id" : "http://data.doremus.org/expression/ed779db1-0f72-35a1-bb66-015c85c64fa8"}, {"id" : "http://data.doremus.org/expression/4c56d1da-9b72-3763-a112-f8d796f37dde"}, {"id" : "http://data.doremus.org/expression/e0b931e4... | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "expression": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}}, "required": ["id"]}}}, "required": ["id", "expression"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "item... | [{"Name" : "urgent11_check.rb", "Title" : "URGENT/11 Scanner, Based on Detection Tool by Armis", "Description" : "This module detects VxWorks and the IPnet IP stack, along with devices vulnerable to CVE-2019-12258.", "CveIDs" : ["CVE-2019-12258"], "References" : ["https://armis.com/urgent11", "https://github.com/ArmisS... | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Name": {"type": "string"}, "Title": {"type": "string"}, "Description": {"type": "string"}, "CveIDs": {"type": "array", "items": {"type": "string"}}, "References": {"type": "array", "items": {"type": "string"}}}, "required": ["Name", "Title", "Description", "... |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "object", "pro... | {"homepage" : "https://github.com/Nuke928/NTop", "version" : "0.3.4", "license" : "GPL-3.0", "url" : "https://github.com/Nuke928/NTop/releases/download/v0.3.4/ntop.exe", "hash" : "67aadf4b033de1acaee2d84be4a296c14baa8288706e116435221733e93f9f50", "bin" : "ntop.exe", "checkver" : {"url" : "https://github.com/Nuke928/NTo... | json_instruct | {"type": "object", "properties": {"homepage": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "bin": {"type": "string"}, "checkver": {"type": "object", "properties": {"url": {"type": "string"}, "re": {"type": "string"}}, "required"... |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft... | [{"code" : "333287", "long" : {"default" : "\u514b\u4f26"}}, {"code" : "343300", "long" : {"default" : "\u963f\u65af\u99ac\u62c9"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}, "long": {"type": "object", "properties": {"default": {"type": "string"}}, "required": ["default"]}}, "required": ["code", "long"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array",... | {"blurb" : "Make sure the brackets and braces all match.", "authors" : ["jitwit"], "files" : {"solution" : ["matching-brackets.scm"], "test" : ["test.scm"], "example" : [".meta/example.scm"]}, "source" : "Ginna Baker"} | json_instruct | {"type": "object", "properties": {"blurb": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "files": {"type": "object", "properties": {"solution": {"type": "array", "items": {"type": "string"}}, "test": {"type": "array", "items": {"type": "string"}}, "example": {"type": "array", "items": {... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.