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": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "popularity_score": {"type": "integer"}, "phash": {"type": "string"}, "duplicated_images": {"type": "array", "items": {}}, "duplicated_posts": {"type": "array", "items": {}}, "labels": {"type": "array", "items": {"type": "string"}}, "remarks": {"type": "string"}}, "required": ["id", "post_id", "image_name", "image_path", "thumbnail_path", "datetime", "url", "title", "author", "popularity_score", "phash", "duplicated_images", "duplicated_posts", "labels", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d6jl8z", "post_id" : "reddit/dataisugly/d6jl8z", "image_name" : "d6jl8z_0", "image_path" : "preview/d6jl8z_0.jpg", "thumbnail_path" : "thumbnail/d6jl8z_0.jpg", "datetime" : 1568923932.0, "url" : "https://reddit.com/r/dataisugly/comments/d6jl8z/if_only_there_was_some_way_to_show_yesno_at_the/", "title" : "If only there was some way to show yes/no at the same time", "author" : "PM_me_your_biz_ideas", "popularity_score" : 828, "phash" : "aa3cfdc2d423d50c", "duplicated_images" : [], "duplicated_posts" : [], "labels" : ["data:categorical", "data:percentage", "domain:personal", "effect:confuesed", "fault:colorcorrelation", "form:donutchart", "layout:juxtaposition"], "remarks" : "Why two donuts? And green on the left represents \"Yes\" while the same green on the right represents \"No\"."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "post_id": {"type": "string"}, "image_name": {"type": "string"}, "image_path": {"type": "string"}, "thumbnail_path": {"type": "string"}, "datetime": {"type": "number"}, "url": {"type": "string"}, "title": {"type": "string"}, "author": {"type": "string"}, "popularity_score": {"type": "integer"}, "phash": {"type": "string"}, "duplicated_images": {"type": "array", "items": {}}, "duplicated_posts": {"type": "array", "items": {}}, "labels": {"type": "array", "items": {"type": "string"}}, "remarks": {"type": "string"}}, "required": ["id", "post_id", "image_name", "image_path", "thumbnail_path", "datetime", "url", "title", "author", "popularity_score", "phash", "duplicated_images", "duplicated_posts", "labels", "remarks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "spamremove-remove": {"type": "string"}}, "required": ["@metadata", "spamremove-remove"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"@metadata" : {"authors" : ["Imperadeiro98"]}, "spamremove-remove" : "A remover liga\u00e7\u00f5es para o s\u00edtio de spam %(url)s"} | json_instruct | {"type": "object", "properties": {"@metadata": {"type": "object", "properties": {"authors": {"type": "array", "items": {"type": "string"}}}, "required": ["authors"]}, "spamremove-remove": {"type": "string"}}, "required": ["@metadata", "spamremove-remove"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"help": {"type": "string"}, "success": {"type": "boolean"}, "result": {"type": "object", "properties": {"resource_id": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "id"]}}, "q": {"type": "string"}, "records": {"type": "array", "items": {}}, "_links": {"type": "object", "properties": {"start": {"type": "string"}, "next": {"type": "string"}}, "required": ["start", "next"]}}, "required": ["resource_id", "fields", "q", "records", "_links"]}}, "required": ["help", "success", "result"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"help" : "https://data.gov.sg/api/3/action/help_show?name=datastore_search", "success" : true, "result" : {"resource_id" : "ded0f905-e749-4cf6-a1c3-b6a826b06bc2", "fields" : [{"type" : "int4", "id" : "_id"}, {"type" : "numeric", "id" : "year"}, {"type" : "text", "id" : "title"}, {"type" : "text", "id" : "romanised_title"}, {"type" : "text", "id" : "aka"}, {"type" : "text", "id" : "publishers"}, {"type" : "numeric", "id" : "year_release"}, {"type" : "text", "id" : "region"}, {"type" : "text", "id" : "platform"}, {"type" : "text", "id" : "rating"}, {"type" : "text", "id" : "consumer_advice"}, {"type" : "text", "id" : "more_info"}, {"type" : "int8", "id" : "_full_count"}, {"type" : "float4", "id" : "rank"}], "q" : "jones", "records" : [], "_links" : {"start" : "/api/action/datastore_search?q=jones&resource_id=ded0f905-e749-4cf6-a1c3-b6a826b06bc2", "next" : "/api/action/datastore_search?q=jones&offset=100&resource_id=ded0f905-e749-4cf6-a1c3-b6a826b06bc2"}}} | json_instruct | {"type": "object", "properties": {"help": {"type": "string"}, "success": {"type": "boolean"}, "result": {"type": "object", "properties": {"resource_id": {"type": "string"}, "fields": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}}, "required": ["type", "id"]}}, "q": {"type": "string"}, "records": {"type": "array", "items": {}}, "_links": {"type": "object", "properties": {"start": {"type": "string"}, "next": {"type": "string"}}, "required": ["start", "next"]}}, "required": ["resource_id", "fields", "q", "records", "_links"]}}, "required": ["help", "success", "result"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"authors" : [{"author" : "John McFarlane"}, {"author" : "Ravi Trehan"}, {"author" : "Miguel Olivera"}, {"author" : "Carl Jones"}, {"author" : "Simon Blease"}, {"author" : "Paul Davey"}], "doi" : "10.1186/1752-1947-2-122", "publication_date" : "2008-04-29", "id" : "EN119099", "url" : "https://pubmed.ncbi.nlm.nih.gov/18439267", "source" : "Journal of medical case reports", "source_url" : "", "licence" : "CC BY", "language" : "en", "type" : "pubmed", "description" : "", "text" : "A 45-year-old woman presented with a 4-month history of a painful lump in the anterior aspect of her left elbow associated with altered sensation in the dorsoradial aspect of her left hand. There was no history of trauma or any exacerbating factors. On examination the altered sensation was in the superficial radial nerve distribution and she had a positive Tinel's sign over the site of the swelling which was located over the anterior aspect of the radiocapitellar joint."} | 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_url": {"type": "string"}, "licence": {"type": "string"}, "language": {"type": "string"}, "type": {"type": "string"}, "description": {"type": "string"}, "text": {"type": "string"}}, "required": ["authors", "doi", "publication_date", "id", "url", "source", "source_url", "licence", "language", "type", "description", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 9247, "citation_title" : "An Economic Analysis of Adult Obesity: Results from the Behavioral Risk Factor Surveillance System", "citation_author" : ["Shin-Yi Chou", "Michael Grossman", "Henry Saffer"], "citation_publication_date" : "2002-10-03", "issue_date" : "2002-10-03", "revision_date" : "None", "topics" : ["Health, Education, and Welfare", "Health"], "program" : ["Health Economics"], "projects" : null, "working_groups" : null, "abstract" : "\n\nSince the late 1970s, the number of obese adults in the United States has grown by over 50 percent. This paper examines the factors that may be responsible for this rapidly increasing prevalence rate. To study the determinants of adult obesity and related outcomes, we employ micro-level data from the 1984-1999 Behavioral Risk Factor Surveillance System. These repeated cross sections are augmented with state level measures pertaining to the per capita number of fast- food restaurants, the per capita number of full-service restaurants, the price of a meal in each type of restaurant, the price of food consumed at home, the price of cigarettes, clean indoor air laws, and hours of work per week and hourly wage rates by age, gender, race, years of formal schooling completed, and marital status. Our main results are that these variables have the expected effects on obesity and explain a substantial amount of its trend. These findings control for individual-level measures of household income, years of formal schooling completed, and marital status.\n\n", "acknowledgement" : "\n"} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "citation_title": {"type": "string"}, "citation_author": {"type": "array", "items": {"type": "string"}}, "citation_publication_date": {"type": "string"}, "issue_date": {"type": "string"}, "revision_date": {"type": "string"}, "topics": {"type": "array", "items": {"type": "string"}}, "program": {"type": "array", "items": {"type": "string"}}, "projects": {"type": "null"}, "working_groups": {"type": "null"}, "abstract": {"type": "string"}, "acknowledgement": {"type": "string"}}, "required": ["id", "citation_title", "citation_author", "citation_publication_date", "issue_date", "revision_date", "topics", "program", "projects", "working_groups", "abstract", "acknowledgement"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"userId" : 96438, "cartId" : "dd8cd5c3-a58d-4ba9-a2bf-bd7af2ac3a6c", "preferredProducts" : [4923, 3409, 2301, 3002, 100, 4357], "productReviews" : []} | json_instruct | {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"order": {"type": "integer"}, "index_patterns": {"type": "array", "items": {"type": "string"}}, "version": {"type": "integer"}, "mappings": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"host": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"ignore_above": {"type": "integer"}, "type": {"type": "string"}}, "required": ["ignore_above", "type"]}, "host": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "hostname": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "ip": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "port": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"ignore_above": {"type": "integer"}, "type": {"type": "string"}}, "required": ["ignore_above", "type"]}}, "required": ["architecture", "host", "hostname", "ip", "port", "type"]}}, "required": ["properties"]}}, "required": ["host"]}}, "required": ["properties"]}}, "required": ["order", "index_patterns", "version", "mappings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"order" : 20, "index_patterns" : ["ecs-*"], "version" : 2019070301, "mappings" : {"properties" : {"host" : {"properties" : {"architecture" : {"ignore_above" : 1024, "type" : "keyword"}, "host" : {"copy_to" : "related.domain", "type" : "keyword"}, "hostname" : {"copy_to" : "related.domain", "type" : "keyword"}, "ip" : {"copy_to" : "related.ip", "type" : "ip"}, "port" : {"type" : "long"}, "type" : {"ignore_above" : 1024, "type" : "keyword"}}}}}} | json_instruct | {"type": "object", "properties": {"order": {"type": "integer"}, "index_patterns": {"type": "array", "items": {"type": "string"}}, "version": {"type": "integer"}, "mappings": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"host": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"architecture": {"type": "object", "properties": {"ignore_above": {"type": "integer"}, "type": {"type": "string"}}, "required": ["ignore_above", "type"]}, "host": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "hostname": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "ip": {"type": "object", "properties": {"copy_to": {"type": "string"}, "type": {"type": "string"}}, "required": ["copy_to", "type"]}, "port": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "type": {"type": "object", "properties": {"ignore_above": {"type": "integer"}, "type": {"type": "string"}}, "required": ["ignore_above", "type"]}}, "required": ["architecture", "host", "hostname", "ip", "port", "type"]}}, "required": ["properties"]}}, "required": ["host"]}}, "required": ["properties"]}}, "required": ["order", "index_patterns", "version", "mappings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"cycle.js": {"type": "string"}, "cycle.min.js": {"type": "string"}}, "required": ["cycle.js", "cycle.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"cycle.js" : "sha512-mC/fm7d4qXVXQUCLx5UvdnYhsT8Sjk+MhadAEMKl1kg2oNXzJZtlzc4ZtQA0v5Sn5Zr2HIEPMsFJswWWlO9t1Q==", "cycle.min.js" : "sha512-E/lbRcoi8FZi/lfpwjChLxEHsW6bToKO8iuZ5Mja6J3PCJahRFNhoRPcXSnpjOXmBPK26xJ8l7IKmigCtQ0kdw=="} | json_instruct | {"type": "object", "properties": {"cycle.js": {"type": "string"}, "cycle.min.js": {"type": "string"}}, "required": ["cycle.js", "cycle.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"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" : "altar", "sample1" : "1Bya3hkc9XZL--v0nB90nCj5hQDdERL2_", "sample2" : "1M8o5q3wTSiPioD66d2B36ZQCGlhE-Dak", "sample3" : "1hWNb-pUIIYJpMesIiOSoJWEZsyp2Nmzi"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"1547437804344": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "1547437806215": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437806217": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437806240": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437808556": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["1547437804344", "1547437806215", "1547437806217", "1547437806240", "1547437808556"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"1547437804344" : {"type" : "book open", "bookName" : "Epic%20Quest", "subjectName" : "school", "fName" : "users/MS0vYW5kcm9pZF9hc3NldC93d3cvc2Nob29sL0VwaWMlMjBRdWVzdC92YXJpYWJsZS1FUV9UNV9OdW1iRHJ1bXNfdjItRVFfVDVfTnVtYkRydW1zLmh0bWwtYW5hbHl0aWNzLTE1NDc0Mzc4MDQyNDU=.json"}, "1547437806215" : {"type" : "st"}, "1547437806217" : {"type" : "ss"}, "1547437806240" : {"type" : "sf"}, "1547437808556" : {"type" : "bc"}} | json_instruct | {"type": "object", "properties": {"1547437804344": {"type": "object", "properties": {"type": {"type": "string"}, "bookName": {"type": "string"}, "subjectName": {"type": "string"}, "fName": {"type": "string"}}, "required": ["type", "bookName", "subjectName", "fName"]}, "1547437806215": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437806217": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437806240": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "1547437808556": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["1547437804344", "1547437806215", "1547437806217", "1547437806240", "1547437808556"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.a1e32a19.chunk.js": {"type": "string"}, "static/js/2.a1e32a19.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/js/2.a1e32a19.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.a1e32a19.chunk.js", "static/js/2.a1e32a19.chunk.js.map", "index.html", "static/js/2.a1e32a19.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"files" : {"main.js" : "/static/js/main.d769bdeb.chunk.js", "main.js.map" : "/static/js/main.d769bdeb.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.2429eb54.js", "runtime-main.js.map" : "/static/js/runtime-main.2429eb54.js.map", "static/js/2.a1e32a19.chunk.js" : "/static/js/2.a1e32a19.chunk.js", "static/js/2.a1e32a19.chunk.js.map" : "/static/js/2.a1e32a19.chunk.js.map", "index.html" : "/index.html", "static/js/2.a1e32a19.chunk.js.LICENSE.txt" : "/static/js/2.a1e32a19.chunk.js.LICENSE.txt"}, "entrypoints" : ["static/js/runtime-main.2429eb54.js", "static/js/2.a1e32a19.chunk.js", "static/js/main.d769bdeb.chunk.js"]} | json_instruct | {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/js/2.a1e32a19.chunk.js": {"type": "string"}, "static/js/2.a1e32a19.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/js/2.a1e32a19.chunk.js.LICENSE.txt": {"type": "string"}}, "required": ["main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/js/2.a1e32a19.chunk.js", "static/js/2.a1e32a19.chunk.js.map", "index.html", "static/js/2.a1e32a19.chunk.js.LICENSE.txt"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "s2missions1i15-1-14mission115-1-14", "type" : "GOAL", "data" : {}, "start" : "s1i15-1-14", "end" : "mission115-1-14"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "type": {"type": "string"}, "data": {"type": "object", "properties": {}, "required": []}, "start": {"type": "string"}, "end": {"type": "string"}}, "required": ["id", "type", "data", "start", "end"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-stylus": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}, "nib": {"type": "string"}, "stylus": {"type": "string"}}, "required": ["bower", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-minify-css", "gulp-sourcemaps", "gulp-stylus", "gulp-uglify", "gulp-watch", "nib", "stylus"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "base-html-bootstrap-template", "version" : "2015.05.03", "description" : "Base HTML5 Bootstrap template", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/itcrab/base-html-bootstrap-template.git"}, "keywords" : ["html5", "bootstrap"], "author" : "Arcady Usov <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/itcrab/base-html-bootstrap-template/issues"}, "homepage" : "https://github.com/itcrab/base-html-bootstrap-template", "dependencies" : {"bower" : "1.3.12", "gulp" : "3.8.11", "gulp-autoprefixer" : "2.2.0", "gulp-concat" : "2.5.2", "gulp-minify-css" : "1.1.1", "gulp-sourcemaps" : "1.5.2", "gulp-stylus" : "2.0.1", "gulp-uglify" : "1.2.0", "gulp-watch" : "4.2.4", "nib" : "1.1.0", "stylus" : "0.51.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp": {"type": "string"}, "gulp-autoprefixer": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-sourcemaps": {"type": "string"}, "gulp-stylus": {"type": "string"}, "gulp-uglify": {"type": "string"}, "gulp-watch": {"type": "string"}, "nib": {"type": "string"}, "stylus": {"type": "string"}}, "required": ["bower", "gulp", "gulp-autoprefixer", "gulp-concat", "gulp-minify-css", "gulp-sourcemaps", "gulp-stylus", "gulp-uglify", "gulp-watch", "nib", "stylus"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"brief" : "liberty", "long" : "<i>Meaning:</i> \"liberty\" (from slavery).<br/><i>Usage:</i> freedom.<br/><i>Source:</i> from \"H2666\";"} | json_instruct | {"type": "object", "properties": {"brief": {"type": "string"}, "long": {"type": "string"}}, "required": ["brief", "long"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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" : "ZAQUENNA", "frequency" : 1, "gender" : "female"}] | 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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Pomn\u00edk padl\u00fdch v Kr\u00e1sn\u00e9m", "P31" : "http://www.wikidata.org/entity/Q575759", "P31^label:cs" : "Pomn\u00edk padl\u00fdm", "P131^label:cs" : "T\u0159i Sekery", "P6736" : "9200"}, "geometry" : {"type" : "Point", "coordinates" : [12.61486, 49.95659]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "coords": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}, "orbit": {"type": "integer"}}, "required": ["x", "y", "z", "orbit"]}, "lsn": {"type": "integer"}, "mining_difficulty": {"type": "number"}}, "required": ["id", "coords", "lsn", "mining_difficulty"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"id" : "33 38 27 1", "coords" : {"x" : 33, "y" : 38, "z" : 27, "orbit" : 1}, "lsn" : 78, "mining_difficulty" : 1.14}} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"id": {"type": "string"}, "coords": {"type": "object", "properties": {"x": {"type": "integer"}, "y": {"type": "integer"}, "z": {"type": "integer"}, "orbit": {"type": "integer"}}, "required": ["x", "y", "z", "orbit"]}, "lsn": {"type": "integer"}, "mining_difficulty": {"type": "number"}}, "required": ["id", "coords", "lsn", "mining_difficulty"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"kind": {"type": "string"}, "properties": {"type": "object", "properties": {"endpoint": {"type": "string"}, "collection": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}}, "required": ["endpoint", "collection"]}}, "required": ["kind", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"kind" : "AdlsGen2", "properties" : {"endpoint" : "https://.dfs.core.windows.net/", "collection" : {"referenceName" : "", "type" : "CollectionReference"}}} | json_instruct | {"type": "object", "properties": {"kind": {"type": "string"}, "properties": {"type": "object", "properties": {"endpoint": {"type": "string"}, "collection": {"type": "object", "properties": {"referenceName": {"type": "string"}, "type": {"type": "string"}}, "required": ["referenceName", "type"]}}, "required": ["endpoint", "collection"]}}, "required": ["kind", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "imageURL": {"type": "string"}, "gitHubURL": {"type": "string"}, "linkedInURL": {"type": "string"}, "twitterURL": {"type": "string"}}, "required": ["name", "imageURL", "gitHubURL", "linkedInURL", "twitterURL"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Sarika Kushwaha", "imageURL" : "https://imgur.com/gna082V.jpg", "gitHubURL" : "https://github.com/sarikaji22", "linkedInURL" : "https://www.linkedin.com/in/sarika-kushwaha-186a881a0", "twitterURL" : ""} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "imageURL": {"type": "string"}, "gitHubURL": {"type": "string"}, "linkedInURL": {"type": "string"}, "twitterURL": {"type": "string"}}, "required": ["name", "imageURL", "gitHubURL", "linkedInURL", "twitterURL"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"new_version" : "1.9.9"} | json_instruct | {"type": "object", "properties": {"new_version": {"type": "string"}}, "required": ["new_version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id_3702": {"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": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3702"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id_3702" : {"title" : "Ateneu", "language" : "Portuguese", "totaltime" : "8:59:05", "url_librivox" : "http://librivox.org/o-ateneu-by-raul-pompeia/", "url_iarchive" : "http://www.archive.org/details/o_ateneu_1012_librivox", "readers" : ["2961", "4367", "5417"], "authors" : "1548", "genres" : "General Fiction"}} | json_instruct | {"type": "object", "properties": {"id_3702": {"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": {"type": "string"}, "genres": {"type": "string"}}, "required": ["title", "language", "totaltime", "url_librivox", "url_iarchive", "readers", "authors", "genres"]}}, "required": ["id_3702"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "commands"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "7.39.2", "commands" : {}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "commands": {"type": "object", "properties": {}, "required": []}}, "required": ["version", "commands"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1974, 6], [1975, 6], [1977, 6], [1979, 8], [1980, 6], [1981, 15], [1982, 12], [1983, 13], [1984, 16], [1985, 27], [1986, 17], [1987, 25], [1988, 31], [1989, 40], [1990, 42], [1991, 28], [1992, 32], [1993, 45], [1994, 29], [1995, 41], [1996, 41], [1997, 42], [1998, 40], [1999, 34], [2000, 21], [2001, 34], [2002, 24], [2003, 22], [2004, 19], [2005, 22], [2006, 27], [2007, 44], [2008, 40], [2009, 27], [2010, 34], [2011, 39], [2012, 30], [2013, 30], [2014, 35]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "recipe": {"type": "object", "properties": {}, "required": []}, "episodeConfigurations": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "number"}, "velocity": {"type": "number"}, "angle": {"type": "number"}, "rotation": {"type": "number"}}, "required": ["position", "velocity", "angle", "rotation"]}}}, "required": ["version", "recipe", "episodeConfigurations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "1.0.0", "recipe" : {}, "episodeConfigurations" : [{"position" : 0.0, "velocity" : 0.0, "angle" : 0.0, "rotation" : 0.0}]} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "recipe": {"type": "object", "properties": {}, "required": []}, "episodeConfigurations": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "number"}, "velocity": {"type": "number"}, "angle": {"type": "number"}, "rotation": {"type": "number"}}, "required": ["position", "velocity", "angle", "rotation"]}}}, "required": ["version", "recipe", "episodeConfigurations"], "$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"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"sib-api-v3-sdk": {"type": "string"}}, "required": ["sib-api-v3-sdk"]}, "strapi": {"type": "object", "properties": {"isProvider": {"type": "boolean"}}, "required": ["isProvider"]}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage", "keywords", "directories", "main", "dependencies", "strapi", "author", "maintainers", "repository", "bugs", "engines", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "strapi-provider-email-sendinblue", "version" : "1.0.5", "description" : "Sendinblue provider for strapi email", "homepage" : "https://github.com/eddybordi/strapi-provider-email-sendinblue", "keywords" : ["email", "strapi", "sendinblue"], "directories" : {"lib" : "./lib"}, "main" : "./lib", "dependencies" : {"sib-api-v3-sdk" : "^7.1.2"}, "strapi" : {"isProvider" : true}, "author" : {"email" : "[email protected]", "name" : "Eddy Bordi", "url" : "https://bordi.fr"}, "maintainers" : [{"email" : "[email protected]", "name" : "Eddy Bordi", "url" : "https://bordi.fr"}], "repository" : {"type" : "git", "url" : "[email protected]:eddybordi/strapi-provider-email-sendinblue.git"}, "bugs" : {"url" : "https://github.com/eddybordi/strapi-provider-email-sendinblue/issues"}, "engines" : {"node" : ">= 10.0.0", "npm" : ">= 6.0.0"}, "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "directories": {"type": "object", "properties": {"lib": {"type": "string"}}, "required": ["lib"]}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"sib-api-v3-sdk": {"type": "string"}}, "required": ["sib-api-v3-sdk"]}, "strapi": {"type": "object", "properties": {"isProvider": {"type": "boolean"}}, "required": ["isProvider"]}, "author": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}, "maintainers": {"type": "array", "items": {"type": "object", "properties": {"email": {"type": "string"}, "name": {"type": "string"}, "url": {"type": "string"}}, "required": ["email", "name", "url"]}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}, "npm": {"type": "string"}}, "required": ["node", "npm"]}, "license": {"type": "string"}}, "required": ["name", "version", "description", "homepage", "keywords", "directories", "main", "dependencies", "strapi", "author", "maintainers", "repository", "bugs", "engines", "license"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "express-dot": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["bluebird", "body-parser", "express", "express-dot", "lodash"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "simplew", "version" : "0.1.8", "description" : "Simple web app framework for Node.js (based on express, dot, and promises)", "main" : "index.js", "dependencies" : {"bluebird" : "^2.9.24", "body-parser" : "^1.12.4", "express" : "^4.12.3", "express-dot" : "^0.1.0", "lodash" : "^3.6.0"}, "repository" : {"type" : "git", "url" : "git://github.com/titarenko/simplew.git"}, "keywords" : ["web", "framework", "simple", "promise", "express", "bluebird", "dot"], "author" : "Constantin Titarenko", "license" : "MIT", "bugs" : {"url" : "https://github.com/titarenko/simplew/issues"}, "homepage" : "https://github.com/titarenko/simplew"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bluebird": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}, "express-dot": {"type": "string"}, "lodash": {"type": "string"}}, "required": ["bluebird", "body-parser", "express", "express-dot", "lodash"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "repository", "keywords", "author", "license", "bugs", "homepage"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"Title": {"type": "string"}, "Author": {"type": "string"}, "Company": {"type": "string"}, "BgPath": {"type": "string"}, "DstPath": {"type": "string"}, "MemberPath": {"type": "string"}, "ThumbPath": {"type": "string"}}, "required": ["Title", "Author", "Company", "BgPath", "DstPath", "MemberPath", "ThumbPath"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"Title" : "Go \u7684\u5927\u6570\u636e", "Author" : "\u6bdb\u5251", "Company" : "BILIBILI", "BgPath" : "./data/img/poster.jpg", "DstPath" : "./data/gen/dst/mojian.jpg", "MemberPath" : "./data/img/maojian.jpeg", "ThumbPath" : "./data/gen/thumb/maojian.jpg"}, {"Title" : "Go \u8bed\u8a00\u5728\u6e38\u620f\u9879\u76ee\u7684\u5e94\u7528\u60c5\u51b5\u6c47\u62a5", "Author" : "\u6bdb\u5251", "Company" : "BILIBILI", "BgPath" : "./data/img/poster.jpg", "DstPath" : "./data/gen/dst/mojian2.jpg", "MemberPath" : "./data/img/maojian.jpeg", "ThumbPath" : "./data/gen/thumb/maojian.jpg"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"Title": {"type": "string"}, "Author": {"type": "string"}, "Company": {"type": "string"}, "BgPath": {"type": "string"}, "DstPath": {"type": "string"}, "MemberPath": {"type": "string"}, "ThumbPath": {"type": "string"}}, "required": ["Title", "Author", "Company", "BgPath", "DstPath", "MemberPath", "ThumbPath"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:facebook": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "opening_hours:covid19": {"type": "string"}, "source": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:facebook", "name", "opening_hours", "opening_hours:covid19", "source", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "id" : "node/7467375942", "properties" : {"amenity" : "marketplace", "contact:facebook" : "https://www.facebook.com/marchesdelaseille/", "name" : "March\u00e9 de la Seille", "opening_hours" : "Fr[1] 17:00-19:30; PH off", "opening_hours:covid19" : "same", "source" : "knowledge", "id" : "node/7467375942"}, "geometry" : {"type" : "Point", "coordinates" : [6.4226675, 48.7651169]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:facebook": {"type": "string"}, "name": {"type": "string"}, "opening_hours": {"type": "string"}, "opening_hours:covid19": {"type": "string"}, "source": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:facebook", "name", "opening_hours", "opening_hours:covid19", "source", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Futabu Hmv (Hantres) \uff11\uff18\u6b73\u4ee5\u4e0a\uff01", "author" : "hantres93", "description" : "anotherundefinedjobundefinedIundefinedwasundefinedaskedundefinedfor.undefinedIundefinedtriedundefinedtoundefinedmakeundefineditundefinedinundefined60undefinedframes,undefinedIundefinedhopeundefinedyouundefinedlikeundefinedit.undefinedanotherundefinedoneundefinedsoon.undefinedasundefinedstandard,undefinedifundefinedyouundefinedlikeundefinedundefinedmyundefinedworks,undefinedleaveundefinedaundefinedcomment,undefineditundefinedmotivatesundefinedyouundefinedtoundefinedfurtherundefinedwork.undefinedandundefinedifundefinedyouundefinedhaveundefinedanundefinedideaundefinedforundefinedaundefinednewundefinedhmvundefinedwriteundefinedboldlyundefinedonundefinedpriv<br>Hentaiundefined:undefinedFutabu<br>Musicundefined;undefinednewundefinedBounceundefinedgalwaro,undefinedboomundefinedvsundefinedToca,undefinedJoelundefinedfletcherundefinedPhantom,undefinedHoaproxundefinedTlCNCap", "thumb" : "//i.iwara.tv/sites/default/files/styles/thumbnail/public/videos/thumbnails/2323713/thumbnail-2323713_0004.jpg?itok=oFzMPl7h", "download" : "https://ecchi.iwara.tv/api/video/kgoyac1vllczqjymo", "origin" : "https://ecchi.iwara.tv/videos/kgoyac1vllczqjymo"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "description": {"type": "string"}, "thumb": {"type": "string"}, "download": {"type": "string"}, "origin": {"type": "string"}}, "required": ["title", "author", "description", "thumb", "download", "origin"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-118.112633, 34.689407], [-118.103673, 34.689535], [-118.103506, 34.675044], [-118.11239, 34.675041], [-118.112633, 34.689407]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 6960}}]} | 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": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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#"}
| [["520502123001", "\u5c42\u53f0\u793e\u533a\u5c45\u59d4\u4f1a", "121", "0"], ["520502123002", "\u5b98\u53a2\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["520502123003", "\u65af\u6817\u793e\u533a\u5c45\u59d4\u4f1a", "220", "0"], ["520502123202", "\u5411\u9633\u6751\u59d4\u4f1a", "220", "0"], ["520502123204", "\u5149\u8f89\u6751\u59d4\u4f1a", "220", "0"], ["520502123205", "\u7ea2\u5ca9\u6751\u59d4\u4f1a", "220", "0"], ["520502123206", "\u9752\u6625\u6751\u59d4\u4f1a", "220", "0"], ["520502123207", "\u4e1c\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["520502123208", "\u7389\u9f99\u6751\u59d4\u4f1a", "220", "0"], ["520502123210", "\u725b\u573a\u6751\u59d4\u4f1a", "220", "0"], ["520502123211", "\u4ed8\u5bb6\u6c9f\u6751\u59d4\u4f1a", "220", "0"], ["520502123212", "\u5e78\u798f\u6751\u59d4\u4f1a", "220", "0"], ["520502123213", "\u4e94\u91cc\u6865\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"max_contests": {"type": "integer"}, "mu_noob": {"type": "integer"}, "sig_noob": {"type": "integer"}, "contest_source": {"type": "string"}, "system": {"type": "object", "properties": {"method": {"type": "string"}, "params": {"type": "array", "items": {"type": "number"}}}, "required": ["method", "params"]}}, "required": ["max_contests", "mu_noob", "sig_noob", "contest_source", "system"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"max_contests" : 18292, "mu_noob" : 1500, "sig_noob" : 350, "contest_source" : "dance", "system" : {"method" : "glicko", "params" : [70.0, 5.0]}} | json_instruct | {"type": "object", "properties": {"max_contests": {"type": "integer"}, "mu_noob": {"type": "integer"}, "sig_noob": {"type": "integer"}, "contest_source": {"type": "string"}, "system": {"type": "object", "properties": {"method": {"type": "string"}, "params": {"type": "array", "items": {"type": "number"}}}, "required": ["method", "params"]}}, "required": ["max_contests", "mu_noob", "sig_noob", "contest_source", "system"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "net/http: fix crash with Transport.CloseIdleConnections\n\nThanks Michael Lore for the bug report!\n\nFixes issue 3266", "cc" : ["[email protected]", "[email protected]"], "reviewers" : [], "messages" : [{"sender" : "[email protected]", "recipients" : ["[email protected]", "[email protected]", "[email protected]"], "text" : "Hello [email protected],\n\nI'd like you to review this change to\nhttps://go.googlecode.com/hg/", "disapproval" : false, "date" : "2012-03-10 00:25:24.985563", "approval" : false}, {"sender" : "[email protected]", "recipients" : ["[email protected]"], "text" : "LGTM\n", "disapproval" : false, "date" : "2012-03-10 00:26:25.207790", "approval" : true}, {"sender" : "[email protected]", "recipients" : ["[email protected]", "[email protected]", "[email protected]", "[email protected]"], "text" : "*** Submitted as http://code.google.com/p/go/source/detail?r=2ed49b463cc0 ***\n\nnet/http: fix crash with Transport.CloseIdleConnections\n\nThanks Michael Lore for the bug report!\n\nFixes issue 3266\n\nR=golang-dev, rsc\nCC=golang-dev\nhttp://codereview.appspot.com/5754068", "disapproval" : false, "date" : "2012-03-10 00:27:36.453193", "approval" : false}], "owner_email" : "[email protected]", "private" : false, "base_url" : "", "owner" : "bradfitz", "subject" : "code review 5754068: net/http: fix crash with Transport.CloseIdleConnections", "created" : "2012-03-10 00:24:45.202364", "patchsets" : [1, 1002, 3001, 3002], "modified" : "2012-03-10 00:27:37.552078", "closed" : true, "issue" : 5754068} | 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": "string"}}, "text": {"type": "string"}, "disapproval": {"type": "boolean"}, "date": {"type": "string"}, "approval": {"type": "boolean"}}, "required": ["sender", "recipients", "text", "disapproval", "date", "approval"]}}, "owner_email": {"type": "string"}, "private": {"type": "boolean"}, "base_url": {"type": "string"}, "owner": {"type": "string"}, "subject": {"type": "string"}, "created": {"type": "string"}, "patchsets": {"type": "array", "items": {"type": "integer"}}, "modified": {"type": "string"}, "closed": {"type": "boolean"}, "issue": {"type": "integer"}}, "required": ["description", "cc", "reviewers", "messages", "owner_email", "private", "base_url", "owner", "subject", "created", "patchsets", "modified", "closed", "issue"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["ipyxact"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "creator", "identifier", "description", "subject"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"datestamp" : "Wed Apr 14 22:41:36 EDT 2021", "title" : "Replication data for: Finance and Business Cycles: The Credit-Driven Household Demand Channel", "creator" : "Atif Mian", "identifier" : ["114017", "114017", "https://doi.org/10.3886/E114017V1"], "description" : "What is the role of the financial sector in explaining business cycles? This question is as old as the field of macroeconomics, and an extensive body of research conducted since the Global Financial Crisis of 2008 has offered new answers. The specific idea put forward in this article is that expansions in credit supply, operating primarily through household demand, have been an important driver of business cycles. We call this the credit-driven household demand channel. While this channel helps explain the recent global recession, it also describes economic cycles in many countries over the past 40 years.", "subject" : ["D12 Consumer Economics: Empirical Analysis", "E21 Macroeconomics: Consumption; Saving; Wealth", "E32 Business Fluctuations; Cycles", "E44 Financial Markets and the Macroeconomy", "F44 International Business Cycles", "G01 Financial Crises"]} | json_instruct | {"type": "object", "properties": {"datestamp": {"type": "string"}, "title": {"type": "string"}, "creator": {"type": "string"}, "identifier": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "subject": {"type": "array", "items": {"type": "string"}}}, "required": ["datestamp", "title", "creator", "identifier", "description", "subject"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/holiday/giantsnowflake/giantsnowflake.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/holiday/giantsnowflake/giantsnowflake.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"DeniedAlternatives" : [], "Files" : {"objects/holiday/giantsnowflake/giantsnowflake.object" : ["/description"]}, "Texts" : {"Eng" : "A huge snowflake decoration.", "Rus" : "\u041e\u0433\u0440\u043e\u043c\u043d\u043e\u0435 \u0443\u043a\u0440\u0430\u0448\u0435\u043d\u0438\u0435 \u0432 \u0432\u0438\u0434\u0435 \u0441\u043d\u0435\u0436\u0438\u043d\u043a\u0438."}}, {"DeniedAlternatives" : [], "Files" : {"objects/holiday/giantsnowflake/giantsnowflake.object" : ["/shortdescription"]}, "Texts" : {"Eng" : "Giant Snowflake", "Rus" : "\u0413\u0438\u0433\u0430\u043d\u0442\u0441\u043a\u0430\u044f \u0441\u043d\u0435\u0436\u0438\u043d\u043a\u0430"}}, {"DeniedAlternatives" : [], "Files" : {"objects/holiday/giantsnowflake/giantsnowflake.object" : ["/floranDescription"]}, "Texts" : {"Eng" : "Sssnowflake. Iss it cold?", "Rus" : "\u0421\u0441\u0441\u043d\u0435\u0436\u0438\u043d\u043a\u0430. \u041e\u043d\u0430 \u0445\u0445\u043e\u043b\u043e\u0434\u043d\u0430\u044f?"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/holiday/giantsnowflake/giantsnowflake.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/holiday/giantsnowflake/giantsnowflake.object"]}, "Texts": {"type": "object", "properties": {"Eng": {"type": "string"}, "Rus": {"type": "string"}}, "required": ["Eng", "Rus"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"YouTube": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "tfa": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["domain", "url", "tfa", "documentation", "keywords"]}}, "required": ["YouTube"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"YouTube" : {"domain" : "youtube.com", "url" : "https://www.youtube.com/", "tfa" : ["students"], "documentation" : "https://www.youtube.com/premium/student", "keywords" : ["entertainment"]}} | json_instruct | {"type": "object", "properties": {"YouTube": {"type": "object", "properties": {"domain": {"type": "string"}, "url": {"type": "string"}, "tfa": {"type": "array", "items": {"type": "string"}}, "documentation": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}}, "required": ["domain", "url", "tfa", "documentation", "keywords"]}}, "required": ["YouTube"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "require": {"type": "object", "properties": {"webmozart/assert": {"type": "string"}, "ramsey/uuid": {"type": "string"}, "illuminate/container": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/console": {"type": "string"}, "symfony/lock": {"type": "string"}, "symfony/event-dispatcher": {"type": "string"}}, "required": ["webmozart/assert", "ramsey/uuid", "illuminate/container", "illuminate/events", "illuminate/console", "symfony/lock", "symfony/event-dispatcher"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "fighttheice/console", "description" : "PHP Console Framework that fires lots of events", "type" : "project", "license" : "MIT", "authors" : [{"name" : "William Knauss", "email" : "[email protected]"}], "autoload" : {"classmap" : ["src"]}, "require" : {"webmozart/assert" : "^1.6", "ramsey/uuid" : "^3.9", "illuminate/container" : "^7.14", "illuminate/events" : "^7.14", "illuminate/console" : "^7.14", "symfony/lock" : "^5.1", "symfony/event-dispatcher" : "^5.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "autoload": {"type": "object", "properties": {"classmap": {"type": "array", "items": {"type": "string"}}}, "required": ["classmap"]}, "require": {"type": "object", "properties": {"webmozart/assert": {"type": "string"}, "ramsey/uuid": {"type": "string"}, "illuminate/container": {"type": "string"}, "illuminate/events": {"type": "string"}, "illuminate/console": {"type": "string"}, "symfony/lock": {"type": "string"}, "symfony/event-dispatcher": {"type": "string"}}, "required": ["webmozart/assert", "ramsey/uuid", "illuminate/container", "illuminate/events", "illuminate/console", "symfony/lock", "symfony/event-dispatcher"]}}, "required": ["name", "description", "type", "license", "authors", "autoload", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "diagnosisCode": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "site": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["id", "name", "description", "diagnosisCode", "site"]}}, "required": ["description", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Provides properties for a single animal health diagnosis.", "type" : "object", "properties" : {"id" : {"type" : "string", "description" : "Unique identifier for this diagnosis."}, "name" : {"type" : "string", "description" : "Name indicating the health condition diagnosed."}, "description" : {"type" : "string", "description" : "Description of the diagnosis or problem."}, "diagnosisCode" : {"$ref" : "../types/icarDiagnosisIdentifierType.json", "description" : "Descibes the scheme (eg venom or ICAR) and the code (ID) within that scheme."}, "site" : {"type" : "string", "description" : "Site on the animal involved in the diagnosis or disease."}}} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "name": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "description": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}, "diagnosisCode": {"type": "object", "properties": {"$ref": {"type": "string"}, "description": {"type": "string"}}, "required": ["$ref", "description"]}, "site": {"type": "object", "properties": {"type": {"type": "string"}, "description": {"type": "string"}}, "required": ["type", "description"]}}, "required": ["id", "name", "description", "diagnosisCode", "site"]}}, "required": ["description", "type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"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#"}
| [{"name" : "NNEKA", "frequency" : 1189, "males" : "0.08410428931875526 %", "females" : "99.91589571068124 %"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"itemid" : "minecraft:skull", "displayname" : "\u00a7cGame Annihilator", "nbttag" : "{HideFlags:254,SkullOwner:{Id:\"473bf270-99e1-3feb-b816-ef7e6ae4cb82\",Properties:{textures:[0:{Value:\"eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvOGRhMzMyYWJkZTMzM2ExNWE2YzZmY2ZlY2E4M2YwMTU5ZWE5NGI2OGU4ZjI3NGJhZmMwNDg5MmI2ZGJmYyJ9fX0=\"}]}},display:{Lore:[0:\"\u00a77This item was given to a player\",1:\"\u00a77who reported enough game\",2:\"\u00a77breaking bugs to make the\",3:\"\u00a77SkyBlock developers cry.\",4:\"\",5:\"\u00a7c\u00a7lSPECIAL\"],Name:\"\u00a7cGame Annihilator\"},ExtraAttributes:{id:\"GAME_ANNIHILATOR\"}}", "damage" : 3, "lore" : ["\u00a77This item was given to a player", "\u00a77who reported enough game", "\u00a77breaking bugs to make the", "\u00a77SkyBlock developers cry.", "", "\u00a7c\u00a7lSPECIAL"], "internalname" : "GAME_ANNIHILATOR", "crafttext" : "", "clickcommand" : "", "modver" : "2.0.0-REL", "infoType" : ""} | json_instruct | {"type": "object", "properties": {"itemid": {"type": "string"}, "displayname": {"type": "string"}, "nbttag": {"type": "string"}, "damage": {"type": "integer"}, "lore": {"type": "array", "items": {"type": "string"}}, "internalname": {"type": "string"}, "crafttext": {"type": "string"}, "clickcommand": {"type": "string"}, "modver": {"type": "string"}, "infoType": {"type": "string"}}, "required": ["itemid", "displayname", "nbttag", "damage", "lore", "internalname", "crafttext", "clickcommand", "modver", "infoType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"oq" : "0", "q" : "4530", "rvnm" : "\u957f\u6c5f", "stcd" : "60105400", "stnm" : "\u5bf8\u6ee9", "tm" : 1616101200000, "wptn" : "4", "z" : "166.14"}, {"oq" : "0", "q" : "1810", "rvnm" : "\u4e4c\u6c5f", "stcd" : "60803000", "stnm" : "\u6b66\u9686", "tm" : 1616101200000, "wptn" : "4", "z" : "173.68"}, {"oq" : "0", "q" : "6640", "rvnm" : "\u957f\u6c5f", "stcd" : "60107300", "stnm" : "\u5b9c\u660c", "tm" : 1616101200000, "wptn" : "6", "z" : "39.69"}, {"oq" : "0", "q" : "6840", "rvnm" : "\u957f\u6c5f", "stcd" : "60108300", "stnm" : "\u6c99\u5e02", "tm" : 1616101200000, "wptn" : "6", "z" : "30.27"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60111200", "stnm" : "\u57ce\u9675\u77f6(\u83b2)", "tm" : 1616101200000, "wptn" : "6", "z" : "23.5"}, {"oq" : "0", "q" : "17300", "rvnm" : "\u957f\u6c5f", "stcd" : "60112200", "stnm" : "\u6c49\u53e3", "tm" : 1616101200000, "wptn" : "5", "z" : "17.09"}, {"oq" : "0", "q" : "17700", "rvnm" : "\u957f\u6c5f", "stcd" : "60113400", "stnm" : "\u4e5d\u6c5f", "tm" : 1616101200000, "wptn" : "5", "z" : "11.692"}, {"oq" : "0", "q" : "22000", "rvnm" : "\u957f\u6c5f", "stcd" : "60115000", "stnm" : "\u5927\u901a", "tm" : 1616101200000, "wptn" : "5", "z" : "7.24"}, {"oq" : "0", "q" : "9520", "rvnm" : "\u6d1e\u5ead\u6e56", "stcd" : "61512000", "stnm" : "\u57ce\u9675\u77f6(\u4e03)", "tm" : 1616101200000, "wptn" : "4", "z" : "23.54"}, {"oq" : "0", "q" : "3770", "rvnm" : "\u9131\u9633\u6e56", "stcd" : "62601600", "stnm" : "\u6e56\u53e3", "tm" : 1616101200000, "wptn" : "5", "z" : "10.97"}, {"oq" : "0", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60107000", "stnm" : "\u8305\u576a(\u4e8c)", "tm" : 1616101200000, "wptn" : "4", "z" : "165.648"}, {"oq" : "6070", "q" : "0", "rvnm" : "\u957f\u6c5f", "stcd" : "60106980", "stnm" : "\u4e09\u5ce1\u6c34\u5e93", "tm" : 1616101200000, "wptn" : "4", "z" : "165.65"}, {"oq" : "0", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802500", "stnm" : "\u9f99\u738b\u5e99", "tm" : 1616101200000, "wptn" : "6", "z" : "159.84"}, {"oq" : "833", "q" : "0", "rvnm" : "\u6c49\u6c5f", "stcd" : "61802700", "stnm" : "\u4e39\u6c5f\u53e3\u6c34\u5e93", "tm" : 1616097600000, "wptn" : "4", "z" : "159.84"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"oq": {"type": "string"}, "q": {"type": "string"}, "rvnm": {"type": "string"}, "stcd": {"type": "string"}, "stnm": {"type": "string"}, "tm": {"type": "integer"}, "wptn": {"type": "string"}, "z": {"type": "string"}}, "required": ["oq", "q", "rvnm", "stcd", "stnm", "tm", "wptn", "z"]}, "$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#"}
| ["00001", "00002", "00005", "00006", "00008", "00010", "00012", "00013", "00014", "00015", "00016", "00018", "00020", "00021", "00022", "00025", "00026", "00027", "00028", "00030", "00031", "00033", "00035", "00036", "00040", "00044"] | 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": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contacts" : [], "guideStarURL" : "http://www.guidestarindia.org/Summary.aspx?CCReg=2759", "name" : "Society Organised For Promotion Of Rural Tribal And Downtrodden (Soport)", "primaryEmail" : "[email protected]", "telephone" : ["914312762357"], "mainAddrress" : {"state" : "Tamil Nadu", "address" : ["M 3/1 Gandhiagam, Housing Unit,", "Salai Road, Woraiyur", "Tircirapalli", "Tiruchirappalli", "Tamil Nadu", "620003"]}} | json_instruct | {"type": "object", "properties": {"contacts": {"type": "array", "items": {}}, "guideStarURL": {"type": "string"}, "name": {"type": "string"}, "primaryEmail": {"type": "string"}, "telephone": {"type": "array", "items": {"type": "string"}}, "mainAddrress": {"type": "object", "properties": {"state": {"type": "string"}, "address": {"type": "array", "items": {"type": "string"}}}, "required": ["state", "address"]}}, "required": ["contacts", "guideStarURL", "name", "primaryEmail", "telephone", "mainAddrress"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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"}}, "required": ["id", "name", "city", "state", "stateShort", "country", "description", "imageCredit", "imageCreditLink"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "vny", "name" : "Van Nuys Airport", "city" : "Los Angeles", "state" : "California", "stateShort" : "CA", "country" : "USA", "description" : "Van Nuys Airport serves Los Angeles, located in the *V*an *N*u*y*s neighborhood of the San Fernando Valley.", "imageCredit" : "Thomas Hawk", "imageCreditLink" : "https://www.flickr.com/photos/thomashawk/"} | 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"}}, "required": ["id", "name", "city", "state", "stateShort", "country", "description", "imageCredit", "imageCreditLink"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "parcel-bundler": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"countup.js": {"type": "string"}, "d3": {"type": "string"}, "globe.gl": {"type": "string"}}, "required": ["countup.js", "d3", "globe.gl"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "covid3d", "version" : "1.0.0", "description" : "", "main" : "index.js", "scripts" : {"dev" : "parcel src/index.html", "build" : "parcel build src/index.html"}, "keywords" : [], "author" : "", "license" : "ISC", "devDependencies" : {"@babel/core" : "^7.9.0", "@babel/plugin-transform-runtime" : "^7.9.0", "parcel-bundler" : "^1.12.4"}, "dependencies" : {"countup.js" : "^2.0.4", "d3" : "^5.15.0", "globe.gl" : "^2.8.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@babel/core": {"type": "string"}, "@babel/plugin-transform-runtime": {"type": "string"}, "parcel-bundler": {"type": "string"}}, "required": ["@babel/core", "@babel/plugin-transform-runtime", "parcel-bundler"]}, "dependencies": {"type": "object", "properties": {"countup.js": {"type": "string"}, "d3": {"type": "string"}, "globe.gl": {"type": "string"}}, "required": ["countup.js", "d3", "globe.gl"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "devDependencies", "dependencies"], "$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"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "cron": {"type": "string"}}, "required": ["dotenv", "cron"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Mercurys-Sundial", "version" : "0.0.1", "description" : "Cron for Mercury", "main" : "index.js", "scripts" : {"start" : "node index.js", "test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "[email protected]:mstraughan86/Mercurys-Sundial.git"}, "keywords" : ["slack", "mercury", "cron"], "author" : "Michael Straughan", "license" : "ISC", "dependencies" : {"dotenv" : "^4.0.0", "cron" : "^1.3.0"}, "engines" : {"node" : "0.12.x"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "cron": {"type": "string"}}, "required": ["dotenv", "cron"]}, "engines": {"type": "object", "properties": {"node": {"type": "string"}}, "required": ["node"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "dependencies", "engines"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "\uc774\uc1a1(\ud1b5\uc9c0)": {"type": "object", "properties": {"\uc774\uc1a1\uc77c": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc774\uc1a1\uc77c", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "\uc774\uc1a1(\ud1b5\uc9c0)"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["120008"], "\uc81c\uc548\uc77c\uc790" : ["1985-05-14"], "\uc81c\uc548\uc790" : ["\uc758\uc7a5"], "\ubb38\uc11c" : [""], "\uc81c\uc548\ud68c\uae30" : ["\uc81c12\ub300(1985~1988)\uc81c125\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : ["1985-05-14"], "\uc758\uacb0\uc77c" : ["1985-05-14"], "\ud68c\uc758\uba85" : ["\uc81c125\ud68c\uad6d\ud68c(\uc784\uc2dc\ud68c)\uc81c2\ucc28\ubcf8\ud68c\uc758"], "\ud68c\uc758\uacb0\uacfc" : ["\uc6d0\uc548\uac00\uacb0"], "\ud68c\uc758\ub85d" : [""]}, "\uc774\uc1a1(\ud1b5\uc9c0)" : {"\uc774\uc1a1\uc77c" : ["1985-05-16"], "\ubb38\uc11c" : [""]}} | json_instruct | {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "\uc774\uc1a1(\ud1b5\uc9c0)": {"type": "object", "properties": {"\uc774\uc1a1\uc77c": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc774\uc1a1\uc77c", "\ubb38\uc11c"]}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "\uc774\uc1a1(\ud1b5\uc9c0)"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"elapsed" : "0.079", "endpoint-url" : "https://www.staffsmoorlands.gov.uk/media/3861/SM-2019-Brownfield-Register-CSV/Excel/BLR_SMDC_19_CSV.csv", "entry-date" : "2019-12-24T12:16:56.848360", "exception" : "SSLError"} | json_instruct | {"type": "object", "properties": {"elapsed": {"type": "string"}, "endpoint-url": {"type": "string"}, "entry-date": {"type": "string"}, "exception": {"type": "string"}}, "required": ["elapsed", "endpoint-url", "entry-date", "exception"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Born": {"type": "array", "items": {"type": "string"}}, "Occupation": {"type": "array", "items": {"type": "string"}}, "Years active": {"type": "array", "items": {"type": "string"}}, "Spouse(s)": {"type": "array", "items": {"type": "string"}}, "Children": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "Born", "Occupation", "Years active", "Spouse(s)", "Children"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : ["Denzel Washington"], "Born" : ["Denzel Hayes Washington Jr. , (1954-12-28) December 28, 1954 (age 64) , Mount Vernon, New York, U.S."], "Occupation" : ["Actor, director, producer"], "Years active" : ["1975-present"], "Spouse(s)" : ["Pauletta Pearson , ( m. 1983)"], "Children" : ["4, including John David Washington"]} | json_instruct | {"type": "object", "properties": {"title": {"type": "array", "items": {"type": "string"}}, "Born": {"type": "array", "items": {"type": "string"}}, "Occupation": {"type": "array", "items": {"type": "string"}}, "Years active": {"type": "array", "items": {"type": "string"}}, "Spouse(s)": {"type": "array", "items": {"type": "string"}}, "Children": {"type": "array", "items": {"type": "string"}}}, "required": ["title", "Born", "Occupation", "Years active", "Spouse(s)", "Children"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible 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": {"type": "string"}, "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc": {"type": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"\u5de5\u5ee0\u540d\u7a31" : "\u5143\u4e95\u570b\u969b\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f" : "64007292", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f" : "", "\u5de5\u5ee0\u5730\u5740" : "\u9ad8\u96c4\u5e02\u9ce5\u677e\u5340\u6c34\u7ba1\u8def11\u865f1\u6a13", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc" : "\u9ad8\u96c4\u5e02\u9ce5\u677e\u5340", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d" : "\u5f35\u7c21\u654f\u5ddd", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f" : "80089049", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b" : "\u6709\u9650\u516c\u53f8", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f" : "", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f" : "1040513", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b" : "\u751f\u7522\u4e2d", "\u7522\u696d\u985e\u5225" : ["16\u5370\u5237\u53ca\u8cc7\u6599\u5132\u5b58\u5a92\u9ad4\u8907\u88fd\u696d"], "\u4e3b\u8981\u7522\u54c1" : ["161\u5370\u5237\u53ca\u5176\u8f14\u52a9"], "egis" : null} | 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": "string"}, "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d": {"type": "string"}, "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f": {"type": "string"}, "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b": {"type": "string"}, "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b": {"type": "string"}, "\u7522\u696d\u985e\u5225": {"type": "array", "items": {"type": "string"}}, "\u4e3b\u8981\u7522\u54c1": {"type": "array", "items": {"type": "string"}}, "egis": {"type": "null"}}, "required": ["\u5de5\u5ee0\u540d\u7a31", "\u5de5\u5ee0\u767b\u8a18\u7de8\u865f", "\u5de5\u5ee0\u8a2d\u7acb\u8a31\u53ef\u6848\u865f", "\u5de5\u5ee0\u5730\u5740", "\u5de5\u5ee0\u5e02\u93ae\u9109\u6751\u91cc", "\u5de5\u5ee0\u8ca0\u8cac\u4eba\u59d3\u540d", "\u71df\u5229\u4e8b\u696d\u7d71\u4e00\u7de8\u865f", "\u5de5\u5ee0\u7d44\u7e54\u578b\u614b", "\u5de5\u5ee0\u8a2d\u7acb\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u6838\u51c6\u65e5\u671f", "\u5de5\u5ee0\u767b\u8a18\u72c0\u614b", "\u7522\u696d\u985e\u5225", "\u4e3b\u8981\u7522\u54c1", "egis"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 404388971, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a6568b16a7dc5ab63a95a6cb5de6c3ce", "wof:id" : 404388971, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [0.65861, 42.97111, 0.65861, 42.97111], "geometry" : {"coordinates" : [0.65861, 42.97111], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"van-checkbox": {"type": "string"}, "van-checkbox-group": {"type": "string"}, "tabbar": {"type": "string"}}, "required": ["van-checkbox", "van-checkbox-group", "tabbar"]}}, "required": ["usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"usingComponents" : {"van-checkbox" : "/miniprogram_npm/vant-weapp/checkbox/index", "van-checkbox-group" : "/miniprogram_npm/vant-weapp/checkbox-group/index", "tabbar" : "../../components/tabbar/tabbar"}} | json_instruct | {"type": "object", "properties": {"usingComponents": {"type": "object", "properties": {"van-checkbox": {"type": "string"}, "van-checkbox-group": {"type": "string"}, "tabbar": {"type": "string"}}, "required": ["van-checkbox", "van-checkbox-group", "tabbar"]}}, "required": ["usingComponents"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-uuid": {"type": "string"}}, "required": ["node-uuid"]}}, "required": ["name", "description", "author", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SSE-Example", "description" : "Example for iOS EventSource implementation on Swift", "author" : "Andres Canal", "version" : "1.0.0", "dependencies" : {"node-uuid" : "1.4.8"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "version": {"type": "string"}, "dependencies": {"type": "object", "properties": {"node-uuid": {"type": "string"}}, "required": ["node-uuid"]}}, "required": ["name", "description", "author", "version", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"schema_version" : "1.2.0", "id" : "GHSA-fpvm-x2pg-q52h", "modified" : "2022-05-01T17:58:57Z", "published" : "2022-05-01T17:58:57Z", "aliases" : ["CVE-2007-1993"], "details" : "Buffer overflow in the pfs_mountd.rpc RPC daemon in the Portable File System (PFS) in HP-UX B.11.00, B.11.11, and B.11.23 allows remote attackers to execute arbitrary code by sending \"a call to procedure 5, followed by a crafted payload to procedure 2.\"", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2007-1993"}, {"type" : "WEB", "url" : "https://exchange.xforce.ibmcloud.com/vulnerabilities/33567"}, {"type" : "WEB", "url" : "https://oval.cisecurity.org/repository/search/definition/oval%3Aorg.mitre.oval%3Adef%3A5751"}, {"type" : "WEB", "url" : "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c00913684"}, {"type" : "WEB", "url" : "http://labs.idefense.com/intelligence/vulnerabilities/display.php?id=512"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/24855"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/bid/23401"}, {"type" : "WEB", "url" : "http://www.securitytracker.com/id?1017893"}, {"type" : "WEB", "url" : "http://www.vupen.com/english/advisories/2007/1343"}], "database_specific" : {"cwe_ids" : ["CWE-119"], "severity" : "HIGH", "github_reviewed" : false}} | 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": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {"type": "string"}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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" : "3313160003", "district_id" : "3313160", "name" : "GANTEN"} | 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": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 85801053, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "611fbb4e9f0a614030348b6de7ff4f28", "wof:id" : 85801053, "wof:repo" : "whosonfirst-data-admin-be"}, "bbox" : [4.45238, 50.89659, 4.45238, 50.89659], "geometry" : {"coordinates" : [4.45238, 50.89659], "type" : "Point"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "number"}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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#"}
| {"Time" : "2021-08-12T03:00:00Z", "Temp" : 24.1, "RelHum" : 89, "WindSpeed" : 0.3, "WindDir" : 76} | 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#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"postal_code" : "60135", "place_name" : "El Sa\u00faco", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "Uruapan Progreso", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "Mart\u00ednez Villica\u00f1a", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "Jacarandas", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "18 de Marzo", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "L\u00e1zaro C\u00e1rdenas", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "Nuevo Para\u00edso", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}, {"postal_code" : "60135", "place_name" : "Valle Dorado", "place_type" : "Colonia", "county" : "Uruapan", "state" : "Michoac\u00e1n de Ocampo", "city" : "Uruapan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"postal_code": {"type": "string"}, "place_name": {"type": "string"}, "place_type": {"type": "string"}, "county": {"type": "string"}, "state": {"type": "string"}, "city": {"type": "string"}}, "required": ["postal_code", "place_name", "place_type", "county", "state", "city"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}, "6": {"type": "string"}}, "required": ["1", "3", "2", "5", "4", "6"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"username" : "user02", "additional_items" : [], "items" : {"1" : "neutral", "3" : "positive", "2" : "neutral", "5" : "neutral", "4" : "neutral", "6" : "negative"}, "tweet_id" : "571632228951846912", "timespent" : 25.648761987686, "starttime" : 1429649559.4455, "itemcount" : "6", "savingtime" : 1429649585.0943} | json_instruct | {"type": "object", "properties": {"username": {"type": "string"}, "additional_items": {"type": "array", "items": {}}, "items": {"type": "object", "properties": {"1": {"type": "string"}, "3": {"type": "string"}, "2": {"type": "string"}, "5": {"type": "string"}, "4": {"type": "string"}, "6": {"type": "string"}}, "required": ["1", "3", "2", "5", "4", "6"]}, "tweet_id": {"type": "string"}, "timespent": {"type": "number"}, "starttime": {"type": "number"}, "itemcount": {"type": "string"}, "savingtime": {"type": "number"}}, "required": ["username", "additional_items", "items", "tweet_id", "timespent", "starttime", "itemcount", "savingtime"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "crypto-js": {"type": "string"}, "express": {"type": "string"}, "mysql": {"type": "string"}, "uuid": {"type": "string"}, "uuid-validate": {"type": "string"}}, "required": ["bcrypt-nodejs", "body-parser", "crypto-js", "express", "mysql", "uuid", "uuid-validate"]}}, "required": ["name", "version", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mybooks-server", "version" : "0.1.0", "scripts" : {"start" : "node app.js"}, "dependencies" : {"bcrypt-nodejs" : "0.0.3", "body-parser" : "~1.18.2", "crypto-js" : "^3.1.9-1", "express" : "~4.15.5", "mysql" : "^2.15.0", "uuid" : "^3.2.1", "uuid-validate" : "0.0.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}}, "required": ["start"]}, "dependencies": {"type": "object", "properties": {"bcrypt-nodejs": {"type": "string"}, "body-parser": {"type": "string"}, "crypto-js": {"type": "string"}, "express": {"type": "string"}, "mysql": {"type": "string"}, "uuid": {"type": "string"}, "uuid-validate": {"type": "string"}}, "required": ["bcrypt-nodejs", "body-parser", "crypto-js", "express", "mysql", "uuid", "uuid-validate"]}}, "required": ["name", "version", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"enabled": {"type": "boolean"}, "appID": {"type": "string"}, "accessKey": {"type": "string"}, "mqttUrl": {"type": "string"}}, "required": ["enabled", "appID", "accessKey", "mqttUrl"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"enabled" : true, "appID" : "plofballon", "accessKey" : "ttn-account-v2.bFjAYbEgzSKKxO1rn4zDOlkHwTfIfgj4ItOqXJCKbEE", "mqttUrl" : "eu.thethings.network:1883"} | json_instruct | {"type": "object", "properties": {"enabled": {"type": "boolean"}, "appID": {"type": "string"}, "accessKey": {"type": "string"}, "mqttUrl": {"type": "string"}}, "required": ["enabled", "appID", "accessKey", "mqttUrl"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "foreman": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["electron", "foreman", "react-scripts"]}, "dependencies": {"type": "object", "properties": {"excel-parser": {"type": "string"}, "material-ui": {"type": "string"}, "nedb": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-flexbox-grid": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-router-redux": {"type": "string"}, "react-tap-event-plugin": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}, "simple-react-form-material-ui": {"type": "string"}, "xlsx": {"type": "string"}}, "required": ["excel-parser", "material-ui", "nedb", "react", "react-bootstrap", "react-dom", "react-flexbox-grid", "react-redux", "react-router-dom", "react-router-redux", "react-tap-event-plugin", "redux", "redux-thunk", "simple-react-form-material-ui", "xlsx"]}, "homepage": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "electron": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "build", "test", "eject", "electron", "dev"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "homepage", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "electron-with-create-react-app", "version" : "0.1.0", "private" : true, "devDependencies" : {"electron" : "^1.4.14", "foreman" : "^2.0.0", "react-scripts" : "0.8.5"}, "dependencies" : {"excel-parser" : "^0.2.2", "material-ui" : "^0.18.6", "nedb" : "^1.8.0", "react" : "^15.4.2", "react-bootstrap" : "^0.31.0", "react-dom" : "^15.6.1", "react-flexbox-grid" : "^1.1.3", "react-redux" : "^5.0.5", "react-router-dom" : "^4.1.1", "react-router-redux" : "next", "react-tap-event-plugin" : "^2.0.1", "redux" : "^3.7.1", "redux-thunk" : "^2.2.0", "simple-react-form-material-ui" : "^1.7.13", "xlsx" : "^0.10.8"}, "homepage" : "./", "main" : "src/electron-starter.js", "scripts" : {"start" : "react-scripts start", "build" : "react-scripts build", "test" : "react-scripts test --env=jsdom", "eject" : "react-scripts eject", "electron" : "electron .", "dev" : "nf start -p 3000"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "devDependencies": {"type": "object", "properties": {"electron": {"type": "string"}, "foreman": {"type": "string"}, "react-scripts": {"type": "string"}}, "required": ["electron", "foreman", "react-scripts"]}, "dependencies": {"type": "object", "properties": {"excel-parser": {"type": "string"}, "material-ui": {"type": "string"}, "nedb": {"type": "string"}, "react": {"type": "string"}, "react-bootstrap": {"type": "string"}, "react-dom": {"type": "string"}, "react-flexbox-grid": {"type": "string"}, "react-redux": {"type": "string"}, "react-router-dom": {"type": "string"}, "react-router-redux": {"type": "string"}, "react-tap-event-plugin": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}, "simple-react-form-material-ui": {"type": "string"}, "xlsx": {"type": "string"}}, "required": ["excel-parser", "material-ui", "nedb", "react", "react-bootstrap", "react-dom", "react-flexbox-grid", "react-redux", "react-router-dom", "react-router-redux", "react-tap-event-plugin", "redux", "redux-thunk", "simple-react-form-material-ui", "xlsx"]}, "homepage": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}, "eject": {"type": "string"}, "electron": {"type": "string"}, "dev": {"type": "string"}}, "required": ["start", "build", "test", "eject", "electron", "dev"]}}, "required": ["name", "version", "private", "devDependencies", "dependencies", "homepage", "main", "scripts"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"rustc" : 7151530983591731262, "features" : "[]", "target" : 14814828103201250705, "profile" : 14996655781355331481, "path" : 1036222786711178230, "deps" : [], "local" : [{"CheckDepInfo" : {"dep_info" : "debug/.fingerprint/rust_trial-9a71be56b96b15e5/dep-bin-rust_trial"}}], "rustflags" : [], "metadata" : 12112772796178596223} | json_instruct | {"type": "object", "properties": {"rustc": {"type": "integer"}, "features": {"type": "string"}, "target": {"type": "integer"}, "profile": {"type": "integer"}, "path": {"type": "integer"}, "deps": {"type": "array", "items": {}}, "local": {"type": "array", "items": {"type": "object", "properties": {"CheckDepInfo": {"type": "object", "properties": {"dep_info": {"type": "string"}}, "required": ["dep_info"]}}, "required": ["CheckDepInfo"]}}, "rustflags": {"type": "array", "items": {}}, "metadata": {"type": "integer"}}, "required": ["rustc", "features", "target", "profile", "path", "deps", "local", "rustflags", "metadata"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"expireTime" : 9007200872727670000, "key" : "/static/62ef55a62dd87f45ce7e15d7b57fc980/0a47e/NRDB2.png", "val" : "df1141aa9890f383b69c9ce747539b1d"} | json_instruct | {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"sn32.53:1.1": {"type": "string"}}, "required": ["sn32.53:1.1"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn32.53:1.1" : "cck17.231, dr17.316, ms13S3_1224, msdiv602, pts-vp-pli3.256, sc1, vri25.253"} | json_instruct | {"type": "object", "properties": {"sn32.53:1.1": {"type": "string"}}, "required": ["sn32.53:1.1"], "$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"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fzaninotto/faker": {"type": "string"}}, "required": ["php", "fzaninotto/faker"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {}, "required": []}, "branch-alias": {"type": "object", "properties": {}, "required": []}}, "required": ["providers", "aliases", "branch-alias"]}}, "required": ["laravel"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"I9W3b\\Faker\\": {"type": "string"}}, "required": ["I9W3b\\Faker\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {}, "required": []}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "extra", "autoload", "autoload-dev", "scripts", "config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "i9w3b/faker", "description" : "Pacote Laravel que gera dados falsos.", "keywords" : ["i9w3b", "laravel", "package", "dev", "faker"], "homepage" : "https://github.com/i9w3b/faker", "license" : "MIT", "authors" : [{"name" : "Marcelo Sena", "email" : "[email protected]", "homepage" : "https://github.com/i9w3b", "role" : "Developer"}], "require" : {"php" : ">=7.2", "fzaninotto/faker" : "^1.9"}, "require-dev" : {}, "extra" : {"laravel" : {"providers" : ["I9W3b\\Faker\\FakerServiceProvider"], "aliases" : {}, "branch-alias" : {}}}, "autoload" : {"psr-4" : {"I9W3b\\Faker\\" : "src"}, "files" : ["src/helpers.php"]}, "autoload-dev" : {"psr-4" : {}}, "scripts" : {}, "config" : {"sort-packages" : true}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "homepage": {"type": "string"}, "role": {"type": "string"}}, "required": ["name", "email", "homepage", "role"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "fzaninotto/faker": {"type": "string"}}, "required": ["php", "fzaninotto/faker"]}, "require-dev": {"type": "object", "properties": {}, "required": []}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}, "aliases": {"type": "object", "properties": {}, "required": []}, "branch-alias": {"type": "object", "properties": {}, "required": []}}, "required": ["providers", "aliases", "branch-alias"]}}, "required": ["laravel"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"I9W3b\\Faker\\": {"type": "string"}}, "required": ["I9W3b\\Faker\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}, "autoload-dev": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {}, "required": []}}, "required": ["psr-4"]}, "scripts": {"type": "object", "properties": {}, "required": []}, "config": {"type": "object", "properties": {"sort-packages": {"type": "boolean"}}, "required": ["sort-packages"]}}, "required": ["name", "description", "keywords", "homepage", "license", "authors", "require", "require-dev", "extra", "autoload", "autoload-dev", "scripts", "config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["generator-mcfly-ng2", "mcfly-github", "ngc-wrapped"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"distance": {"type": "number"}}, "required": ["distance"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"distance" : 0.047619047619047616} | json_instruct | {"type": "object", "properties": {"distance": {"type": "number"}}, "required": ["distance"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "null"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 105391, "name" : "Open link Context Menu modifier", "description" : "This userstyle now only removes open window options. I am trying to think of a way to add a context menu item for background tab. The open link in addon stopped working with firefox 45 and has not been updated.", "user" : {"id" : 270475, "name" : "simontv", "email" : "redacted", "paypal_email" : null, "homepage" : null, "about" : null, "license" : "publicdomain"}, "updated" : "2016-04-16T21:03:11.000Z", "weekly_install_count" : 0, "total_install_count" : 156, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/105391_after.jpeg?r=1563609697", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2014-09-13T20:08:43.000Z", "category" : "app", "raw_subcategory" : "browser", "subcategory" : "browser", "additional_info" : "Added support for Firefox v45.", "style_tags" : [], "css" : "@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);\r\n\r\n/* Open Link in New Window */\r\n\r\n#context-openlink {\r\n display: none !important;\r\n} \r\n\r\n#context-openlinkprivate {\r\n display: none !important;\r\n} \r\n", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : null, "style_settings" : []} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "user": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "email": {"type": "string"}, "paypal_email": {"type": "null"}, "homepage": {"type": "null"}, "about": {"type": "null"}, "license": {"type": "string"}}, "required": ["id", "name", "email", "paypal_email", "homepage", "about", "license"]}, "updated": {"type": "string"}, "weekly_install_count": {"type": "integer"}, "total_install_count": {"type": "integer"}, "rating": {"type": "null"}, "after_screenshot_name": {"type": "string"}, "obsoleting_style_id": {"type": "null"}, "obsoleting_style_name": {"type": "null"}, "obsolete": {"type": "integer"}, "admin_delete_reason_id": {"type": "null"}, "obsoletion_message": {"type": "null"}, "screenshots": {"type": "null"}, "license": {"type": "null"}, "created": {"type": "string"}, "category": {"type": "string"}, "raw_subcategory": {"type": "string"}, "subcategory": {"type": "string"}, "additional_info": {"type": "string"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "null"}, "style_settings": {"type": "array", "items": {}}}, "required": ["id", "name", "description", "user", "updated", "weekly_install_count", "total_install_count", "rating", "after_screenshot_name", "obsoleting_style_id", "obsoleting_style_name", "obsolete", "admin_delete_reason_id", "obsoletion_message", "screenshots", "license", "created", "category", "raw_subcategory", "subcategory", "additional_info", "style_tags", "css", "discussions", "discussionsCount", "commentsCount", "userjs_url", "style_settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "isolatedModules": {"type": "boolean"}, "declaration": {"type": "boolean"}, "declarationMap": {"type": "boolean"}, "jsx": {"type": "string"}, "incremental": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "allowSyntheticDefaultImports": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "esModuleInterop": {"type": "boolean"}}, "required": ["lib", "isolatedModules", "declaration", "declarationMap", "jsx", "incremental", "skipLibCheck", "allowSyntheticDefaultImports", "resolveJsonModule", "esModuleInterop"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"extends" : "../../tsconfig", "compilerOptions" : {"lib" : ["dom", "esnext"], "isolatedModules" : false, "declaration" : false, "declarationMap" : false, "jsx" : "react", "incremental" : true, "skipLibCheck" : true, "allowSyntheticDefaultImports" : true, "resolveJsonModule" : true, "esModuleInterop" : true}, "exclude" : ["example"]} | json_instruct | {"type": "object", "properties": {"extends": {"type": "string"}, "compilerOptions": {"type": "object", "properties": {"lib": {"type": "array", "items": {"type": "string"}}, "isolatedModules": {"type": "boolean"}, "declaration": {"type": "boolean"}, "declarationMap": {"type": "boolean"}, "jsx": {"type": "string"}, "incremental": {"type": "boolean"}, "skipLibCheck": {"type": "boolean"}, "allowSyntheticDefaultImports": {"type": "boolean"}, "resolveJsonModule": {"type": "boolean"}, "esModuleInterop": {"type": "boolean"}}, "required": ["lib", "isolatedModules", "declaration", "declarationMap", "jsx", "incremental", "skipLibCheck", "allowSyntheticDefaultImports", "resolveJsonModule", "esModuleInterop"]}, "exclude": {"type": "array", "items": {"type": "string"}}}, "required": ["extends", "compilerOptions", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"place_name": {"type": "string"}, "state_name": {"type": "string"}, "state_abbrv": {"type": "string"}, "lat": {"type": "string"}, "long": {"type": "string"}}, "required": ["place_name", "state_name", "state_abbrv", "lat", "long"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"place_name" : "Strathmere", "state_name" : "New Jersey", "state_abbrv" : "NJ", "lat" : "39.1992", "long" : "-74.6554"} | 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#"} |
Generate a valid JSON object that conforms to the following schema:
{"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" : "NYAIIK", "frequency" : 1, "gender" : "female"}] | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isCube": {"type": "boolean"}}, "required": ["name", "isCube"]}}, "floats": {"type": "array", "items": {}}, "vectors2": {"type": "array", "items": {}}, "vectors3": {"type": "array", "items": {}}}, "required": ["textures", "floats", "vectors2", "vectors3"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"textures" : [{"name" : "diffuseSampler", "isCube" : false}, {"name" : "otherSampler", "isCube" : false}], "floats" : [], "vectors2" : [], "vectors3" : []} | json_instruct | {"type": "object", "properties": {"textures": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "isCube": {"type": "boolean"}}, "required": ["name", "isCube"]}}, "floats": {"type": "array", "items": {}}, "vectors2": {"type": "array", "items": {}}, "vectors3": {"type": "array", "items": {}}}, "required": ["textures", "floats", "vectors2", "vectors3"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "destiny", "gametext", "lore"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 2795, "gempId" : "8_64", "side" : "Light", "rarity" : "R", "set" : "8", "printings" : [{"set" : "8"}], "front" : {"title" : "Were You Looking For Me?", "imageUrl" : "https://res.starwarsccg.org/cards/Endor-Light/large/wereyoulookingforme.gif", "type" : "Interrupt", "subType" : "Used Or Lost", "destiny" : "5", "gametext" : "USED: Take one or two communications or protocol droids (or one of each) into hand from Reserve Deck; reshuffle. LOST: Retrieve C-3PO. OR If C-3PO is in battle at a site, add one battle destiny (or two if with three Ewoks).", "lore" : "For the second time in the Endor mission, C-3PO saved the day."}, "pulls" : ["CZ-3 (Seezee-Three)", "Artoo & Threepio", "Artoo & Threepio (V)", "C-3PO (See-Threepio)", "C-3PO (See-Threepio) (V)", "K-3PO (Kay-Threepio)", "Lars' Protocol Droid (V)", "R-3PO (Ar-Threepio)", "R-3PO (Ar-Threepio) (V)", "See-Threepio", "See-Threepio (V)", "Threepio", "Threepio With His Parts Showing"], "legacy" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "gempId": {"type": "string"}, "side": {"type": "string"}, "rarity": {"type": "string"}, "set": {"type": "string"}, "printings": {"type": "array", "items": {"type": "object", "properties": {"set": {"type": "string"}}, "required": ["set"]}}, "front": {"type": "object", "properties": {"title": {"type": "string"}, "imageUrl": {"type": "string"}, "type": {"type": "string"}, "subType": {"type": "string"}, "destiny": {"type": "string"}, "gametext": {"type": "string"}, "lore": {"type": "string"}}, "required": ["title", "imageUrl", "type", "subType", "destiny", "gametext", "lore"]}, "pulls": {"type": "array", "items": {"type": "string"}}, "legacy": {"type": "boolean"}}, "required": ["id", "gempId", "side", "rarity", "set", "printings", "front", "pulls", "legacy"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Safira", "displayName" : "Safira"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [30.071314811706543, 30.4019558429718, 30.638670444488525, 30.223013639450073, 29.940027952194214, 29.71529769897461, 29.916088104248047, 29.690988302230835, 28.73081088066101, 29.760322332382202, 29.507535219192505, 29.322572708129883, 32.1322546005249, 29.55801773071289, 29.367575645446777, 29.27572751045227, 29.619712352752686, 28.152442693710327, 29.47424840927124, 29.44314217567444, 29.404362678527832, 28.393990516662598, 31.309752702713013, 29.837475299835205, 29.928770065307617, 29.701475620269775, 28.983881950378418, 29.59596848487854, 30.22427749633789, 30.559825658798218] | json_instruct | {"type": "array", "items": {"type": "number"}, "$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"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Token D9LQ", "symbol" : "D9LQ1", "decimals" : 6, "address" : "D9LQ1XrgxH6apiGKXiRAdQy1bDwfkkYDrVKhpoANktRe", "chainId" : 103} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "address": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "symbol", "decimals", "address", "chainId"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "engines": {"type": "object", "properties": {"io.js": {"type": "string"}}, "required": ["io.js"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-ci": {"type": "string"}, "test-cov": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "test-ci", "test-cov", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"magnet-uri": {"type": "string"}, "request": {"type": "string"}}, "required": ["magnet-uri", "request"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "mocha": {"type": "string"}, "istanbul": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["eslint", "mocha", "istanbul", "coveralls"]}}, "required": ["name", "version", "description", "main", "bin", "engines", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "magnet2torrent", "version" : "1.0.3", "description" : "convert magnet uri to torrent file", "main" : "index.js", "bin" : "bin/magnet2torrent.js", "engines" : {"io.js" : "*"}, "scripts" : {"test" : "npm run lint && npm run test-ci", "test-ci" : "mocha", "test-cov" : "istanbul cover _mocha --report lcovonly", "lint" : "eslint *.js test/ && echo Lint passed."}, "repository" : {"type" : "git", "url" : "https://github.com/killwing/magnet2torrent.git"}, "keywords" : ["magnet", "torrent"], "author" : "Kelvin Chen", "license" : "MIT", "bugs" : {"url" : "https://github.com/killwing/magnet2torrent/issues"}, "homepage" : "https://github.com/killwing/magnet2torrent#readme", "dependencies" : {"magnet-uri" : "^5.0.0", "request" : "^2.57.0"}, "devDependencies" : {"eslint" : "^0.22.1", "mocha" : "^2.2.5", "istanbul" : "^0.3.15", "coveralls" : "^2.11.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "string"}, "engines": {"type": "object", "properties": {"io.js": {"type": "string"}}, "required": ["io.js"]}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test-ci": {"type": "string"}, "test-cov": {"type": "string"}, "lint": {"type": "string"}}, "required": ["test", "test-ci", "test-cov", "lint"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"magnet-uri": {"type": "string"}, "request": {"type": "string"}}, "required": ["magnet-uri", "request"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}, "mocha": {"type": "string"}, "istanbul": {"type": "string"}, "coveralls": {"type": "string"}}, "required": ["eslint", "mocha", "istanbul", "coveralls"]}}, "required": ["name", "version", "description", "main", "bin", "engines", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ast" : null, "code" : "class GoogleSpreadsheetFormulaError {\n constructor(errorInfo) {\n this.type = errorInfo.type;\n this.message = errorInfo.message;\n }\n\n}\n\nmodule.exports = {\n GoogleSpreadsheetFormulaError\n};", "map" : {"version" : 3, "sources" : ["/Users/safahi/Desktop/index-ui-master/node_modules/google-spreadsheet/lib/errors.js"], "names" : ["GoogleSpreadsheetFormulaError", "constructor", "errorInfo", "type", "message", "module", "exports"], "mappings" : "AAAA,MAAMA,6BAAN,CAAoC;AAClCC,EAAAA,WAAW,CAACC,SAAD,EAAY;AACrB,SAAKC,IAAL,GAAYD,SAAS,CAACC,IAAtB;AACA,SAAKC,OAAL,GAAeF,SAAS,CAACE,OAAzB;AACD;;AAJiC;;AAOpCC,MAAM,CAACC,OAAP,GAAiB;AACfN,EAAAA;AADe,CAAjB", "sourcesContent" : ["class GoogleSpreadsheetFormulaError {\n constructor(errorInfo) {\n this.type = errorInfo.type;\n this.message = errorInfo.message;\n }\n}\n\nmodule.exports = {\n GoogleSpreadsheetFormulaError,\n};\n"]}, "metadata" : {}, "sourceType" : "script"} | json_instruct | {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "mappings": {"type": "string"}, "sourcesContent": {"type": "array", "items": {"type": "string"}}}, "required": ["version", "sources", "names", "mappings", "sourcesContent"]}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "financer": {"type": "string"}, "price": {"type": "string"}, "buyback": {"type": "string"}, "shipment": {"type": "object", "properties": {"cargo": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "amount": {"type": "string"}}, "required": ["description", "amount"]}}}, "required": ["items"]}, "cargo_hash": {"type": "string"}, "owner": {"type": "string"}, "escrow_address": {"type": "string"}}, "required": ["cargo", "cargo_hash", "owner", "escrow_address"]}}, "required": ["id", "financer", "price", "buyback", "shipment"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "financer" : "fiona", "price" : "2.230000", "buyback" : "2.500000", "shipment" : {"cargo" : {"items" : [{"description" : "cola cans", "amount" : "100"}]}, "cargo_hash" : "0x5b78156b9d53dc26775762bee46dccc4508f525c8ee25406932dd935bce22591", "owner" : "isabel", "escrow_address" : "0x609F06EbE0047Cd1A487acdb85d5373c8f61a5D0"}}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "financer": {"type": "string"}, "price": {"type": "string"}, "buyback": {"type": "string"}, "shipment": {"type": "object", "properties": {"cargo": {"type": "object", "properties": {"items": {"type": "array", "items": {"type": "object", "properties": {"description": {"type": "string"}, "amount": {"type": "string"}}, "required": ["description", "amount"]}}}, "required": ["items"]}, "cargo_hash": {"type": "string"}, "owner": {"type": "string"}, "escrow_address": {"type": "string"}}, "required": ["cargo", "cargo_hash", "owner", "escrow_address"]}}, "required": ["id", "financer", "price", "buyback", "shipment"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"nextcloudinstitutions_file_added": {"type": "string"}, "nextcloudinstitutions_file_removed": {"type": "string"}, "nextcloudinstitutions_file_updated": {"type": "string"}, "nextcloudinstitutions_folder_created": {"type": "string"}, "nextcloudinstitutions_folder_selected": {"type": "string"}, "nextcloudinstitutions_node_authorized": {"type": "string"}, "nextcloudinstitutions_node_deauthorized": {"type": "string"}, "nextcloudinstitutions_node_deauthorized_no_user": {"type": "string"}}, "required": ["nextcloudinstitutions_file_added", "nextcloudinstitutions_file_removed", "nextcloudinstitutions_file_updated", "nextcloudinstitutions_folder_created", "nextcloudinstitutions_folder_selected", "nextcloudinstitutions_node_authorized", "nextcloudinstitutions_node_deauthorized", "nextcloudinstitutions_node_deauthorized_no_user"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nextcloudinstitutions_file_added" : "A user added a file to Nextcloud (for Institutions) in a project", "nextcloudinstitutions_file_removed" : "A user removed a file from Nextcloud (for Institutions) in a project", "nextcloudinstitutions_file_updated" : "A user updated a file in Nextcloud (for Institutions) in a project", "nextcloudinstitutions_folder_created" : "A user created a folder in Nextcloud (for Institutions) in a project", "nextcloudinstitutions_folder_selected" : "A user linked a Nextcloud (for Institutions) folder in a project", "nextcloudinstitutions_node_authorized" : "A user authorized the Nextcloud (for Institutions) addon for a project", "nextcloudinstitutions_node_deauthorized" : "A user deauthorized the Nextcloud (for Institutions) addon for a project", "nextcloudinstitutions_node_deauthorized_no_user" : "Nextcloud (for Institutions) addon for a project deauthorized"} | json_instruct | {"type": "object", "properties": {"nextcloudinstitutions_file_added": {"type": "string"}, "nextcloudinstitutions_file_removed": {"type": "string"}, "nextcloudinstitutions_file_updated": {"type": "string"}, "nextcloudinstitutions_folder_created": {"type": "string"}, "nextcloudinstitutions_folder_selected": {"type": "string"}, "nextcloudinstitutions_node_authorized": {"type": "string"}, "nextcloudinstitutions_node_deauthorized": {"type": "string"}, "nextcloudinstitutions_node_deauthorized_no_user": {"type": "string"}}, "required": ["nextcloudinstitutions_file_added", "nextcloudinstitutions_file_removed", "nextcloudinstitutions_file_updated", "nextcloudinstitutions_folder_created", "nextcloudinstitutions_folder_selected", "nextcloudinstitutions_node_authorized", "nextcloudinstitutions_node_deauthorized", "nextcloudinstitutions_node_deauthorized_no_user"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"comment": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "rules": {"type": "array", "items": {"type": "object", "properties": {"action": {"type": "string"}, "gate": {"type": "string"}, "id": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "trigger": {"type": "string"}}, "required": ["action", "gate", "id", "params", "trigger"]}}, "version": {"type": "string"}}, "required": ["comment", "id", "name", "rules", "version"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"comment" : "", "id" : "1afd4470-ea7a-486a-8807-97dfc4e2fa3e", "name" : "curl_example", "rules" : [{"action" : "STOP", "gate" : "dockerfile", "id" : "5761853b-4d78-49ad-8a22-fc591ee958e2", "params" : [{"name" : "instruction", "value" : "RUN"}, {"name" : "check", "value" : "like"}, {"name" : "value", "value" : ".*curl.*"}], "trigger" : "instruction"}, {"action" : "GO", "gate" : "dockerfile", "id" : "edca7b93-7ab5-4ea0-9aad-b74e993f3493", "params" : [{"name" : "instruction", "value" : "HEALTHCHECK"}, {"name" : "check", "value" : "exists"}], "trigger" : "instruction"}, {"action" : "STOP", "gate" : "dockerfile", "id" : "aea1c585-7a98-4edf-b67d-31abd15e2ac2", "params" : [], "trigger" : "no_dockerfile_provided"}, {"action" : "STOP", "gate" : "packages", "id" : "aa209113-7b93-42ad-b58b-ef12d0ff4b10", "params" : [{"name" : "name", "value" : "curl"}], "trigger" : "blacklist"}], "version" : "1_0"} | json_instruct | {"type": "object", "properties": {"comment": {"type": "string"}, "id": {"type": "string"}, "name": {"type": "string"}, "rules": {"type": "array", "items": {"type": "object", "properties": {"action": {"type": "string"}, "gate": {"type": "string"}, "id": {"type": "string"}, "params": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "trigger": {"type": "string"}}, "required": ["action", "gate", "id", "params", "trigger"]}}, "version": {"type": "string"}}, "required": ["comment", "id", "name", "rules", "version"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"thanks": {"type": "string"}, "points-user": {"type": "string"}, "leaderboard-pagesize": {"type": "string"}}, "required": ["thanks", "points-user", "leaderboard-pagesize"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"thanks" : "14400", "points-user" : "10", "leaderboard-pagesize" : "5"} | json_instruct | {"type": "object", "properties": {"thanks": {"type": "string"}, "points-user": {"type": "string"}, "leaderboard-pagesize": {"type": "string"}}, "required": ["thanks", "points-user", "leaderboard-pagesize"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"900717473": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717474": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717475": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717476": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900717473", "900717474", "900717475", "900717476"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"900717473" : {"nama" : "TPS 1", "dapil" : [7301, 17304, 2730302]}, "900717474" : {"nama" : "TPS 2", "dapil" : [7301, 17304, 2730302]}, "900717475" : {"nama" : "TPS 3", "dapil" : [7301, 17304, 2730302]}, "900717476" : {"nama" : "TPS 4", "dapil" : [7301, 17304, 2730302]}} | json_instruct | {"type": "object", "properties": {"900717473": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717474": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717475": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900717476": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900717473", "900717474", "900717475", "900717476"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"ini": {"type": "string"}, "puppeteer": {"type": "string"}, "pushover-notifications": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["ini", "puppeteer", "pushover-notifications", "shelljs"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["dependencies", "name", "version", "description", "main", "author", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"dependencies" : {"ini" : "^1.3.5", "puppeteer" : "^1.8.0", "pushover-notifications" : "^1.2.2", "shelljs" : "^0.8.3"}, "name" : "delivery-slot-bot", "version" : "1.0.0", "description" : "Tool to find supermarket online delivery slots", "main" : "delivery-slots.js", "author" : "Paul Maunders", "license" : "MIT", "private" : false} | json_instruct | {"type": "object", "properties": {"dependencies": {"type": "object", "properties": {"ini": {"type": "string"}, "puppeteer": {"type": "string"}, "pushover-notifications": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["ini", "puppeteer", "pushover-notifications", "shelljs"]}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}}, "required": ["dependencies", "name", "version", "description", "main", "author", "license", "private"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "60521295-ac7f-482f-86fc-64f9c90ad37d", "firstName" : "Antonina", "lastName" : "Paucek", "email" : "[email protected]", "username" : "[email protected]", "password" : "bat", "organisations" : [{"id" : "9be9f611-2d36-431a-9109-7fcbbfc88fc8", "code" : "C99", "name" : "University of Cumbria", "permissions" : [], "notifications" : ["course_published", "course_changed", "course_withdrawn", "course_vacancies_changed", "course_published_training_provider", "course_changed_training_provider", "course_withdrawn_training_provider", "course_vacancies_changed_training_provider"]}], "createdAt" : "2022-03-07T12:32:03.224Z", "updatedAt" : "2022-03-08T20:09:43.669Z", "active" : false} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "firstName": {"type": "string"}, "lastName": {"type": "string"}, "email": {"type": "string"}, "username": {"type": "string"}, "password": {"type": "string"}, "organisations": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "code": {"type": "string"}, "name": {"type": "string"}, "permissions": {"type": "array", "items": {}}, "notifications": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "code", "name", "permissions", "notifications"]}}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "active": {"type": "boolean"}}, "required": ["id", "firstName", "lastName", "email", "username", "password", "organisations", "createdAt", "updatedAt", "active"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "When Will My Life Begin-\u9b54\u53d1\u5947\u7f18OST", "author" : "Mandy Moore", "musicType" : "\u5f71\u89c6", "musicNo" : "0011576"} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "author": {"type": "string"}, "musicType": {"type": "string"}, "musicNo": {"type": "string"}}, "required": ["title", "author", "musicType", "musicNo"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "trait": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "icon": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "grantsPowers": {"type": "array", "items": {"type": "string"}}, "grantsSlot": {"type": "array", "items": {}}, "grantsTrait": {"type": "array", "items": {}}, "description": {"type": "string"}, "lore": {"type": "string"}}, "required": ["id", "name", "type", "trait", "icon", "stats", "grantsPowers", "grantsSlot", "grantsTrait", "description", "lore"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "first-wind", "name" : "First Wind", "type" : "minor", "trait" : [{"id" : "trait-light-storm-or-death", "name" : "Light, Storm or Death"}], "icon" : "first-wind.png", "stats" : [{"name" : "Health", "value" : "500"}], "grantsPowers" : ["power_discipline_runescarredgladiator_first_wind"], "grantsSlot" : [], "grantsTrait" : [], "description" : "", "lore" : "."} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "type": {"type": "string"}, "trait": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "icon": {"type": "string"}, "stats": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "string"}}, "required": ["name", "value"]}}, "grantsPowers": {"type": "array", "items": {"type": "string"}}, "grantsSlot": {"type": "array", "items": {}}, "grantsTrait": {"type": "array", "items": {}}, "description": {"type": "string"}, "lore": {"type": "string"}}, "required": ["id", "name", "type", "trait", "icon", "stats", "grantsPowers", "grantsSlot", "grantsTrait", "description", "lore"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"route_25": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "item": {"type": "string"}, "canvas_left": {"type": "integer"}, "canvas_top": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "canvas_depth": {"type": "integer"}}, "required": ["type", "item", "canvas_left", "canvas_top", "width", "height", "canvas_depth"]}}}, "required": ["type", "content"]}}}, "required": ["type", "content"]}}, "required": ["route_25"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"route_25" : {"type" : "container", "content" : [{"type" : "canvas", "content" : [{"type" : "item", "item" : "slot_route_25_0", "canvas_left" : 483, "canvas_top" : 38, "width" : 32, "height" : 32, "canvas_depth" : 2}, {"type" : "item", "item" : "hubslot_route_25_0", "canvas_left" : 430, "canvas_top" : 38, "width" : 138, "height" : 32, "canvas_depth" : 1}, {"type" : "item", "item" : "route_25", "canvas_left" : 396, "canvas_top" : 0, "width" : 208, "height" : 128, "canvas_depth" : 0}]}]}} | json_instruct | {"type": "object", "properties": {"route_25": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "content": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "item": {"type": "string"}, "canvas_left": {"type": "integer"}, "canvas_top": {"type": "integer"}, "width": {"type": "integer"}, "height": {"type": "integer"}, "canvas_depth": {"type": "integer"}}, "required": ["type", "item", "canvas_left", "canvas_top", "width", "height", "canvas_depth"]}}}, "required": ["type", "content"]}}}, "required": ["type", "content"]}}, "required": ["route_25"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"$schema": {"type": "string"}, "dest": {"type": "string"}, "lib": {"type": "object", "properties": {"languageLevel": {"type": "array", "items": {"type": "string"}}, "entryFile": {"type": "string"}, "flatModuleFile": {"type": "string"}, "umdModuleIds": {"type": "object", "properties": {"@alfresco/js-api": {"type": "string"}}, "required": ["@alfresco/js-api"]}}, "required": ["languageLevel", "entryFile", "flatModuleFile", "umdModuleIds"]}}, "required": ["$schema", "dest", "lib"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$schema" : "../../node_modules/ng-packagr/ng-package.schema.json", "dest" : "../dist/process-services-cloud", "lib" : {"languageLevel" : ["dom", "es2017"], "entryFile" : "src/public-api.ts", "flatModuleFile" : "adf-process-services-cloud", "umdModuleIds" : {"@alfresco/js-api" : "@alfresco/js-ap"}}} | json_instruct | {"type": "object", "properties": {"$schema": {"type": "string"}, "dest": {"type": "string"}, "lib": {"type": "object", "properties": {"languageLevel": {"type": "array", "items": {"type": "string"}}, "entryFile": {"type": "string"}, "flatModuleFile": {"type": "string"}, "umdModuleIds": {"type": "object", "properties": {"@alfresco/js-api": {"type": "string"}}, "required": ["@alfresco/js-api"]}}, "required": ["languageLevel", "entryFile", "flatModuleFile", "umdModuleIds"]}}, "required": ["$schema", "dest", "lib"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"web" : [{"value" : ["\u4eb2\u548c\u529b", "\u4eb2\u548c", "\u59fb\u4eb2"], "key" : "affinity"}, {"value" : ["\u4eb2\u548c\u8272\u8c31\u6cd5", "\u4eb2\u548c\u5c42\u6790", "\u4eb2\u548c\u8272\u8c31\u6cd5"], "key" : "Affinity chromatography"}, {"value" : ["\u5316\u5b66\u4eb2\u5408\u52bf", "\u5316\u5b66\u4eb2\u548c\u529b", "\u5316\u5b66\u4eb2\u5408\u529b"], "key" : "chemical affinity"}], "query" : "affinity", "translation" : ["\u4eb2\u548c\u529b"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=affinity"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=affinity"}, "basic" : {"us-phonetic" : "\u0259'f\u026an\u0259ti", "phonetic" : "\u0259'f\u026an\u026at\u026a", "uk-phonetic" : "\u0259'f\u026an\u026at\u026a", "explains" : ["n. \u5bc6\u5207\u5173\u7cfb\uff1b\u5438\u5f15\u529b\uff1b\u59fb\u4eb2\u5173\u7cfb\uff1b\u7c7b\u540c"]}, "l" : "EN2zh-CHS"} | json_instruct | {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"} |
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#"}
| [["120116014001", "\u65f6\u5c1a\u5e7f\u573a\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014002", "\u798f\u745e\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014003", "\u5eb7\u7fe0\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014004", "\u7d2b\u4e91\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014005", "\u96c5\u56ed\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014006", "\u534e\u7eb3\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014007", "\u7fe0\u4ea8\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014008", "\u82b3\u6797\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014009", "\u6cf0\u4e30\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014010", "\u4e1c\u6d77\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"], ["120116014011", "\u76db\u6e05\u793e\u533a\u5c45\u59d4\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react-app": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "react-dom": {"type": "string"}, "react-test-renderer": {"type": "string"}, "react-testing-library": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-plugin-transform-class-properties", "babel-preset-es2015", "babel-preset-react-app", "eslint", "eslint-plugin-prettier", "jest", "prettier", "react-dom", "react-test-renderer", "react-testing-library"]}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}}, "required": ["prop-types", "react"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "reclick", "version" : "0.2.1", "description" : "Clicking Menu in React made simpler!", "main" : "./lib/index.js", "scripts" : {"dev" : "BABEL_ENV=development babel --watch ./src/ --out-dir ./lib", "build" : "BABEL_ENV=production babel ./src/ --out-dir ./lib", "test" : "eslint src/ && jest --coverage"}, "repository" : {"type" : "git", "url" : "git+https://github.com/PaulRosset/reclick.git"}, "keywords" : ["react", "click", "menu"], "author" : "Paul Rosset <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/PaulRosset/reclick/issues"}, "homepage" : "https://github.com/PaulRosset/reclick#readme", "devDependencies" : {"babel-cli" : "^6.26.0", "babel-eslint" : "^8.2.2", "babel-plugin-transform-class-properties" : "^6.24.1", "babel-preset-es2015" : "^6.24.1", "babel-preset-react-app" : "^3.1.1", "eslint" : "^4.19.0", "eslint-plugin-prettier" : "^2.6.0", "jest" : "^22.4.3", "prettier" : "^1.11.1", "react-dom" : "^16.3.0", "react-test-renderer" : "^16.3.1", "react-testing-library" : "^2.1.1"}, "dependencies" : {"prop-types" : "^15.6.1", "react" : "^16.3.2"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "build": {"type": "string"}, "test": {"type": "string"}}, "required": ["dev", "build", "test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel-cli": {"type": "string"}, "babel-eslint": {"type": "string"}, "babel-plugin-transform-class-properties": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react-app": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-prettier": {"type": "string"}, "jest": {"type": "string"}, "prettier": {"type": "string"}, "react-dom": {"type": "string"}, "react-test-renderer": {"type": "string"}, "react-testing-library": {"type": "string"}}, "required": ["babel-cli", "babel-eslint", "babel-plugin-transform-class-properties", "babel-preset-es2015", "babel-preset-react-app", "eslint", "eslint-plugin-prettier", "jest", "prettier", "react-dom", "react-test-renderer", "react-testing-library"]}, "dependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}}, "required": ["prop-types", "react"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "FeatureCollection", "features" : [{"type" : "Feature", "properties" : {"label:cs" : "Zvoni\u010dka v Pazu\u0161e pobl\u00ed\u017e kaple", "P31" : "http://www.wikidata.org/entity/Q10861631", "P31^label:cs" : "Zvoni\u010dka", "P131^label:cs" : "Litomy\u0161l", "P6736" : "17537"}, "geometry" : {"type" : "Point", "coordinates" : [16.37128, 49.87808]}}]} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"label:cs": {"type": "string"}, "P31": {"type": "string"}, "P31^label:cs": {"type": "string"}, "P131^label:cs": {"type": "string"}, "P6736": {"type": "string"}}, "required": ["label:cs", "P31", "P31^label:cs", "P131^label:cs", "P6736"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "passomatic", "version" : "1.0.7", "description" : "Passomatic is a lightweight password generation module that takes one argument, a number from 1-10 as an indication of password strength. Effortlessly generate placeholder passwords upon account creation, integrate behind a UI with a dial or slider, and enjoy the ease at which passomatic generates passwords of all strengths according to the most standard password conventions.", "main" : "passomatic.js", "scripts" : {"test" : "node passomatic.test.js", "prepublish" : "npm test"}, "keywords" : ["password", "generator", "password generator", "generate", "alphanumeric", "alpha-numeric", "numeric", "random password", "encryption", "passphrase", "passcode", "keycode", "pass phrase", "pass word", "pass code", "key code", "Unicode", "UTF-8", "placeholder", "random", "unique", "crypto", "cryptography", "easy", "medium", "hard", "weak", "strong"], "author" : "", "license" : "MIT"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "prepublish"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "Fable: A Language for Enforcing User-defined Security Policies.", "fields" : ["language based security", "computer security model", "information security standards", "security policy", "data security"], "abstract" : "This paper presents FABLE, a core formalism for a programming language in which programmers may specify security policies and reason that these policies are properly enforced. In FABLE, security policies can be expressed by associating security labels with the data or actions they protect. Programmers define the semantics of labels in a separate part of the program called the enforcement policy. FABLE prevents a policy from being circumvented by allowing labeled terms to be manipulated only within the enforcement policy; application code must treat labeled values abstractly. Together, these features facilitate straightforward proofs that programs implementing a particular policy achieve their high-level security goals. FABLE is flexible enough to implement a wide variety of security policies, including access control, information flow, provenance, and security automata. We have implemented FABLE as part of the LINKS web programming language; we call the resulting language SELlNKS. We report on our experience using SELlNKS to build two substantial applications, a wiki and an on-line store, equipped with a combination of access control and provenance policies. To our knowledge, no existing framework enables the enforcement of such a wide variety of security policies with an equally high level of assurance.", "citation" : "Citations (131)", "departments" : ["University of Maryland, College Park", "University of Maryland, College Park", "University of Maryland, College Park"], "authors" : ["Nikhil Swamy.....http://dblp.org/pers/hd/s/Swamy:Nikhil", "Brian J. Corcoran.....http://dblp.org/pers/hd/c/Corcoran:Brian_J=", "Michael Hicks.....http://dblp.org/pers/hd/h/Hicks_0001:Michael"], "conf" : "sp", "year" : "2008", "pages" : 15} | 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": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stationId" : 1133914, "stationGroupId" : 1133914, "name" : "\u7b20\u9593", "lineId" : 11339, "zipCode" : "309-1626", "pref" : "\u8328\u57ce\u770c", "city" : "\u7b20\u9593\u5e02", "town" : "\u4e0b\u5e02\u6bdb", "longitude" : 140.246515, "latitude" : 36.373056, "status" : 0} | json_instruct | {"type": "object", "properties": {"stationId": {"type": "integer"}, "stationGroupId": {"type": "integer"}, "name": {"type": "string"}, "lineId": {"type": "integer"}, "zipCode": {"type": "string"}, "pref": {"type": "string"}, "city": {"type": "string"}, "town": {"type": "string"}, "longitude": {"type": "number"}, "latitude": {"type": "number"}, "status": {"type": "integer"}}, "required": ["stationId", "stationGroupId", "name", "lineId", "zipCode", "pref", "city", "town", "longitude", "latitude", "status"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this 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", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"contract" : "0x147c6e79cbc375f101bc44dd54b03ea051a446cc", "tool" : "osiris", "start" : 1564626958.5800853, "end" : 1564626961.3810532, "duration" : 2.8009679317474365, "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://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"e164": {"type": "string"}, "expected": {"type": "string"}}, "required": ["e164", "expected"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"e164" : "18002530000", "expected" : "+1 800-253-0000"}, {"e164" : "19002530000", "expected" : "+1 900-253-0000"}, {"e164" : "12423651234", "expected" : "+1 242-365-1234"}, {"e164" : "442070313000", "expected" : "+44 20 7031 3000"}, {"e164" : "491234", "expected" : "+49 1234"}, {"e164" : "390236618300", "expected" : "+39 02 3661 8300"}, {"e164" : "39345678901", "expected" : "+39 345 678 901"}, {"e164" : "61236618300", "expected" : "+61 2 3661 8300"}, {"e164" : "541187654321", "expected" : "+54 11 8765-4321"}, {"e164" : "5491187654321", "expected" : "+54 9 11 8765-4321"}, {"e164" : "5215512345678", "expected" : "+52 55 1234 5678"}, {"e164" : "523312345678", "expected" : "+52 33 1234 5678"}, {"e164" : "528211234567", "expected" : "+52 821 123 4567"}, {"e164" : "+33498281534", "expected" : "+33 4 98 28 15 34"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"e164": {"type": "string"}, "expected": {"type": "string"}}, "required": ["e164", "expected"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.