input
stringlengths 159
2.05k
| output
stringlengths 5
10.3k
| task
stringclasses 1
value | schema
stringlengths 100
1.99k
|
---|---|---|---|
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Observatory": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "AlternateName": {"type": "array", "items": {"type": "string"}}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}, "InformationURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "URL", "Description"]}}, "required": ["ResourceName", "AlternateName", "ReleaseDate", "Description", "Contact", "InformationURL"]}, "Location": {"type": "object", "properties": {"ObservatoryRegion": {"type": "string"}}, "required": ["ObservatoryRegion"]}}, "required": ["ResourceID", "ResourceHeader", "Location"]}}, "required": ["xmlns:xsi", "xmlns", "xsi:schemaLocation", "Version", "Observatory"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Spase" : {"xmlns:xsi" : "http://www.w3.org/2001/XMLSchema-instance", "xmlns" : "http://www.spase-group.org/data/schema", "xsi:schemaLocation" : "http://www.spase-group.org/data/schema http://www.spase-group.org/data/schema/spase-2_2_0.xsd", "Version" : "2.2.0", "Observatory" : {"ResourceID" : "spase://SMWG/Observatory/DoubleStar", "ResourceHeader" : {"ResourceName" : "Double Star Mission", "AlternateName" : ["Tan Ce", "TC"], "ReleaseDate" : "2019-05-05T12:34:56Z", "Description" : "Double Star 1 and 2, also known as Explorer 1/2 or Tan Ce 1/2 (TC 1/2) , is a European-Chinese (PRC) (ESA-CNSA) two-satellite joint mission.\n Double Star 1 is an equatorial orbiter, while Double Star 2 is a polar orbiter. The Project Scientist for Double Star is Philippe Escoubet of ESA/ESTEC.", "Contact" : {"PersonID" : "spase://SMWG/Person/Christophe.Philippe.Escoubet", "Role" : "ProjectScientist"}, "InformationURL" : {"Name" : "Double Star Home Page", "URL" : "http://sci.esa.int/double-star/", "Description" : "Information about the Double Star mission"}}, "Location" : {"ObservatoryRegion" : "Earth.Magnetosphere.Main"}}}} | json_instruct | {"type": "object", "properties": {"Spase": {"type": "object", "properties": {"xmlns:xsi": {"type": "string"}, "xmlns": {"type": "string"}, "xsi:schemaLocation": {"type": "string"}, "Version": {"type": "string"}, "Observatory": {"type": "object", "properties": {"ResourceID": {"type": "string"}, "ResourceHeader": {"type": "object", "properties": {"ResourceName": {"type": "string"}, "AlternateName": {"type": "array", "items": {"type": "string"}}, "ReleaseDate": {"type": "string"}, "Description": {"type": "string"}, "Contact": {"type": "object", "properties": {"PersonID": {"type": "string"}, "Role": {"type": "string"}}, "required": ["PersonID", "Role"]}, "InformationURL": {"type": "object", "properties": {"Name": {"type": "string"}, "URL": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Name", "URL", "Description"]}}, "required": ["ResourceName", "AlternateName", "ReleaseDate", "Description", "Contact", "InformationURL"]}, "Location": {"type": "object", "properties": {"ObservatoryRegion": {"type": "string"}}, "required": ["ObservatoryRegion"]}}, "required": ["ResourceID", "ResourceHeader", "Location"]}}, "required": ["xmlns:xsi", "xmlns", "xsi:schemaLocation", "Version", "Observatory"]}}, "required": ["Spase"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "stage": {"type": "string"}, "build": {"type": "string"}, "build:prod": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "stage", "build", "build:prod", "lint", "test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "core-js": {"type": "string"}, "view-design": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "core-js", "view-design", "vue", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-eslint": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-service", "eslint", "eslint-plugin-vue", "less", "less-loader", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "repository", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "vue-demo", "version" : "1.0.0", "private" : true, "scripts" : {"dev" : "vue-cli-service serve --mode dev", "stage" : "vue-cli-service build --mode stage", "build" : "vue-cli-service build --mode prod", "build:prod" : "vue-cli-service build --mode prod", "lint" : "vue-cli-service lint", "test" : "npm run lint", "start" : "npm run dev --open"}, "repository" : {"type" : "git", "url" : "git+http://10.18.101.167:8081/FABS/vue-base-frame.git"}, "author" : "Pedro", "dependencies" : {"axios" : "^0.21.0", "core-js" : "^3.6.5", "view-design" : "^4.4.0", "vue" : "^2.6.12", "vue-router" : "^3.4.7", "vuex" : "^3.5.1"}, "devDependencies" : {"@vue/cli-plugin-babel" : "^4.5.8", "@vue/cli-plugin-eslint" : "^4.5.8", "@vue/cli-service" : "^4.5.8", "eslint" : "^7.12.0", "eslint-plugin-vue" : "^7.1.0", "less" : "^4.1.1", "less-loader" : "^6.0.0", "vue-template-compiler" : "^2.6.12"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "stage": {"type": "string"}, "build": {"type": "string"}, "build:prod": {"type": "string"}, "lint": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["dev", "stage", "build", "build:prod", "lint", "test", "start"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "core-js": {"type": "string"}, "view-design": {"type": "string"}, "vue": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "core-js", "view-design", "vue", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-eslint": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "less": {"type": "string"}, "less-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-service", "eslint", "eslint-plugin-vue", "less", "less-loader", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "repository", "author", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"type" : "barangay", "level" : "4", "label" : "Santo Tomas, Luisiana, Laguna, CALABARZON (Region IV-A), PH", "locale" : "ph.calabarzon-region-iv-a.laguna.luisiana.santo-tomas", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "4", "region_reference" : "41", "region_name" : "CALABARZON (Region IV-A)", "province_id" : "40", "province_reference" : "40", "province_name" : "Laguna", "city_id" : "724", "city_reference" : "769", "city_name" : "Luisiana", "barangay_id" : "20310", "barangay_reference" : "19351", "barangay_name" : "Santo Tomas"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[121.519043, 14.19104], [121.519814, 14.1915], [121.523933, 14.18895], [121.524849, 14.18856], [121.526443, 14.18776], [121.528908, 14.18651], [121.532913, 14.18503], [121.537422, 14.18377], [121.538727, 14.18267], [121.539597, 14.17885], [121.53949, 14.17807], [121.537117, 14.17717], [121.53614, 14.17753], [121.535202, 14.17846], [121.532959, 14.17932], [121.53093, 14.17845], [121.528923, 14.17958], [121.526573, 14.18106], [121.524658, 14.1826], [121.52195, 14.18226], [121.518333, 14.1829], [121.517868, 14.18339], [121.517342, 14.18405], [121.517021, 14.18494], [121.516434, 14.1862], [121.516083, 14.18711], [121.515739, 14.18779], [121.51519, 14.18869], [121.514519, 14.18967], [121.514023, 14.1904], [121.5149, 14.19018], [121.519043, 14.19104]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"type": {"type": "string"}, "level": {"type": "string"}, "label": {"type": "string"}, "locale": {"type": "string"}, "country_id": {"type": "integer"}, "country_reference": {"type": "integer"}, "country_name": {"type": "string"}, "region_id": {"type": "string"}, "region_reference": {"type": "string"}, "region_name": {"type": "string"}, "province_id": {"type": "string"}, "province_reference": {"type": "string"}, "province_name": {"type": "string"}, "city_id": {"type": "string"}, "city_reference": {"type": "string"}, "city_name": {"type": "string"}, "barangay_id": {"type": "string"}, "barangay_reference": {"type": "string"}, "barangay_name": {"type": "string"}}, "required": ["type", "level", "label", "locale", "country_id", "country_reference", "country_name", "region_id", "region_reference", "region_name", "province_id", "province_reference", "province_name", "city_id", "city_reference", "city_name", "barangay_id", "barangay_reference", "barangay_name"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "enormously", "definition" : "In an enormous degree."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"Author": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Creation-Date": {"type": "string"}, "X-Parsed-By": {"type": "array", "items": {"type": "string"}}, "creator": {"type": "string"}, "dc:creator": {"type": "string"}, "dcterms:created": {"type": "string"}, "meta:author": {"type": "string"}, "meta:character-count": {"type": "string"}, "meta:creation-date": {"type": "string"}, "meta:page-count": {"type": "string"}, "meta:word-count": {"type": "string"}, "resourceName": {"type": "string"}}, "required": ["Author", "Content-Length", "Content-Type", "Creation-Date", "X-Parsed-By", "creator", "dc:creator", "dcterms:created", "meta:author", "meta:character-count", "meta:creation-date", "meta:page-count", "meta:word-count", "resourceName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Author" : "marcia.souza", "Content-Length" : "60148", "Content-Type" : "application/rtf", "Creation-Date" : "2020-05-25T13:30:00Z", "X-Parsed-By" : ["org.apache.tika.parser.DefaultParser", "org.apache.tika.parser.rtf.RTFParser"], "creator" : "marcia.souza", "dc:creator" : "marcia.souza", "dcterms:created" : "2020-05-25T13:30:00Z", "meta:author" : "marcia.souza", "meta:character-count" : "746", "meta:creation-date" : "2020-05-25T13:30:00Z", "meta:page-count" : "1", "meta:word-count" : "137", "resourceName" : "5a80587abbfc63f8c37bede8166f6ec6dbe406f0.rtf"} | json_instruct | {"type": "object", "properties": {"Author": {"type": "string"}, "Content-Length": {"type": "string"}, "Content-Type": {"type": "string"}, "Creation-Date": {"type": "string"}, "X-Parsed-By": {"type": "array", "items": {"type": "string"}}, "creator": {"type": "string"}, "dc:creator": {"type": "string"}, "dcterms:created": {"type": "string"}, "meta:author": {"type": "string"}, "meta:character-count": {"type": "string"}, "meta:creation-date": {"type": "string"}, "meta:page-count": {"type": "string"}, "meta:word-count": {"type": "string"}, "resourceName": {"type": "string"}}, "required": ["Author", "Content-Length", "Content-Type", "Creation-Date", "X-Parsed-By", "creator", "dc:creator", "dcterms:created", "meta:author", "meta:character-count", "meta:creation-date", "meta:page-count", "meta:word-count", "resourceName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"1b5ee3f8bdc6f61c4bb85e152ccdad9cc30dba567f37baf6a7441449003c4403\"", "Last-Modified" : "Mon, 12 Oct 2020 19:27:03 GMT", "base" : {"repo" : {"name" : "dpath-feedstock"}}, "closed_at" : "2020-10-12T19:27:03Z", "created_at" : "2020-10-11T06:20:23Z", "draft" : false, "head" : {"ref" : "rebuild-python39-0-2_h4ef1f4"}, "html_url" : "https://github.com/conda-forge/dpath-feedstock/pull/14", "id" : 501087332, "labels" : [], "mergeable" : null, "mergeable_state" : "unknown", "merged" : true, "merged_at" : "2020-10-12T19:27:03Z", "number" : 14, "state" : "closed", "updated_at" : "2020-10-12T19:27:03Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "string"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "null"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "string"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "0x226bb599a12c826476e3a771454697ea52e9e220", "tool" : "osiris", "start" : 1564571027.7273068, "end" : 1564571030.3769858, "duration" : 2.649678945541382, "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": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "insomnia": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "images": {"type": "object", "properties": {"icon": {"type": "string"}, "cover": {"type": "string"}}, "required": ["icon", "cover"]}, "publisher": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "icon"]}, "applications": {"type": "object", "properties": {"designer": {"type": "string"}, "core": {"type": "string"}, "cli": {"type": "string"}}, "required": ["designer", "core", "cli"]}}, "required": ["name", "displayName", "description", "images", "publisher", "applications"]}}, "required": ["name", "version", "main", "description", "author", "license", "repository", "bugs", "homepage", "keywords", "insomnia"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "insomnia-plugin-xml-json-response", "version" : "1.0.2", "main" : "main.js", "description" : "transforms XML responses into Json by removing XML tags", "author" : "Carlos Gabriel Godri", "license" : "MIT", "repository" : {"type" : "git", "url" : "git+https://github.com/godrix/insomnia-plugin-xml-json-response"}, "bugs" : {"url" : "https://github.com/godrix/insomnia-plugin-xml-json-response/issues"}, "homepage" : "https://github.com/godrix/insomnia-plugin-xml-json-response", "keywords" : ["insomnia", "plugin", "xml", "json"], "insomnia" : {"name" : "xml-json-response", "displayName" : "XML to Json request", "description" : "transforms XML responses into Json by removing XML tags", "images" : {"icon" : "src/assets/icon.svg", "cover" : "src/assets/cover.png"}, "publisher" : {"name" : "Carlos G. Godri", "icon" : "https://avatars3.githubusercontent.com/u/5671881?v=4"}, "applications" : {"designer" : "*", "core" : "*", "cli" : "*"}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "insomnia": {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}, "description": {"type": "string"}, "images": {"type": "object", "properties": {"icon": {"type": "string"}, "cover": {"type": "string"}}, "required": ["icon", "cover"]}, "publisher": {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}}, "required": ["name", "icon"]}, "applications": {"type": "object", "properties": {"designer": {"type": "string"}, "core": {"type": "string"}, "cli": {"type": "string"}}, "required": ["designer", "core", "cli"]}}, "required": ["name", "displayName", "description", "images", "publisher", "applications"]}}, "required": ["name", "version", "main", "description", "author", "license", "repository", "bugs", "homepage", "keywords", "insomnia"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["cachegoose", "cacheman-promise", "fuchy", "heimdall-client", "mongoose-cachebox", "pagespace", "sailsjs-cacheman", "solr-client-cache", "sungorus", "tree-cache", "tunefind"] | json_instruct | {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"domain" : "weight-union.com", "title" : "\u5e7f\u5dde\u7ef4\u6d9b\u4f18\u8054\u54c1\u724c\u5f62\u8c61\u8bbe\u8ba1\u6709\u9650\u516c\u53f8", "type" : "\u4f01\u4e1a", "license" : "\u7ca4ICP\u590708001913\u53f7-1", "name" : "\u7ef4\u6d9b\u4f18\u8054\u8bbe\u8ba1\u516c\u53f8\u7f51\u7ad9", "homepage" : "www.weight-union.com", "audit" : "2015-01-15", "director" : "", "pre-approval" : "", "updated" : 1477475146} | json_instruct | {"type": "object", "properties": {"domain": {"type": "string"}, "title": {"type": "string"}, "type": {"type": "string"}, "license": {"type": "string"}, "name": {"type": "string"}, "homepage": {"type": "string"}, "audit": {"type": "string"}, "director": {"type": "string"}, "pre-approval": {"type": "string"}, "updated": {"type": "integer"}}, "required": ["domain", "title", "type", "license", "name", "homepage", "audit", "director", "pre-approval", "updated"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nom" : "Saint-Christophe-en-Oisans", "dpt" : "Is\u00e8re", "inscrits" : 126, "abs" : 34, "votants" : 92, "blancs" : 12, "nuls" : 1, "exp" : 79, "res" : [{"panneau" : "1", "voix" : 62}, {"panneau" : "2", "voix" : 17}]} | json_instruct | {"type": "object", "properties": {"nom": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"panneau": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["panneau", "voix"]}}}, "required": ["nom", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["All", "my", "ladies", "hands", "up", "in", "the", "air"], ["O", "A", "She", "'s", "mine", "O", "A", "She", "'s", "mine"], ["O", "A", "She", "'s", "mine", "Yeah", "She", "'s", "mine"], ["All", "my", "ladies", "hands", "up", "in", "the", "air"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "bin": {"type": "object", "properties": {"backless": {"type": "string"}}, "required": ["backless"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "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": {"boxen": {"type": "string"}, "esm": {"type": "string"}, "execa": {"type": "string"}, "figlet": {"type": "string"}, "fs-extra": {"type": "string"}, "inquirer": {"type": "string"}, "ora": {"type": "string"}, "yargonaut": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["boxen", "esm", "execa", "figlet", "fs-extra", "inquirer", "ora", "yargonaut", "yargs"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chalk": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "chalk", "mocha", "nyc"]}}, "required": ["name", "version", "description", "main", "preferGlobal", "bin", "publishConfig", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "backless", "version" : "1.0.16", "description" : "Back-end free with backless", "main" : "index.js", "preferGlobal" : true, "bin" : {"backless" : "bin/backless.js"}, "publishConfig" : {"access" : "public"}, "scripts" : {"test" : "nyc mocha --exit"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Backless-Js/Backless-Js.git"}, "keywords" : ["cli", "backless", "serverless", "express", "node"], "author" : "Darindra R, M.Ramadhan, Marcell Pasaribu, Steven Setiawan", "license" : "ISC", "bugs" : {"url" : "https://github.com/Backless-Js/Backless-Js/issues"}, "homepage" : "http://arah.in/backless-js", "dependencies" : {"boxen" : "^4.2.0", "esm" : "^3.2.25", "execa" : "^4.0.0", "figlet" : "^1.3.0", "fs-extra" : "^9.0.0", "inquirer" : "^7.1.0", "ora" : "^4.0.3", "yargonaut" : "^1.1.4", "yargs" : "^15.3.1"}, "devDependencies" : {"chai" : "^4.2.0", "chalk" : "^4.0.0", "mocha" : "^7.1.1", "nyc" : "^15.0.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "preferGlobal": {"type": "boolean"}, "bin": {"type": "object", "properties": {"backless": {"type": "string"}}, "required": ["backless"]}, "publishConfig": {"type": "object", "properties": {"access": {"type": "string"}}, "required": ["access"]}, "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": {"boxen": {"type": "string"}, "esm": {"type": "string"}, "execa": {"type": "string"}, "figlet": {"type": "string"}, "fs-extra": {"type": "string"}, "inquirer": {"type": "string"}, "ora": {"type": "string"}, "yargonaut": {"type": "string"}, "yargs": {"type": "string"}}, "required": ["boxen", "esm", "execa", "figlet", "fs-extra", "inquirer", "ora", "yargonaut", "yargs"]}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chalk": {"type": "string"}, "mocha": {"type": "string"}, "nyc": {"type": "string"}}, "required": ["chai", "chalk", "mocha", "nyc"]}}, "required": ["name", "version", "description", "main", "preferGlobal", "bin", "publishConfig", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$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"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "description", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "jmly/model-searchable", "description" : "Scopes Laravel", "authors" : [{"name" : "jeanmichelly", "email" : "[email protected]"}], "require" : {"php" : "^7.0"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}}, "required": ["name", "description", "authors", "require"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"lastUpdated" : 1655019279666, "username" : "Jevil_chaos", "scores" : [{"xp" : 10566, "rank" : 339, "cardId" : 222}, {"xp" : 10445, "rank" : 149, "cardId" : 492}, {"xp" : 10671, "rank" : 347, "cardId" : 224}, {"xp" : 8010, "rank" : 254, "cardId" : 496}, {"xp" : 10991, "rank" : 194, "cardId" : 223}, {"xp" : 85465, "rank" : 156, "cardId" : 378}, {"xp" : 15568, "rank" : 362, "cardId" : 300}, {"xp" : 33384, "rank" : 466, "cardId" : 164}, {"xp" : 4446, "rank" : 439, "cardId" : 384}, {"xp" : 12226, "rank" : 257, "cardId" : 317}, {"xp" : 18731, "rank" : 358, "cardId" : 111}, {"xp" : 24714, "rank" : 69, "cardId" : 237}, {"xp" : 8530, "rank" : 298, "cardId" : 493}, {"xp" : 8630, "rank" : 160, "cardId" : 498}, {"xp" : 9267, "rank" : 203, "cardId" : 438}, {"xp" : 30981, "rank" : 389, "cardId" : 450}, {"xp" : 8785, "rank" : 421, "cardId" : 479}, {"xp" : 6876, "rank" : 433, "cardId" : 288}, {"xp" : 8540, "rank" : 429, "cardId" : 603}, {"xp" : 9222, "rank" : 294, "cardId" : 298}, {"xp" : 3217, "rank" : 338, "cardId" : 593}, {"xp" : 14762, "rank" : 98, "cardId" : 229}, {"xp" : 12395, "rank" : 232, "cardId" : 277}, {"xp" : 15644, "rank" : 375, "cardId" : 477}, {"xp" : 5059, "rank" : 361, "cardId" : 594}, {"xp" : 13871, "rank" : 467, "cardId" : 216}, {"xp" : 45324, "rank" : 206, "cardId" : 413}, {"xp" : 2574, "rank" : 427, "cardId" : 386}, {"xp" : 28609, "rank" : 247, "cardId" : 198}, {"xp" : 19882, "rank" : 363, "cardId" : 391}, {"xp" : 14154, "rank" : 264, "cardId" : 282}, {"xp" : 17952, "rank" : 202, "cardId" : 290}, {"xp" : 10990, "rank" : 408, "cardId" : 517}, {"xp" : 11177, "rank" : 252, "cardId" : 410}, {"xp" : 40949, "rank" : 369, "cardId" : 264}, {"xp" : 58688, "rank" : 290, "cardId" : 419}]} | json_instruct | {"type": "object", "properties": {"lastUpdated": {"type": "integer"}, "username": {"type": "string"}, "scores": {"type": "array", "items": {"type": "object", "properties": {"xp": {"type": "integer"}, "rank": {"type": "integer"}, "cardId": {"type": "integer"}}, "required": ["xp", "rank", "cardId"]}}}, "required": ["lastUpdated", "username", "scores"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "rarity": {"type": "integer"}, "craft": {"type": "object", "properties": {"cost": {"type": "integer"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["id", "name", "amount"]}}}, "required": ["cost", "items"]}}, "required": ["id", "name", "description", "source", "rarity", "craft"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "agents_sacrificial_knife", "name" : "Faca Especial", "description" : "Uma arma de formato especial feita usando a tecnologia de Snezhnaya, pertenceu a um agente secreto. Uma pessoa comum n\u00e3o pode usar essa incr\u00edvel arma sem treinamento.", "source" : ["Dropado pelos Agentes Nv.40+", "Obt\u00e9m pela S\u00edntese"], "rarity" : 3, "craft" : {"cost" : 50, "items" : [{"id" : "hunters_sacrificial_knife", "name" : "Faca de Ca\u00e7a", "amount" : 3}]}} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "description": {"type": "string"}, "source": {"type": "array", "items": {"type": "string"}}, "rarity": {"type": "integer"}, "craft": {"type": "object", "properties": {"cost": {"type": "integer"}, "items": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "amount": {"type": "integer"}}, "required": ["id", "name", "amount"]}}}, "required": ["cost", "items"]}}, "required": ["id", "name", "description", "source", "rarity", "craft"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"hash" : "0xf4064804732ffa273c8275a7aa476184d8e36f62791f7f78f6d21df9a178cc76", "parentHash" : "0xb54da2d8c903ce8c9c975e219cf830f6262a4457728330cc49f82536328ba5dd", "number" : 44597, "timestamp" : 1438892702, "nonce" : "0xe87f77596c68f788", "difficulty" : 1402675917163, "gasLimit" : {"_hex" : "0x29c2"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x580992B51e3925e23280EfB93d3047C82f17E038", "extraData" : "0x476574682f76312e302e302f6c696e75782f676f312e342e32", "transactions" : []} | json_instruct | {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "string"}, "isShellCommand": {"type": "boolean"}, "args": {"type": "array", "items": {"type": "string"}}, "showOutput": {"type": "string"}, "echoCommand": {"type": "boolean"}}, "required": ["version", "command", "isShellCommand", "args", "showOutput", "echoCommand"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "0.1.0", "command" : "bash", "isShellCommand" : false, "args" : ["build.sh"], "showOutput" : "silent", "echoCommand" : false} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "command": {"type": "string"}, "isShellCommand": {"type": "boolean"}, "args": {"type": "array", "items": {"type": "string"}}, "showOutput": {"type": "string"}, "echoCommand": {"type": "boolean"}}, "required": ["version", "command", "isShellCommand", "args", "showOutput", "echoCommand"], "$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"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Morris College", "alt_name" : null, "country" : "United States", "state" : "South Carolina", "address" : {"street" : "100 West College Street", "city" : "Sumter", "province" : "South Carolina", "postal_code" : "29150-3599"}, "contact" : {"telephone" : "+1(803) 934-3200", "website" : "http://www.morris.edu", "email" : "[email protected]", "fax" : "+1(803) 773-3687"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : "Commission on Colleges of the Southern Association of Colleges and Schools"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "null"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "string"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"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-09-17T16:00:00Z", "Temp" : 26.5, "RelHum" : 59, "WindSpeed" : 3.1, "WindDir" : 295} | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : [[[-80.36235, 40.255705], [-80.35649, 40.308594], [-80.328327, 40.34961], [-80.296208, 40.360257], [-80.280069, 40.364089], [-80.267515, 40.358199], [-80.252516, 40.361329], [-80.251967, 40.336867], [-80.252657, 40.329753], [-80.251438, 40.318111], [-80.240141, 40.308185], [-80.265641, 40.286983], [-80.2655, 40.284122], [-80.266929, 40.280987], [-80.269606, 40.278292], [-80.270633, 40.274995], [-80.307912, 40.25176], [-80.3322, 40.238166], [-80.343381, 40.242602], [-80.347275, 40.24826], [-80.355549, 40.252018], [-80.357527, 40.251812], [-80.358876, 40.253572], [-80.36235, 40.255705]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 54017}}]} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "null"}, "size": {"type": "integer"}, "time": {"type": "integer"}}, "required": ["name", "id", "url", "size", "time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Allure Test Pack", "id" : "9ae64d2c-e852-4660-a82e-1b7f1e231488", "url" : null, "size" : 6964, "time" : 3512} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "null"}, "size": {"type": "integer"}, "time": {"type": "integer"}}, "required": ["name", "id", "url", "size", "time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 99854, "info" : {"name" : "Facebook - Move NavJewels, remove name, home", "description" : "This moves the navJewels notifications to the end of the search bar and removes the Find Friends, Home and the tinyman picture and profile name from the Blue Banner in Facebook.", "additionalInfo" : "Feel free to modify this as you need to. I created this to make Facebook a little easier for me to navigate as I found that I never use the Find Friends button and the Home Button and Profile Name button are duplicated elsewhere and are superfluous. \r\n\r\nI moved the notifications closer into the center at the end of the search bar to allow faster and easier access to them, as I find I use those quite frequently.", "format" : "uso", "category" : "facebook", "createdAt" : "2014-04-01T15:09:56.000Z", "updatedAt" : "2014-04-01T15:09:56.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 8488, "name" : "Varzil"}}, "stats" : {"installs" : {"total" : 112, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "99854_after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n\r\n@-moz-document domain(\"facebook.com\") {\r\na[href*=\"find-friends\"] { display:none!important; }\r\n#navHome {display:none !important} \r\na[class*=\"navLink\"] { display:none!important; }\r\n#jewelContainer {float: left; position: relative; z-index: 4; left: -220px;\r\n}\r\n\r\n}\r\n"}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "string"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "rimraf": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "rimraf", "tslint", "typescript"]}, "jest": {"type": "object", "properties": {"verbose": {"type": "boolean"}, "bail": {"type": "boolean"}, "testEnvironment": {"type": "string"}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["verbose", "bail", "testEnvironment", "moduleFileExtensions", "testPathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "cxtl", "version" : "1.0.0", "description" : "A cryptocurrency trading library with support for 90+ exchanges", "main" : "dist/src/index.js", "scripts" : {"clean" : "rimraf dist", "test" : "npm run clean && tsc && jest --coverage --forceExit", "start" : "npm run clean && tsc && node dist/src/init.js"}, "author" : "Roberto Huertas <[email protected]>", "license" : "MIT", "devDependencies" : {"@types/jest" : "^21.1.2", "jest" : "^21.2.1", "rimraf" : "^2.6.2", "tslint" : "^5.7.0", "typescript" : "^2.5.3"}, "jest" : {"verbose" : true, "bail" : true, "testEnvironment" : "node", "moduleFileExtensions" : ["js", "json"], "testPathIgnorePatterns" : ["/node_modules/", "/typings/"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"clean": {"type": "string"}, "test": {"type": "string"}, "start": {"type": "string"}}, "required": ["clean", "test", "start"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/jest": {"type": "string"}, "jest": {"type": "string"}, "rimraf": {"type": "string"}, "tslint": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/jest", "jest", "rimraf", "tslint", "typescript"]}, "jest": {"type": "object", "properties": {"verbose": {"type": "boolean"}, "bail": {"type": "boolean"}, "testEnvironment": {"type": "string"}, "moduleFileExtensions": {"type": "array", "items": {"type": "string"}}, "testPathIgnorePatterns": {"type": "array", "items": {"type": "string"}}}, "required": ["verbose", "bail", "testEnvironment", "moduleFileExtensions", "testPathIgnorePatterns"]}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "jest"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "prettier.trailingComma": {"type": "string"}, "editor.defaultFormatter": {"type": "string"}, "workbench.colorCustomizations": {"type": "object", "properties": {"titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}, "titleBar.inactiveForeground": {"type": "string"}}, "required": ["titleBar.activeBackground", "titleBar.activeForeground", "titleBar.inactiveBackground", "titleBar.inactiveForeground"]}}, "required": ["editor.formatOnSave", "prettier.trailingComma", "editor.defaultFormatter", "workbench.colorCustomizations"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"editor.formatOnSave" : true, "prettier.trailingComma" : "all", "editor.defaultFormatter" : "esbenp.prettier-vscode", "workbench.colorCustomizations" : {"titleBar.activeBackground" : "#61dafb", "titleBar.activeForeground" : "#282c34", "titleBar.inactiveBackground" : "#61dafb", "titleBar.inactiveForeground" : "#282c34"}} | json_instruct | {"type": "object", "properties": {"editor.formatOnSave": {"type": "boolean"}, "prettier.trailingComma": {"type": "string"}, "editor.defaultFormatter": {"type": "string"}, "workbench.colorCustomizations": {"type": "object", "properties": {"titleBar.activeBackground": {"type": "string"}, "titleBar.activeForeground": {"type": "string"}, "titleBar.inactiveBackground": {"type": "string"}, "titleBar.inactiveForeground": {"type": "string"}}, "required": ["titleBar.activeBackground", "titleBar.activeForeground", "titleBar.inactiveBackground", "titleBar.inactiveForeground"]}}, "required": ["editor.formatOnSave", "prettier.trailingComma", "editor.defaultFormatter", "workbench.colorCustomizations"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"restartable": {"type": "string"}, "exec": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "verbose": {"type": "boolean"}, "runOnChangeOnly": {"type": "boolean"}, "watch": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}}, "required": ["NODE_ENV"]}, "ext": {"type": "string"}}, "required": ["restartable", "exec", "ignore", "verbose", "runOnChangeOnly", "watch", "env", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"restartable" : "rs", "exec" : "babel-node server", "ignore" : [".git", "client", "node_modules/**/node_modules", "dist"], "verbose" : true, "runOnChangeOnly" : false, "watch" : ["server/**/*.js", "server/**/*.graphql", "package.json"], "env" : {"NODE_ENV" : "development"}, "ext" : "js,json,graphql"} | json_instruct | {"type": "object", "properties": {"restartable": {"type": "string"}, "exec": {"type": "string"}, "ignore": {"type": "array", "items": {"type": "string"}}, "verbose": {"type": "boolean"}, "runOnChangeOnly": {"type": "boolean"}, "watch": {"type": "array", "items": {"type": "string"}}, "env": {"type": "object", "properties": {"NODE_ENV": {"type": "string"}}, "required": ["NODE_ENV"]}, "ext": {"type": "string"}}, "required": ["restartable", "exec", "ignore", "verbose", "runOnChangeOnly", "watch", "env", "ext"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "MAKEL", "frequency" : 587, "males" : "91.82282793867121 %", "females" : "8.17717206132879 %"}] | 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#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"subreddit" : "htpc", "author" : "ncohafmuta", "count" : 5} | json_instruct | {"type": "object", "properties": {"subreddit": {"type": "string"}, "author": {"type": "string"}, "count": {"type": "integer"}}, "required": ["subreddit", "author", "count"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["430611104001", "\u826f\u5fc3\u5821\u793e\u533a", "121", "0"], ["430611104002", "\u798f\u534e\u793e\u533a", "121", "0"], ["430611104201", "\u7ef4\u65b0\u6751", "220", "0"], ["430611104202", "\u798f\u661f\u6751", "220", "0"], ["430611104203", "\u56e2\u7ed3\u6751", "121", "0"], ["430611104204", "\u4e03\u661f\u6e56\u6751", "220", "0"], ["430611104205", "\u60a6\u6765\u6cb3\u6751", "220", "0"], ["430611104206", "\u671b\u541b\u6d32\u6751", "220", "0"], ["430611104207", "\u9ec4\u6ce5\u6e2f\u6751", "220", "0"], ["430611104208", "\u6768\u8538\u6e56\u6751", "220", "0"], ["430611104209", "\u58c7\u6811\u6751", "122", "0"], ["430611104210", "\u4e03\u661f\u6e56\u517b\u6b96\u573a\u7c7b\u4f3c\u6751", "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": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"h" : "1d0cf7873eadfdbd20b9", "c" : {"0" : true}} | json_instruct | {"type": "object", "properties": {"h": {"type": "string"}, "c": {"type": "object", "properties": {"0": {"type": "boolean"}}, "required": ["0"]}}, "required": ["h", "c"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"6578": {"type": "string"}, "6580": {"type": "string"}}, "required": ["6578", "6580"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"6578" : "6579", "6580" : "6581"} | json_instruct | {"type": "object", "properties": {"6578": {"type": "string"}, "6580": {"type": "string"}}, "required": ["6578", "6580"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "start-server": {"type": "string"}}, "required": ["test", "start", "start-server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}}, "required": ["body-parser", "bootstrap", "ejs", "express", "mysql2"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "clinic-app", "version" : "1.0.0", "description" : "Minor project for college - Clinic management project", "main" : "app.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1", "start" : "nodemon app.js", "start-server" : "node app.js"}, "repository" : {"type" : "git", "url" : "git+https://github.com/Anand987/clinic-app.git"}, "author" : "Anand Sharma", "license" : "MIT", "bugs" : {"url" : "https://github.com/Anand987/clinic-app/issues"}, "homepage" : "https://github.com/Anand987/clinic-app#readme", "devDependencies" : {"nodemon" : "^1.18.3"}, "dependencies" : {"body-parser" : "^1.18.3", "bootstrap" : "^4.3.1", "ejs" : "^2.6.1", "express" : "^4.16.4", "mysql2" : "^1.6.5"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "start-server": {"type": "string"}}, "required": ["test", "start", "start-server"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"nodemon": {"type": "string"}}, "required": ["nodemon"]}, "dependencies": {"type": "object", "properties": {"body-parser": {"type": "string"}, "bootstrap": {"type": "string"}, "ejs": {"type": "string"}, "express": {"type": "string"}, "mysql2": {"type": "string"}}, "required": ["body-parser", "bootstrap", "ejs", "express", "mysql2"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$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": {"name": {"type": "string"}, "allDeclaredConstructors": {"type": "boolean"}, "allDeclaredMethods": {"type": "boolean"}}, "required": ["name", "allDeclaredConstructors", "allDeclaredMethods"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"name" : "xxxxxx.yyyyyy.zzzzzz.Message", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.LocalDate", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.LocalTime", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.LocalDateTime", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.Instant", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.OffsetDateTime", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.ZoneOffset", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.Period", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.time.Duration", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.sql.Timestamp", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.sql.Date", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.sql.Time", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}, {"name" : "java.lang.Throwable", "allDeclaredConstructors" : true, "allDeclaredMethods" : true}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "allDeclaredConstructors": {"type": "boolean"}, "allDeclaredMethods": {"type": "boolean"}}, "required": ["name", "allDeclaredConstructors", "allDeclaredMethods"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"matrix": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["matrix"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"matrix" : [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 0, 0], [0, 0, 1, 2, 2, 2, 1, 1, 1, 2, 2, 2, 2, 1, 0, 0], [0, 1, 1, 2, 3, 2, 3, 2, 1, 3, 2, 1, 3, 1, 0, 0], [0, 1, 2, 2, 3, 2, 57, 2, 2, 2, 3, 3, 2, 1, 1, 0], [0, 1, 2, 1, 2, 2, 1, 1, 2, 1, 4, 4, 4, 4, 1, 0], [0, 1, 2, 2, 1, 1, 2, 3, 2, 1, 4, 1, 1, 4, 1, 0], [0, 1, 1, 2, 2, 3, 2, 2, 2, 2, 4, 4, 4, 4, 1, 0], [0, 0, 1, 2, 3, 3, 2, 1, 3, 1, 4, 4, 4, 4, 1, 0], [0, 0, 1, 2, 2, 2, 1, 2, 2, 2, 1, 3, 2, 1, 1, 0], [0, 0, 1, 1, 1, 1, 1, 2, 3, 2, 2, 2, 2, 1, 0, 0], [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]]} | json_instruct | {"type": "object", "properties": {"matrix": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["matrix"], "$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"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "newsApp", "displayName" : "newsApp"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "displayName": {"type": "string"}}, "required": ["name", "displayName"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"eth": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "caip10", "chainId"]}, "gor": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "caip10", "chainId"]}, "starknet-gor": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}}, "required": ["name", "caip10"]}}, "required": ["eth", "gor", "starknet-gor"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"eth" : {"name" : "Ethereum", "caip10" : "eip155:1", "chainId" : 1}, "gor" : {"name" : "Ethereum G\u00f6rli", "caip10" : "eip155:5", "chainId" : 5}, "starknet-gor" : {"name" : "StarkNet G\u00f6rli", "caip10" : "starknet:goerli-alpha"}} | json_instruct | {"type": "object", "properties": {"eth": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "caip10", "chainId"]}, "gor": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}, "chainId": {"type": "integer"}}, "required": ["name", "caip10", "chainId"]}, "starknet-gor": {"type": "object", "properties": {"name": {"type": "string"}, "caip10": {"type": "string"}}, "required": ["name", "caip10"]}}, "required": ["eth", "gor", "starknet-gor"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"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" : "0x4bc1d23a8c00ac87c57b6a32d5fb82aa5346950d", "tool" : "oyente", "start" : 1563533937.0411315, "end" : 1563533941.1795473, "duration" : 4.138415813446045, "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#"} |
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"}}, "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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-fs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-mocha": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "chai-fs", "gulp", "gulp-mocha", "mocha"]}, "dependencies": {"type": "object", "properties": {"q": {"type": "string"}}, "required": ["q"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "lambduh-execute", "version" : "1.3.0", "description" : "Execute any shell string or bash script from AWS Lambda", "main" : "index.js", "scripts" : {"test" : "mocha test/*.js"}, "repository" : {"type" : "git", "url" : "https://github.com/lambduh/lambduh-execute.git"}, "keywords" : ["lambda", "aws", "exec", "execute", "shell"], "author" : "Russell Matney <[email protected]>", "license" : "MIT", "bugs" : {"url" : "https://github.com/lambduh/lambduh-execute/issues"}, "homepage" : "https://github.com/lambduh/lambduh-execute", "devDependencies" : {"chai" : "^2.1.1", "chai-fs" : "git://github.com/carrot/chai-fs.git#version-bump", "gulp" : "^3.8.11", "gulp-mocha" : "^2.0.0", "mocha" : "^2.2.1"}, "dependencies" : {"q" : "^1.2.0"}} | 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"}, "devDependencies": {"type": "object", "properties": {"chai": {"type": "string"}, "chai-fs": {"type": "string"}, "gulp": {"type": "string"}, "gulp-mocha": {"type": "string"}, "mocha": {"type": "string"}}, "required": ["chai", "chai-fs", "gulp", "gulp-mocha", "mocha"]}, "dependencies": {"type": "object", "properties": {"q": {"type": "string"}}, "required": ["q"]}}, "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": {"stop": {"type": "integer"}, "name": {"type": "string"}, "start": {"type": "integer"}}, "required": ["stop", "name", "start"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"stop" : 1494463017903, "name" : "addressbook tests #32", "start" : 1494463017907} | json_instruct | {"type": "object", "properties": {"stop": {"type": "integer"}, "name": {"type": "string"}, "start": {"type": "integer"}}, "required": ["stop", "name", "start"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["@types/express", "body-parser", "express"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "@efstajas/tela", "version" : "4.5.5", "description" : "A framework for building Intercom Canvas Kit applications.", "main" : "lib/index.js", "scripts" : {"build" : "tsc"}, "keywords" : ["intercom", "canvas kit", "custom apps", "express", "typescript"], "repository" : {"type" : "git", "url" : "https://github.com/efstajas/tela.git"}, "author" : "Jason Efstathiou", "license" : "Apache-2.0", "devDependencies" : {"typescript" : "^3.8.3"}, "dependencies" : {"@types/express" : "^4.17.6", "body-parser" : "^1.19.0", "express" : "^4.17.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}}, "required": ["build"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"typescript": {"type": "string"}}, "required": ["typescript"]}, "dependencies": {"type": "object", "properties": {"@types/express": {"type": "string"}, "body-parser": {"type": "string"}, "express": {"type": "string"}}, "required": ["@types/express", "body-parser", "express"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "repository", "author", "license", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "requirements": {"type": "string"}, "benefits": {"type": "string"}, "differentials": {"type": "string"}, "linkToForm": {"type": "string"}, "available": {"type": "boolean"}}, "required": ["id", "title", "description", "type", "requirements", "benefits", "differentials", "linkToForm", "available"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"id" : 1, "title" : "UX/UI Designer", "description" : "Estamos buscando designers para criar as melhores experi\u00eancias para nossos clientes. No dia a dia, nossos designers precisam ter habilidades para transformar requisitos complexos e dif\u00edceis em interfaces extremamente funcionais e intuitivas. Precisam tamb\u00e9m conhecer bem os usu\u00e1rios das nossas aplica\u00e7\u00f5es, trazer um olhar cr\u00edtico e anal\u00edtico das solu\u00e7\u00f5es, organizar pesquisas e testes com usu\u00e1rios, projetar prot\u00f3tipos e interfaces, auxiliar na melhoria dos processos de discovery e delivery dos produtos. Al\u00e9m disso, \u00e9 importante ser uma pessoa comunicativa, usar a vis\u00e3o anal\u00edtica para entender bem o mercado e conseguir organizar as informa\u00e7\u00f5es dos sistemas da melhor forma poss\u00edvel para clientes e time de produto. Buscamos pessoas que gostem de trabalhar de maneira colaborativa, que se comuniquem bem e que queiram ser parte de um time. Se voc\u00ea tiver experi\u00eancias com testes de usabilidade e pesquisas com usu\u00e1rios reais, \u00e9 um grande diferencial.", "type" : "Est\u00e1gio, CLT ou PJ", "requirements" : "- Conhecimento sobre Design Thinking; <br>- Cria\u00e7\u00e3o de wireframes, user flows e prototipa\u00e7\u00e3o; <br>- Dom\u00ednio de fundamentos de design para auxiliar os devs com demandas de cria\u00e7\u00e3o ou ajustes de layout; \n", "benefits" : " Benef\u00edcio flex\u00edvel com Vee Benef\u00edcios </br> Trabalho remoto", "differentials" : "Figma <br> Experi\u00eancia com UX/UI <br> Facilidade com Design Systems <br> Valida\u00e7\u00e3o de hip\u00f3teses e testes A/B <br> Conhecimento da guidelines de Android e iOS <br> Ingl\u00eas", "linkToForm" : "https://bit.ly/3gMxYa3", "available" : true}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "requirements": {"type": "string"}, "benefits": {"type": "string"}, "differentials": {"type": "string"}, "linkToForm": {"type": "string"}, "available": {"type": "boolean"}}, "required": ["id", "title", "description", "type", "requirements", "benefits", "differentials", "linkToForm", "available"]}, "$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"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "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" : 1210047483, "type" : "Feature", "properties" : {"src:alt_label" : "geonames", "src:geom" : "geonames", "wof:geomhash" : "3e6e5249306399943a9e263880702962", "wof:id" : 1210047483}, "bbox" : [6.4564, 46.57251, 6.4564, 46.57251], "geometry" : {"coordinates" : [6.4564, 46.57251], "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"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id"]}, "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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"index" : 3851, "hash" : 2310163735, "blacklisted" : false, "mappingIndex" : 0, "redacted" : false, "scope" : 0, "aggregationType" : 0} | json_instruct | {"type": "object", "properties": {"index": {"type": "integer"}, "hash": {"type": "integer"}, "blacklisted": {"type": "boolean"}, "mappingIndex": {"type": "integer"}, "redacted": {"type": "boolean"}, "scope": {"type": "integer"}, "aggregationType": {"type": "integer"}}, "required": ["index", "hash", "blacklisted", "mappingIndex", "redacted", "scope", "aggregationType"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"localities" : ["Griffithsvle, WV", "Griffithsville, WV"], "state" : "WV", "postal_code" : "25521", "locality" : "Griffithsville, WV", "lat" : 38.219782, "region" : {"fips" : "54", "abbr" : "WV", "name" : "West Virginia"}, "city" : "Griffithsville", "type" : "STANDARD", "lng" : -81.999378, "counties" : [{"fips" : "043", "name" : "Lincoln County"}]} | json_instruct | {"type": "object", "properties": {"localities": {"type": "array", "items": {"type": "string"}}, "state": {"type": "string"}, "postal_code": {"type": "string"}, "locality": {"type": "string"}, "lat": {"type": "number"}, "region": {"type": "object", "properties": {"fips": {"type": "string"}, "abbr": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "abbr", "name"]}, "city": {"type": "string"}, "type": {"type": "string"}, "lng": {"type": "number"}, "counties": {"type": "array", "items": {"type": "object", "properties": {"fips": {"type": "string"}, "name": {"type": "string"}}, "required": ["fips", "name"]}}}, "required": ["localities", "state", "postal_code", "locality", "lat", "region", "city", "type", "lng", "counties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"feedstocks" : ["r-anocva"]} | json_instruct | {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"author" : {"id" : "t2_3ozr8", "name" : "isforza3outyet"}, "date" : {"day" : 1404777600, "full" : 1404783132, "month" : 1404172800, "week" : 1404604800}, "id" : "t3_2a3r8z", "picture" : {"filesize" : 36066, "fullUrl" : "https://external-preview.redd.it/mmMmaCfMmxSCLtGW7NsE7cj1pknJYk2XwUzr90zjz9o.jpg?auto=webp&s=c19cde521904980783dd884416d945481b3755a0", "hash" : "098d4fc201", "height" : 360, "lqip" : "data:image/jpg;base64,/9j/2wBDAAYEBQYFBAYGBQYHBwYIChAKCgkJChQODwwQFxQYGBcUFhYaHSUfGhsjHBYWICwgIyYnKSopGR8tMC0oMCUoKSj/2wBDAQcHBwoIChMKChMoGhYaKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCgoKCj/wAARCAAJABADASIAAhEBAxEB/8QAFQABAQAAAAAAAAAAAAAAAAAABQf/xAAlEAABAwIFBAMAAAAAAAAAAAABAgMEBQYAERITQQc0QmFxctH/xAAUAQEAAAAAAAAAAAAAAAAAAAAE/8QAGBEBAAMBAAAAAAAAAAAAAAAAAQADEQL/2gAMAwEAAhEDEQA/AJratYn0+27ijwlOGc+GC2pCidtSH9ZUlPJ9AYWt7qLKolkz6fUmXpK3W1iBIcbG404rPPUo+IJ1Dnj4n6e2e+ycAO/uD86sVZWBs//Z", "url" : "https://external-preview.redd.it/mmMmaCfMmxSCLtGW7NsE7cj1pknJYk2XwUzr90zjz9o.jpg?width=640&crop=smart&auto=webp&s=80d06fc4077b61de6fd919aa41654cd20ef37615", "width" : 640}, "score" : {"comments" : 14, "downs" : 0, "ratio" : 0.97, "ups" : 24, "value" : 24}, "subreddit" : {"id" : "t5_2xy5e", "name" : "TerrainBuilding"}, "tags" : [], "title" : "First Terrain! Pics & My Process", "url" : "https://www.reddit.com/r/TerrainBuilding/comments/2a3r8z/first_terrain_pics_my_process/"} | json_instruct | {"type": "object", "properties": {"author": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "date": {"type": "object", "properties": {"day": {"type": "integer"}, "full": {"type": "integer"}, "month": {"type": "integer"}, "week": {"type": "integer"}}, "required": ["day", "full", "month", "week"]}, "id": {"type": "string"}, "picture": {"type": "object", "properties": {"filesize": {"type": "integer"}, "fullUrl": {"type": "string"}, "hash": {"type": "string"}, "height": {"type": "integer"}, "lqip": {"type": "string"}, "url": {"type": "string"}, "width": {"type": "integer"}}, "required": ["filesize", "fullUrl", "hash", "height", "lqip", "url", "width"]}, "score": {"type": "object", "properties": {"comments": {"type": "integer"}, "downs": {"type": "integer"}, "ratio": {"type": "number"}, "ups": {"type": "integer"}, "value": {"type": "integer"}}, "required": ["comments", "downs", "ratio", "ups", "value"]}, "subreddit": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["author", "date", "id", "picture", "score", "subreddit", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "string"}}, "required": ["presets", "plugins", "exclude"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"presets" : ["@babel/preset-typescript", "babel-preset-solid", "babel-preset-atomic"], "plugins" : ["babel-plugin-transform-globalthis"], "exclude" : "node_modules/**"} | json_instruct | {"type": "object", "properties": {"presets": {"type": "array", "items": {"type": "string"}}, "plugins": {"type": "array", "items": {"type": "string"}}, "exclude": {"type": "string"}}, "required": ["presets", "plugins", "exclude"], "$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" : "import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-22c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm3.94 3.06-.02.02c-.41.41-.36 1.08.08 1.46 1.51 1.34 2.33 3.43 1.88 5.7-.46 2.28-2.29 4.14-4.56 4.62C9.43 17.69 6 14.74 6 11c0-1.78.78-3.37 2.01-4.47.43-.39.47-1.04.07-1.45l-.02-.02c-.37-.37-.96-.39-1.36-.04-2.01 1.77-3.12 4.53-2.56 7.52.59 3.15 3.11 5.7 6.26 6.31 5.12.99 9.6-2.9 9.6-7.85 0-2.38-1.05-4.52-2.71-5.99-.39-.34-.98-.32-1.35.05zM16 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\"\n}), 'SettingsPowerRounded');", "map" : {"version" : 3, "sources" : ["/Users/cho/Documents/GitHub_myspace/react/main/node_modules/@material-ui/icons/esm/SettingsPowerRounded.js"], "names" : ["createSvgIcon", "jsx", "_jsx", "d"], "mappings" : "AAAA,OAAOA,aAAP,MAA0B,uBAA1B;AACA,SAASC,GAAG,IAAIC,IAAhB,QAA4B,mBAA5B;AACA,eAAeF,aAAa,EAAE,aAAaE,IAAI,CAAC,MAAD,EAAS;AACtDC,EAAAA,CAAC,EAAE;AADmD,CAAT,CAAnB,EAExB,sBAFwB,CAA5B", "sourcesContent" : ["import createSvgIcon from './utils/createSvgIcon';\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nexport default createSvgIcon( /*#__PURE__*/_jsx(\"path\", {\n d: \"M8 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm4 0c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-22c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1zm3.94 3.06-.02.02c-.41.41-.36 1.08.08 1.46 1.51 1.34 2.33 3.43 1.88 5.7-.46 2.28-2.29 4.14-4.56 4.62C9.43 17.69 6 14.74 6 11c0-1.78.78-3.37 2.01-4.47.43-.39.47-1.04.07-1.45l-.02-.02c-.37-.37-.96-.39-1.36-.04-2.01 1.77-3.12 4.53-2.56 7.52.59 3.15 3.11 5.7 6.26 6.31 5.12.99 9.6-2.9 9.6-7.85 0-2.38-1.05-4.52-2.71-5.99-.39-.34-.98-.32-1.35.05zM16 24c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z\"\n}), 'SettingsPowerRounded');"]}, "metadata" : {}, "sourceType" : "module"} | 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#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["babel-preset-anjianshi-react-ie", "babel-preset-es2015-ie", "babel-preset-es2015-without-strict-loose", "babel-preset-focus", "babel-preset-playlyfe", "babel-preset-sagui", "babel-preset-save", "babel-preset-streamrail", "babel-preset-yw", "better-babel-cli", "dg-reacting", "joi-full", "pragmatist", "snabbdom-helpers", "syn-dev-tools"] | 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": {"bonzo.js": {"type": "string"}, "bonzo.min.js": {"type": "string"}}, "required": ["bonzo.js", "bonzo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bonzo.js" : "sha512-fJnz3WKKELYDhnPiBxkWEsdm1eikMmOA2vezz1qZEWnDMBGnAuex2Y+k2nwhAEmAgMLh0+OOR9Tg61QVAci4Vw==", "bonzo.min.js" : "sha512-rys8PXAd9YTQUv7ptDObONqvMB/dRDJcXpRBCqmDq+u+27lQ43HQVRLQbVdVC4jpnUUVYIp6/Be0petN8GmqZw=="} | json_instruct | {"type": "object", "properties": {"bonzo.js": {"type": "string"}, "bonzo.min.js": {"type": "string"}}, "required": ["bonzo.js", "bonzo.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"LogLevel": {"type": "string"}, "LogPath": {"type": "string"}, "TCPAddr": {"type": "string"}, "MaxConnNum": {"type": "integer"}, "ConsolePort": {"type": "integer"}, "MgoUrl": {"type": "string"}, "MgoSessionNum": {"type": "integer"}, "DBName": {"type": "string"}, "XlsxPath": {"type": "string"}, "ProfilePath": {"type": "string"}}, "required": ["LogLevel", "LogPath", "TCPAddr", "MaxConnNum", "ConsolePort", "MgoUrl", "MgoSessionNum", "DBName", "XlsxPath", "ProfilePath"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"LogLevel" : "debug", "LogPath" : "./log", "TCPAddr" : "[::]:6666", "MaxConnNum" : 9999, "ConsolePort" : 3333, "MgoUrl" : "mongodb://127.0.0.1:27017/admin", "MgoSessionNum" : 99, "DBName" : "db_test", "XlsxPath" : "../xlsx", "ProfilePath" : "./profile"} | json_instruct | {"type": "object", "properties": {"LogLevel": {"type": "string"}, "LogPath": {"type": "string"}, "TCPAddr": {"type": "string"}, "MaxConnNum": {"type": "integer"}, "ConsolePort": {"type": "integer"}, "MgoUrl": {"type": "string"}, "MgoSessionNum": {"type": "integer"}, "DBName": {"type": "string"}, "XlsxPath": {"type": "string"}, "ProfilePath": {"type": "string"}}, "required": ["LogLevel", "LogPath", "TCPAddr", "MaxConnNum", "ConsolePort", "MgoUrl", "MgoSessionNum", "DBName", "XlsxPath", "ProfilePath"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"appid" : 329000, "name" : "Data Hacker: Corruption", "windows" : true, "mac" : false, "linux" : false, "early_access" : false, "lookup_time" : 1490979231} | json_instruct | {"type": "object", "properties": {"appid": {"type": "integer"}, "name": {"type": "string"}, "windows": {"type": "boolean"}, "mac": {"type": "boolean"}, "linux": {"type": "boolean"}, "early_access": {"type": "boolean"}, "lookup_time": {"type": "integer"}}, "required": ["appid", "name", "windows", "mac", "linux", "early_access", "lookup_time"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"word" : "combination", "definition" : "1. The act or process of combining or uniting persons and things. Making new compounds by new combinations. Boyle. A solemn combination shall be made Of our dear souls. Shak. 2. The result of combining or uniting; union of persons or things; esp. a union or alliance of persons or states to effect some purpose; -- usually in a bad sense. A combination of the most powerful men in Rome who had conspired my ruin. Melmoth. 3. (Chem.) The act or process of uniting by chemical affinity, by which substances unite with each other in definite proportions by weight to form distinct compounds. 4. pl. (Math.) The different arrangements of a number of objects, as letters, into groups. Note: In combinations no regard is paid to the order in which the objects are arranged in each group, while in variations and permutations this order is respected. Brande & C. Combination car, a railroad car containing two or more compartments used for different purposes. [U. S.] -- Combination lock, a lock in which the mechanism is controlled by means of a movable dial (sometimes by several dials or rings) inscribed with letters or other characters. The bolt of the lock can not be operated until after the dial has been so turned as to combine the characters in a certain order or succession. -- Combination room, in the University of Cambridge, Eng., a room into which the fellows withdraw after dinner, for wine, dessert, and conversation. -- Combination by volume (Chem.), the act, process, or ratio by which gaseous elements and compounds unite in definite proportions by volume to form distinct compounds. -- Combination by weight (Chem.), the act, process, or ratio, in which substances unite in proportions by weight, relatively fixed and exact, to form distinct compounds. See Law of definite proportions, under Definite. Syn. -- Cabal; alliance; association; league; union; confederacy; coalition; conspiracy. See Cabal."} | json_instruct | {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "array", "items": {"type": "object", "properties": {"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" : "88000", "place_name" : "Nuevo Laredo Centro", "place_type" : "Colonia", "county" : "Nuevo Laredo", "state" : "Tamaulipas", "city" : "Nuevo Laredo"}] | 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#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"server:dev": {"type": "string"}, "client:dev": {"type": "string"}}, "required": ["server:dev", "client:dev"]}, "devDependencies": {"type": "object", "properties": {"@grpc/proto-loader": {"type": "string"}, "async": {"type": "string"}, "google-protobuf": {"type": "string"}, "grpc": {"type": "string"}, "grpc-web": {"type": "string"}, "lodash": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@grpc/proto-loader", "async", "google-protobuf", "grpc", "grpc-web", "lodash", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "grpc-web-simple-example", "version" : "0.1.0", "description" : "gRPC-Web simple example", "scripts" : {"server:dev" : "npx nodemon server.js --watch server.js", "client:dev" : "npx nodemon --exec npx webpack --watch client.js"}, "devDependencies" : {"@grpc/proto-loader" : "^0.3.0", "async" : "^1.5.2", "google-protobuf" : "^3.6.1", "grpc" : "^1.15.0", "grpc-web" : "^1.0.0", "lodash" : "^4.6.1", "webpack" : "^4.41.5", "webpack-cli" : "^3.3.10", "webpack-dev-server" : "^3.10.1"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"server:dev": {"type": "string"}, "client:dev": {"type": "string"}}, "required": ["server:dev", "client:dev"]}, "devDependencies": {"type": "object", "properties": {"@grpc/proto-loader": {"type": "string"}, "async": {"type": "string"}, "google-protobuf": {"type": "string"}, "grpc": {"type": "string"}, "grpc-web": {"type": "string"}, "lodash": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["@grpc/proto-loader", "async", "google-protobuf", "grpc", "grpc-web", "lodash", "webpack", "webpack-cli", "webpack-dev-server"]}}, "required": ["name", "version", "description", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["130633107200", "\u7d2b\u8346\u5173\u6751\u6751\u59d4\u4f1a", "121", "0"], ["130633107201", "\u6559\u573a\u6751\u6751\u59d4\u4f1a", "122", "0"], ["130633107202", "\u4e09\u91cc\u94fa\u6751\u6751\u59d4\u4f1a", "122", "0"], ["130633107203", "\u4e1c\u6e05\u6e90\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107204", "\u897f\u6e05\u6e90\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107205", "\u6768\u5bb6\u6c9f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107206", "\u67a3\u5404\u5e84\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107207", "\u6069\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107208", "\u5927\u5174\u5b89\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107209", "\u9ad8\u5e84\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107210", "\u5b54\u5404\u5e84\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107211", "\u4e5d\u6e90\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107212", "\u541b\u7389\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107213", "\u5357\u6b3e\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107214", "\u7389\u5c71\u94fa\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107215", "\u6c49\u4e08\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107216", "\u5927\u76d8\u77f3\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107217", "\u767d\u5bb6\u5e84\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107218", "\u78be\u5b50\u6c9f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107219", "\u5c0f\u76d8\u77f3\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107220", "\u80dc\u5229\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107221", "\u9e2d\u5b50\u6c9f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107222", "\u4e0a\u9648\u9a7f\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107223", "\u6ce5\u74e6\u94fa\u6751\u6751\u59d4\u4f1a", "220", "0"], ["130633107224", "\u5761\u4e0b\u6751\u6751\u59d4\u4f1a", "220", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"track" : "rust", "exercise" : "circular-buffer", "id" : "8df861315fed4270b5c44f49b9c60fbf", "url" : "https://exercism.io/my/solutions/8df861315fed4270b5c44f49b9c60fbf", "handle" : "lutostag", "is_requester" : true, "auto_approve" : false} | json_instruct | {"type": "object", "properties": {"track": {"type": "string"}, "exercise": {"type": "string"}, "id": {"type": "string"}, "url": {"type": "string"}, "handle": {"type": "string"}, "is_requester": {"type": "boolean"}, "auto_approve": {"type": "boolean"}}, "required": ["track", "exercise", "id", "url", "handle", "is_requester", "auto_approve"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"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": "string"}, "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": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "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" : 3128, "name" : "Wider Search box for Google Image Search V2", "description" : "Just a wider search box for Google Image Search!\r\nInspired from Google Wide Search Box", "user" : {"id" : 3654, "name" : "heartrobber18", "email" : "redacted", "paypal_email" : null, "homepage" : "https://abtevrythng.com", "about" : null, "license" : "ccbyncsa"}, "updated" : "2007-09-24T06:27:40.000Z", "weekly_install_count" : 0, "total_install_count" : 362, "rating" : null, "after_screenshot_name" : "https://userstyles.org/style_screenshots/3128_after.png?r=1575705673", "obsoleting_style_id" : null, "obsoleting_style_name" : null, "obsolete" : 0, "admin_delete_reason_id" : null, "obsoletion_message" : null, "screenshots" : null, "license" : null, "created" : "2007-08-09T02:29:44.000Z", "category" : "site", "raw_subcategory" : "google", "subcategory" : "google", "additional_info" : null, "style_tags" : [], "css" : "@namespace url(http://www.w3.org/1999/xhtml);\r\n/*Coded by Gr@cK */\r\n@-moz-document url-prefix(http://images.google.) \r\n{\t\r\n\t[name=\"q\"] {width:700px; font-size:12pt!important; color:red!important}\r\n}", "discussions" : [], "discussionsCount" : 0, "commentsCount" : 0, "userjs_url" : "/styles/userjs/3128/wider-search-box-for-google-image-search-v2.user.js", "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": "string"}, "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": "null"}, "style_tags": {"type": "array", "items": {}}, "css": {"type": "string"}, "discussions": {"type": "array", "items": {}}, "discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}, "userjs_url": {"type": "string"}, "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#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"owh_querycache": {"type": "object", "properties": {"mappings": {"type": "object", "properties": {"queryData": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"dataset": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "lastupdated": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "index", "format"]}, "queryID": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "queryJSON": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "resultJSON": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "sideFilterResults": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}}, "required": ["dataset", "lastupdated", "queryID", "queryJSON", "resultJSON", "sideFilterResults"]}}, "required": ["properties"]}}, "required": ["queryData"]}}, "required": ["mappings"]}}, "required": ["owh_querycache"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"owh_querycache" : {"mappings" : {"queryData" : {"properties" : {"dataset" : {"type" : "string", "index" : "not_analyzed"}, "lastupdated" : {"type" : "date", "index" : "no", "format" : "dateOptionalTime"}, "queryID" : {"type" : "string", "index" : "not_analyzed"}, "queryJSON" : {"type" : "string", "index" : "no"}, "resultJSON" : {"type" : "string", "index" : "no"}, "sideFilterResults" : {"type" : "string", "index" : "no"}}}}}} | json_instruct | {"type": "object", "properties": {"owh_querycache": {"type": "object", "properties": {"mappings": {"type": "object", "properties": {"queryData": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"dataset": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "lastupdated": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}, "format": {"type": "string"}}, "required": ["type", "index", "format"]}, "queryID": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "queryJSON": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "resultJSON": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}, "sideFilterResults": {"type": "object", "properties": {"type": {"type": "string"}, "index": {"type": "string"}}, "required": ["type", "index"]}}, "required": ["dataset", "lastupdated", "queryID", "queryJSON", "resultJSON", "sideFilterResults"]}}, "required": ["properties"]}}, "required": ["queryData"]}}, "required": ["mappings"]}}, "required": ["owh_querycache"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"sn22.111:0.1": {"type": "string"}, "sn22.111:0.2": {"type": "string"}, "sn22.111:0.3": {"type": "string"}, "sn22.111:1.1": {"type": "string"}, "sn22.111:1.2": {"type": "string"}, "sn22.111:1.3": {"type": "string"}, "sn22.111:1.4": {"type": "string"}, "sn22.111:1.5": {"type": "string"}, "sn22.111:1.6": {"type": "string"}, "sn22.111:1.7": {"type": "string"}, "sn22.111:1.8": {"type": "string"}, "sn22.111:1.9": {"type": "string"}}, "required": ["sn22.111:0.1", "sn22.111:0.2", "sn22.111:0.3", "sn22.111:1.1", "sn22.111:1.2", "sn22.111:1.3", "sn22.111:1.4", "sn22.111:1.5", "sn22.111:1.6", "sn22.111:1.7", "sn22.111:1.8", "sn22.111:1.9"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sn22.111:0.1" : "<article id='sn22.111'><header><ul><li class='division'>{}</li>", "sn22.111:0.2" : "<li>{}</li></ul>", "sn22.111:0.3" : "<h1 class='sutta-title'>{}</h1></header>", "sn22.111:1.1" : "<p>{}</p>", "sn22.111:1.2" : "<p>{}", "sn22.111:1.3" : "{}</p>", "sn22.111:1.4" : "<p>{}", "sn22.111:1.5" : "{}", "sn22.111:1.6" : "{}", "sn22.111:1.7" : "{}", "sn22.111:1.8" : "{}</p>", "sn22.111:1.9" : "<p class='endsection'>{}</p></article>"} | json_instruct | {"type": "object", "properties": {"sn22.111:0.1": {"type": "string"}, "sn22.111:0.2": {"type": "string"}, "sn22.111:0.3": {"type": "string"}, "sn22.111:1.1": {"type": "string"}, "sn22.111:1.2": {"type": "string"}, "sn22.111:1.3": {"type": "string"}, "sn22.111:1.4": {"type": "string"}, "sn22.111:1.5": {"type": "string"}, "sn22.111:1.6": {"type": "string"}, "sn22.111:1.7": {"type": "string"}, "sn22.111:1.8": {"type": "string"}, "sn22.111:1.9": {"type": "string"}}, "required": ["sn22.111:0.1", "sn22.111:0.2", "sn22.111:0.3", "sn22.111:1.1", "sn22.111:1.2", "sn22.111:1.3", "sn22.111:1.4", "sn22.111:1.5", "sn22.111:1.6", "sn22.111:1.7", "sn22.111:1.8", "sn22.111:1.9"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"unknown": {"type": "string"}}, "required": ["unknown"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}}, "required": ["cannot_connect"]}}, "required": ["abort", "error"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"config" : {"abort" : {"unknown" : "\u0391\u03c0\u03c1\u03cc\u03c3\u03bc\u03b5\u03bd\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1"}, "error" : {"cannot_connect" : "\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2"}}} | json_instruct | {"type": "object", "properties": {"config": {"type": "object", "properties": {"abort": {"type": "object", "properties": {"unknown": {"type": "string"}}, "required": ["unknown"]}, "error": {"type": "object", "properties": {"cannot_connect": {"type": "string"}}, "required": ["cannot_connect"]}}, "required": ["abort", "error"]}}, "required": ["config"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "string"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"Update" : "2020-03-23 15:28:16", "answer" : ["A"], "category" : "saa", "choices" : ["A.Amazon CloudFront \u4f7f\u7528\u672c\u5730\u670d\u52a1\u5668\u4f5c\u4e3a\u6e90\u3002", "B.ELB \u5e94\u7528\u7a0b\u5e8f\u8d1f\u8f7d\u5e73\u8861\u5668\u3002", "C.\u57fa\u4e8e\u5ef6\u8fdf\u7684\u8def\u7531\u3002", "D.\u5b58\u50a8\u548c\u670d\u52a1\u9759\u6001\u6587\u4ef6\u3002"], "detail" : "\u4e00\u5bb6\u516c\u53f8\u5728\u5176\u7ecf\u8425\u573a\u6240\u5185\u62e5\u6709\u4e00\u4e2a\u7f51\u7ad9\u3002\u8be5\u7f51\u7ad9\u6df7\u5408\u4e86\u9759\u6001\u548c\u52a8\u6001\u5185\u5bb9, \u4f46\u7528\u6237\u5728\u52a0\u8f7d\u9759\u6001\u6587\u4ef6\u65f6\u4f1a\u9047\u5230\u5ef6\u8fdf\u3002\u54ea\u4e2a AWS \u670d\u52a1\u53ef\u4ee5\u5e2e\u52a9\u51cf\u5c11\u5ef6\u8fdf\uff1f", "explanation" : ["\u6b63\u786e\u7b54\u6848\u662fas CloudFront \u53ef\u7528\u4e8e\u7f13\u5b58\u9759\u6001\u8d44\u6e90, \u5e76\u5728\u672c\u5730\u6258\u7ba1\u65f6\u63d0\u4f9b\u4f4e\u5ef6\u8fdf\u8bbf\u95ee\u3002", "\u8bf7\u53c2\u9605 AWS \u6587\u6863- CloudFront \u6765\u6e90", " CloudFront \u652f\u6301\u4f7f\u7528\u591a\u4e2a AWS \u8d44\u6e90\u4f5c\u4e3a\u6e90\u3002\u4f8b\u5982, \u60a8\u53ef\u4ee5\u6307\u5b9a\u4e00\u4e2a Amazon S3 \u5b58\u50a8\u6876\u6216\u4e00\u4e2aMediaStore\u5bb9\u5668, \u4e00\u4e2aMediaPackage\u901a\u9053, \u6216\u81ea\u5b9a\u4e49\u539f\u70b9, \u4f8b\u5982 Amazon EC2 \u5b9e\u4f8b\u6216\n\u60a8\u81ea\u5df1\u7684HTTP web\u670d\u52a1\u5668\u3002", "\u9009\u9879B\u3001C\u548cD\u662f\u9519\u8bef\u7684, \u56e0\u4e3a\u5b83\u4eec\u65e0\u52a9\u4e8e\u51cf\u5c11\u5ef6\u8fdf\u3002"], "id" : 87, "saved_answer" : "1000", "type" : "Multiple Choice"} | json_instruct | {"type": "object", "properties": {"Update": {"type": "string"}, "answer": {"type": "array", "items": {"type": "string"}}, "category": {"type": "string"}, "choices": {"type": "array", "items": {"type": "string"}}, "detail": {"type": "string"}, "explanation": {"type": "array", "items": {"type": "string"}}, "id": {"type": "integer"}, "saved_answer": {"type": "string"}, "type": {"type": "string"}}, "required": ["Update", "answer", "category", "choices", "detail", "explanation", "id", "saved_answer", "type"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"application": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "tcp": {"type": "object", "properties": {"port": {"type": "integer"}, "tls": {"type": "object", "properties": {"key": {"type": "string"}, "cert": {"type": "string"}, "ca": {"type": "array", "items": {"type": "string"}}, "requestCert": {"type": "boolean"}, "rejectUnauthorized": {"type": "boolean"}}, "required": ["key", "cert", "ca", "requestCert", "rejectUnauthorized"]}}, "required": ["port", "tls"]}, "protocol": {"type": "string"}, "dictionary": {"type": "string"}}, "required": ["type", "name", "tcp", "protocol", "dictionary"]}, "Username": {"type": "string"}, "Password": {"type": "string"}, "EncryptMethod": {"type": "integer"}, "ResetSeqNumFlag": {"type": "boolean"}, "HeartBtInt": {"type": "integer"}, "SenderCompId": {"type": "string"}, "TargetCompID": {"type": "string"}, "TargetSubID": {"type": "string"}, "BeginString": {"type": "string"}, "BodyLengthChars": {"type": "integer"}}, "required": ["application", "Username", "Password", "EncryptMethod", "ResetSeqNumFlag", "HeartBtInt", "SenderCompId", "TargetCompID", "TargetSubID", "BeginString", "BodyLengthChars"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"application" : {"type" : "acceptor", "name" : "test_server", "tcp" : {"port" : 2344, "tls" : {"key" : "data/session/certs/server/server.key", "cert" : "data/session/certs/server/server.crt", "ca" : ["data/session/certs/ca/ca.crt"], "requestCert" : true, "rejectUnauthorized" : true}}, "protocol" : "ascii", "dictionary" : "repo44"}, "Username" : "js-tls-server", "Password" : "pwd-tls-server", "EncryptMethod" : 0, "ResetSeqNumFlag" : true, "HeartBtInt" : 30, "SenderCompId" : "accept-tls-comp", "TargetCompID" : "init-tls-comp", "TargetSubID" : "fix", "BeginString" : "FIX4.4", "BodyLengthChars" : 6} | json_instruct | {"type": "object", "properties": {"application": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "tcp": {"type": "object", "properties": {"port": {"type": "integer"}, "tls": {"type": "object", "properties": {"key": {"type": "string"}, "cert": {"type": "string"}, "ca": {"type": "array", "items": {"type": "string"}}, "requestCert": {"type": "boolean"}, "rejectUnauthorized": {"type": "boolean"}}, "required": ["key", "cert", "ca", "requestCert", "rejectUnauthorized"]}}, "required": ["port", "tls"]}, "protocol": {"type": "string"}, "dictionary": {"type": "string"}}, "required": ["type", "name", "tcp", "protocol", "dictionary"]}, "Username": {"type": "string"}, "Password": {"type": "string"}, "EncryptMethod": {"type": "integer"}, "ResetSeqNumFlag": {"type": "boolean"}, "HeartBtInt": {"type": "integer"}, "SenderCompId": {"type": "string"}, "TargetCompID": {"type": "string"}, "TargetSubID": {"type": "string"}, "BeginString": {"type": "string"}, "BodyLengthChars": {"type": "integer"}}, "required": ["application", "Username", "Password", "EncryptMethod", "ResetSeqNumFlag", "HeartBtInt", "SenderCompId", "TargetCompID", "TargetSubID", "BeginString", "BodyLengthChars"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"description" : "Cartridges, power device", "number" : "0323", "class" : "1"} | json_instruct | {"type": "object", "properties": {"description": {"type": "string"}, "number": {"type": "string"}, "class": {"type": "string"}}, "required": ["description", "number", "class"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"monitor_signup": {"type": "string"}, "version": {"type": "string"}, "latest_version": {"type": "string"}, "current_version": {"type": "string"}, "release_notes": {"type": "string"}, "read_how_to_upgrade": {"type": "string"}, "latest_version_signoz": {"type": "string"}, "stale_version": {"type": "string"}, "oops_something_went_wrong_version": {"type": "string"}, "n_a": {"type": "string"}, "routes": {"type": "object", "properties": {"general": {"type": "string"}, "alert_channels": {"type": "string"}, "all_errors": {"type": "string"}}, "required": ["general", "alert_channels", "all_errors"]}, "settings": {"type": "object", "properties": {"total_retention_period": {"type": "string"}, "move_to_s3": {"type": "string"}, "retention_success_message": {"type": "string"}, "retention_error_message": {"type": "string"}, "retention_failed_message": {"type": "string"}, "retention_comparison_error": {"type": "string"}, "retention_null_value_error": {"type": "string"}, "retention_confirmation": {"type": "string"}, "retention_confirmation_description": {"type": "string"}}, "required": ["total_retention_period", "move_to_s3", "retention_success_message", "retention_error_message", "retention_failed_message", "retention_comparison_error", "retention_null_value_error", "retention_confirmation", "retention_confirmation_description"]}}, "required": ["monitor_signup", "version", "latest_version", "current_version", "release_notes", "read_how_to_upgrade", "latest_version_signoz", "stale_version", "oops_something_went_wrong_version", "n_a", "routes", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"monitor_signup" : "Monitor your applications. Find what is causing issues.", "version" : "Version", "latest_version" : "Latest version", "current_version" : "Current version", "release_notes" : "Release Notes", "read_how_to_upgrade" : "Read instructions on how to upgrade", "latest_version_signoz" : "You are running the latest version of SigNoz.", "stale_version" : "You are on an older version and may be loosing on the latest features we have shipped. We recommend to upgrade to the latest version", "oops_something_went_wrong_version" : "Oops.. facing issues with fetching updated version information", "n_a" : "N/A", "routes" : {"general" : "General", "alert_channels" : "Alert Channels", "all_errors" : "All Exceptions"}, "settings" : {"total_retention_period" : "Total Retention Period", "move_to_s3" : "Move to S3\n(should be lower than total retention period)", "retention_success_message" : "Congrats. The retention periods for {{name}} has been updated successfully.", "retention_error_message" : "There was an issue in changing the retention period for {{name}}. Please try again or reach out to [email protected]", "retention_failed_message" : "There was an issue in changing the retention period. Please try again or reach out to [email protected]", "retention_comparison_error" : "Total retention period for {{name}} can\u2019t be lower or equal to the period after which data is moved to s3.", "retention_null_value_error" : "Retention Period for {{name}} is not set yet. Please set by choosing below", "retention_confirmation" : "Are you sure you want to change the retention period?", "retention_confirmation_description" : "This will change the amount of storage needed for saving metrics & traces."}} | json_instruct | {"type": "object", "properties": {"monitor_signup": {"type": "string"}, "version": {"type": "string"}, "latest_version": {"type": "string"}, "current_version": {"type": "string"}, "release_notes": {"type": "string"}, "read_how_to_upgrade": {"type": "string"}, "latest_version_signoz": {"type": "string"}, "stale_version": {"type": "string"}, "oops_something_went_wrong_version": {"type": "string"}, "n_a": {"type": "string"}, "routes": {"type": "object", "properties": {"general": {"type": "string"}, "alert_channels": {"type": "string"}, "all_errors": {"type": "string"}}, "required": ["general", "alert_channels", "all_errors"]}, "settings": {"type": "object", "properties": {"total_retention_period": {"type": "string"}, "move_to_s3": {"type": "string"}, "retention_success_message": {"type": "string"}, "retention_error_message": {"type": "string"}, "retention_failed_message": {"type": "string"}, "retention_comparison_error": {"type": "string"}, "retention_null_value_error": {"type": "string"}, "retention_confirmation": {"type": "string"}, "retention_confirmation_description": {"type": "string"}}, "required": ["total_retention_period", "move_to_s3", "retention_success_message", "retention_error_message", "retention_failed_message", "retention_comparison_error", "retention_null_value_error", "retention_confirmation", "retention_confirmation_description"]}}, "required": ["monitor_signup", "version", "latest_version", "current_version", "release_notes", "read_how_to_upgrade", "latest_version_signoz", "stale_version", "oops_something_went_wrong_version", "n_a", "routes", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "ns": {"type": "string"}, "description": {"type": "string"}, "phrases": {"type": "object", "properties": {"active": {"type": "string"}}, "required": ["active"]}, "ports": {"type": "object", "properties": {"input": {"type": "object", "properties": {"conn": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "title", "required"]}, "noreplyWait": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "boolean"}}, "required": ["type", "title", "description", "default"]}}, "required": ["conn", "noreplyWait"]}, "output": {"type": "object", "properties": {"error": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "title"]}, "conn": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "title"]}}, "required": ["error", "conn"]}}, "required": ["input", "output"]}}, "required": ["name", "ns", "description", "phrases", "ports"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "reconnect", "ns" : "rethinkdb", "description" : "RethinkDB reconnect", "phrases" : {"active" : "Reconnecting..."}, "ports" : {"input" : {"conn" : {"type" : "function", "title" : "Connection", "required" : true}, "noreplyWait" : {"type" : "boolean", "title" : "Wait for noreply writes", "description" : "whether to wait for noreply writes to complete before closing (default true). If this is set to false, some outstanding noreply writes may be aborted.", "default" : true}}, "output" : {"error" : {"type" : "object", "title" : "Error"}, "conn" : {"type" : "function", "title" : "Connection"}}}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "ns": {"type": "string"}, "description": {"type": "string"}, "phrases": {"type": "object", "properties": {"active": {"type": "string"}}, "required": ["active"]}, "ports": {"type": "object", "properties": {"input": {"type": "object", "properties": {"conn": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "required": {"type": "boolean"}}, "required": ["type", "title", "required"]}, "noreplyWait": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "description": {"type": "string"}, "default": {"type": "boolean"}}, "required": ["type", "title", "description", "default"]}}, "required": ["conn", "noreplyWait"]}, "output": {"type": "object", "properties": {"error": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "title"]}, "conn": {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}}, "required": ["type", "title"]}}, "required": ["error", "conn"]}}, "required": ["input", "output"]}}, "required": ["name", "ns", "description", "phrases", "ports"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["shortcuts"]}, "32bit": {"type": "object", "properties": {"shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["shortcuts"]}}, "required": ["64bit", "32bit"]}, "persist": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_dir", "architecture", "persist", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"version" : "8.2.3.5338", "description" : "Utility to reduce the memory usage of Firefox or other browsers", "homepage" : "https://www.rizonesoft.com/downloads/firemin/", "license" : "GPL-3.0-or-later", "url" : "https://www.rizonesoft.com/download/3951/#/dl.zip", "hash" : "28139c0c1328db017cd91a19a8f438e870587517026c21a33a3d814e5f2cb507", "extract_dir" : "Firemin_5338", "architecture" : {"64bit" : {"shortcuts" : [["Firemin_X64.exe", "Firemin"]]}, "32bit" : {"shortcuts" : [["Firemin.exe", "Firemin"]]}}, "persist" : "Firemin.ini", "checkver" : "(?sm)Portable Edition.*?title=\"Version ([\\d.]+)\" href=\"(?<link>.*?)\".*?Firemin_\\d+\\.zip", "autoupdate" : {"url" : "$matchLink#/dl.zip", "extract_dir" : "Firemin_$buildVersion"}} | json_instruct | {"type": "object", "properties": {"version": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "license": {"type": "string"}, "url": {"type": "string"}, "hash": {"type": "string"}, "extract_dir": {"type": "string"}, "architecture": {"type": "object", "properties": {"64bit": {"type": "object", "properties": {"shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["shortcuts"]}, "32bit": {"type": "object", "properties": {"shortcuts": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["shortcuts"]}}, "required": ["64bit", "32bit"]}, "persist": {"type": "string"}, "checkver": {"type": "string"}, "autoupdate": {"type": "object", "properties": {"url": {"type": "string"}, "extract_dir": {"type": "string"}}, "required": ["url", "extract_dir"]}}, "required": ["version", "description", "homepage", "license", "url", "hash", "extract_dir", "architecture", "persist", "checkver", "autoupdate"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"sync_suspended_cards": {"type": "boolean"}, "sync_new_cards": {"type": "boolean"}}, "required": ["sync_suspended_cards", "sync_new_cards"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"sync_suspended_cards" : false, "sync_new_cards" : false} | json_instruct | {"type": "object", "properties": {"sync_suspended_cards": {"type": "boolean"}, "sync_new_cards": {"type": "boolean"}}, "required": ["sync_suspended_cards", "sync_new_cards"], "$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"}, "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" : 404333989, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "a8481d83b21a541f78a7f1486b68936b", "wof:id" : 404333989, "wof:repo" : "whosonfirst-data-admin-es"}, "bbox" : [-7.91086, 43.53265, -7.91086, 43.53265], "geometry" : {"coordinates" : [-7.91086, 43.53265], "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#"} |
The schema below describes a JSON structure. Generate a valid example:
{"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" : "3502150008", "district_id" : "3502150", "name" : "POHIJO"} | 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#"} |
Please provide a valid JSON object following this schema:
{"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
| ["projects/k8s-staging-kops/logs/cloudaudit.googleapis.com%2Factivity", "projects/k8s-staging-kops/logs/cloudbuild"] | json_instruct | {"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": {"__comment": {"type": "string"}, "parent": {"type": "string"}, "textures": {"type": "object", "properties": {"right": {"type": "string"}, "left": {"type": "string"}}, "required": ["right", "left"]}}, "required": ["__comment", "parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"__comment" : "~ Elsweyr", "parent" : "paragonia:block/wideblock_right", "textures" : {"right" : "paragonia:blocks/decorations/block_light", "left" : "paragonia:blocks/decorations/block_light"}} | json_instruct | {"type": "object", "properties": {"__comment": {"type": "string"}, "parent": {"type": "string"}, "textures": {"type": "object", "properties": {"right": {"type": "string"}, "left": {"type": "string"}}, "required": ["right", "left"]}}, "required": ["__comment", "parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"data": {"type": "object", "properties": {"version": {"type": "integer"}, "network": {"type": "integer"}, "type": {"type": "integer"}, "nonce": {"type": "string"}, "senderPublicKey": {"type": "string"}, "fee": {"type": "string"}, "amount": {"type": "string"}, "signature": {"type": "string"}, "secondSignature": {"type": "string"}, "id": {"type": "string"}}, "required": ["version", "network", "type", "nonce", "senderPublicKey", "fee", "amount", "signature", "secondSignature", "id"]}, "serialized": {"type": "string"}}, "required": ["data", "serialized"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"data" : {"version" : 2, "network" : 23, "type" : 7, "nonce" : "1", "senderPublicKey" : "03287bfebba4c7881a0509717e71b34b63f31e40021c321f89ae04f84be6d6ac37", "fee" : "2500000000", "amount" : "0", "signature" : "304402207b7f318cf799ed4861c7987bcc260b7e91df3d7c44d99452251b0e016ef5874002200af0450f6fc8d75b179754e54bcfb6e8234879395b09de11c738f16a5958a747", "secondSignature" : "3045022100c106c721ca4e80d5188c4f15a7cd2365b61f206bc8db2cc3c8e41991a096c2420220463f250283efb8a93a3b875d3905b598fa82fe4f46631a0328c77c5f103c75a6", "id" : "01b3b98ee801243cdea1fd88e67a11b675335ca8dc8b7bf26a520151989685ff"}, "serialized" : "ff0217010000000700010000000000000003287bfebba4c7881a0509717e71b34b63f31e40021c321f89ae04f84be6d6ac3700f902950000000000304402207b7f318cf799ed4861c7987bcc260b7e91df3d7c44d99452251b0e016ef5874002200af0450f6fc8d75b179754e54bcfb6e8234879395b09de11c738f16a5958a7473045022100c106c721ca4e80d5188c4f15a7cd2365b61f206bc8db2cc3c8e41991a096c2420220463f250283efb8a93a3b875d3905b598fa82fe4f46631a0328c77c5f103c75a6"} | json_instruct | {"type": "object", "properties": {"data": {"type": "object", "properties": {"version": {"type": "integer"}, "network": {"type": "integer"}, "type": {"type": "integer"}, "nonce": {"type": "string"}, "senderPublicKey": {"type": "string"}, "fee": {"type": "string"}, "amount": {"type": "string"}, "signature": {"type": "string"}, "secondSignature": {"type": "string"}, "id": {"type": "string"}}, "required": ["version", "network", "type", "nonce", "senderPublicKey", "fee", "amount", "signature", "secondSignature", "id"]}, "serialized": {"type": "string"}}, "required": ["data", "serialized"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Using the following JSON schema, generate a compatible JSON instance:
{"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"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" : 101846873, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "87c13f5aa06019dceb96e86c2b39acce", "wof:id" : 101846873, "wof:repo" : "whosonfirst-data-admin-fi"}, "bbox" : [28.9157385, 62.091049, 28.9157385, 62.091049], "geometry" : {"coordinates" : [28.9157385, 62.091049], "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": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [["230714005498", "\u65b0\u98ce\u793e\u533a\u865a\u62df\u5c45\u59d4\u4f1a", "111", "0"]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "string"}}, "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"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" : "0x15078bf34a69358457682b876f1027565aca1ef1", "tool" : "osiris", "start" : 1564606621.3572116, "end" : 1564606624.029691, "duration" : 2.6724793910980225, "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": "object", "properties": {"_classname": {"type": "string"}, "title": {"type": "string"}}, "required": ["_classname", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"_classname" : "zx.test.io.persistence.Page", "title" : "Home Page"} | json_instruct | {"type": "object", "properties": {"_classname": {"type": "string"}, "title": {"type": "string"}}, "required": ["_classname", "title"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}}, "required": ["wmo", "ghcn"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "94928", "name" : {"en" : "Bombala"}, "country" : "AU", "region" : "NSW", "identifiers" : {"wmo" : "94928", "ghcn" : "ASN00070005"}, "location" : {"latitude" : -36.9167, "longitude" : 149.2333, "elevation" : 705}, "timezone" : "Australia/Sydney"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "object", "properties": {"en": {"type": "string"}}, "required": ["en"]}, "country": {"type": "string"}, "region": {"type": "string"}, "identifiers": {"type": "object", "properties": {"wmo": {"type": "string"}, "ghcn": {"type": "string"}}, "required": ["wmo", "ghcn"]}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}, "elevation": {"type": "integer"}}, "required": ["latitude", "longitude", "elevation"]}, "timezone": {"type": "string"}}, "required": ["id", "name", "country", "region", "identifiers", "location", "timezone"], "$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"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "cli-color": {"type": "string"}, "execSync": {"type": "string"}}, "required": ["grunt-contrib-sass", "grunt-contrib-watch", "cli-color", "execSync"]}, "apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "git": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "git", "path"]}}}, "required": ["name", "version", "repository", "devDependencies", "apps"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "SARAH", "version" : "0.1.0", "repository" : {"type" : "git", "url" : "https://github.com/stevenharradine/SARAH-framework.git"}, "devDependencies" : {"grunt-contrib-sass" : "*", "grunt-contrib-watch" : "*", "cli-color" : "*", "execSync" : "*"}, "apps" : [{"name" : "Manage Users", "git" : "https://github.com/stevenharradine/SARAH-ManageUsers.git", "path" : "SARAH-ManageUsers"}, {"name" : "Settings", "git" : "https://github.com/stevenharradine/SARAH-Settings.git", "path" : "SARAH-Settings"}, {"name" : "Reader", "git" : "https://github.com/stevenharradine/SARAH-reader.git", "path" : "SARAH-reader"}, {"name" : "Media", "git" : "https://github.com/stevenharradine/SARAH-media.git", "path" : "SARAH-media"}, {"name" : "X10", "git" : "https://github.com/stevenharradine/SARAH-x10.git", "path" : "SARAH-x10"}, {"name" : "Books", "git" : "https://github.com/stevenharradine/SARAH-books.git", "path" : "SARAH-books"}, {"name" : "XBMC Remote", "git" : "https://github.com/stevenharradine/SARAH-xbmc.git", "path" : "SARAH-xbmc"}, {"name" : "Contacts", "git" : "https://github.com/stevenharradine/SARAH-contacts.git", "path" : "SARAH-contacts"}, {"name" : "Stocks", "git" : "https://github.com/stevenharradine/SARAH-stocks", "path" : "SARAH-stocks"}, {"name" : "Password Manager", "git" : "https://github.com/stevenharradine/SARAH-password-manager.git", "path" : "SARAH-password-manager"}, {"name" : "Key Store", "git" : "https://github.com/stevenharradine/SARAH-keystore.git", "path" : "SARAH-keystore"}, {"name" : "Bookmarks", "git" : "https://github.com/stevenharradine/SARAH-bookmarks", "path" : "SARAH-bookmarks"}, {"name" : "Budget", "git" : "https://github.com/stevenharradine/SARAH-budget", "path" : "SARAH-budget"}, {"name" : "Proxy", "git" : "https://github.com/stevenharradine/SARAH-proxy", "path" : "SARAH-proxy"}]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "devDependencies": {"type": "object", "properties": {"grunt-contrib-sass": {"type": "string"}, "grunt-contrib-watch": {"type": "string"}, "cli-color": {"type": "string"}, "execSync": {"type": "string"}}, "required": ["grunt-contrib-sass", "grunt-contrib-watch", "cli-color", "execSync"]}, "apps": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "git": {"type": "string"}, "path": {"type": "string"}}, "required": ["name", "git", "path"]}}}, "required": ["name", "version", "repository", "devDependencies", "apps"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : 110617, "info" : {"name" : "thfhft", "description" : "hfthfth ht fhtf j tf jtfj", "additionalInfo" : null, "format" : "uso", "category" : "global", "createdAt" : "2015-02-20T01:04:05.000Z", "updatedAt" : "2015-02-20T01:27:59.000Z", "license" : "CC0-1.0", "author" : {"id" : 285336, "name" : "anthonio"}}, "stats" : {"installs" : {"total" : 48, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "110617_after.jpeg", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "P { \r\nfont-size : 12pt; \r\nfont-family : arial,helvetica; \r\nfont-weight : normal; \r\n} \r\nH1 { \r\nfont-size : 36pt; \r\nfont-family : verdana,arial; \r\ntext-decoration : underline; \r\ntext-align : center; \r\nbackground-color : Teal; \r\n} "}} | json_instruct | {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "array", "items": {"type": "object", "properties": {"test-name": {"type": "string"}, "variant": {"type": "object", "properties": {"server_metadata": {"type": "string"}, "client_registration": {"type": "string"}}, "required": ["server_metadata", "client_registration"]}, "configuration-filename": {"type": "string"}, "current-block": {"type": "string"}, "condition": {"type": "string"}, "expected-result": {"type": "string"}, "comment": {"type": "string"}}, "required": ["test-name", "variant", "configuration-filename", "current-block", "condition", "expected-result", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"test-name" : "oidcc-ensure-request-with-acr-values-succeeds", "variant" : {"server_metadata" : "discovery", "client_registration" : "static_client"}, "configuration-filename" : "*", "current-block" : "Verify authorization endpoint response", "condition" : "ValidateIdTokenACRClaimAgainstAcrValuesRequest", "expected-result" : "warning", "comment" : "Not implemented yet"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"test-name": {"type": "string"}, "variant": {"type": "object", "properties": {"server_metadata": {"type": "string"}, "client_registration": {"type": "string"}}, "required": ["server_metadata", "client_registration"]}, "configuration-filename": {"type": "string"}, "current-block": {"type": "string"}, "condition": {"type": "string"}, "expected-result": {"type": "string"}, "comment": {"type": "string"}}, "required": ["test-name", "variant", "configuration-filename", "current-block", "condition", "expected-result", "comment"]}, "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "serve", "build"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "core-js": {"type": "string"}, "element-ui": {"type": "string"}, "font-awesome": {"type": "string"}, "js-cookie": {"type": "string"}, "jsencrypt": {"type": "string"}, "nprogress": {"type": "string"}, "path-to-regexp": {"type": "string"}, "qs": {"type": "string"}, "svg-sprite-loader": {"type": "string"}, "vue": {"type": "string"}, "vue-cropper": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "core-js", "element-ui", "font-awesome", "js-cookie", "jsencrypt", "nprogress", "path-to-regexp", "qs", "svg-sprite-loader", "vue", "vue-cropper", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-router": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "babel-plugin-component": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-router", "@vue/cli-service", "babel-plugin-component", "node-sass", "sass-loader", "style-loader", "vue-template-compiler"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "elmclient", "version" : "0.1.0", "private" : true, "scripts" : {"dev" : "vue-cli-service serve", "serve" : "vue-cli-service serve", "build" : "vue-cli-service build"}, "dependencies" : {"axios" : "^0.19.2", "core-js" : "^3.6.5", "element-ui" : "^2.13.2", "font-awesome" : "^4.7.0", "js-cookie" : "^2.2.1", "jsencrypt" : "^3.0.0-rc.1", "nprogress" : "^0.2.0", "path-to-regexp" : "2.4.0", "qs" : "^6.9.4", "svg-sprite-loader" : "^4.3.0", "vue" : "^2.6.11", "vue-cropper" : "^0.5.5", "vue-router" : "^3.2.0", "vuex" : "^3.5.1"}, "devDependencies" : {"@vue/cli-plugin-babel" : "^4.4.0", "@vue/cli-plugin-router" : "^4.4.0", "@vue/cli-service" : "^4.4.0", "babel-plugin-component" : "^1.1.1", "node-sass" : "^4.14.1", "sass-loader" : "^10.0.2", "style-loader" : "^1.2.1", "vue-template-compiler" : "^2.6.11"}, "browserslist" : ["> 1%", "last 2 versions", "not dead"]} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"dev": {"type": "string"}, "serve": {"type": "string"}, "build": {"type": "string"}}, "required": ["dev", "serve", "build"]}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "core-js": {"type": "string"}, "element-ui": {"type": "string"}, "font-awesome": {"type": "string"}, "js-cookie": {"type": "string"}, "jsencrypt": {"type": "string"}, "nprogress": {"type": "string"}, "path-to-regexp": {"type": "string"}, "qs": {"type": "string"}, "svg-sprite-loader": {"type": "string"}, "vue": {"type": "string"}, "vue-cropper": {"type": "string"}, "vue-router": {"type": "string"}, "vuex": {"type": "string"}}, "required": ["axios", "core-js", "element-ui", "font-awesome", "js-cookie", "jsencrypt", "nprogress", "path-to-regexp", "qs", "svg-sprite-loader", "vue", "vue-cropper", "vue-router", "vuex"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-router": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "babel-plugin-component": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-router", "@vue/cli-service", "babel-plugin-component", "node-sass", "sass-loader", "style-loader", "vue-template-compiler"]}, "browserslist": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies", "browserslist"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Displays an on-sale badge if the product is on-sale.": {"type": "array", "items": {"type": "string"}}, "On-Sale Badge": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Displays an on-sale badge if the product is on-sale.", "On-Sale Badge"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"translation-revision-date" : "2022-04-15 21:02:49+0000", "generator" : "GlotPress/3.0.0", "domain" : "messages", "locale_data" : {"messages" : {"" : {"domain" : "messages", "plural-forms" : "nplurals=1; plural=0;", "lang" : "ja_JP"}, "Displays an on-sale badge if the product is on-sale." : ["\u5546\u54c1\u304c\u30bb\u30fc\u30eb\u4e2d\u306e\u5834\u5408\u306f\u3001\u30bb\u30fc\u30eb\u4e2d\u30d0\u30c3\u30b8\u3092\u8868\u793a\u3057\u307e\u3059\u3002"], "On-Sale Badge" : ["\u30bb\u30fc\u30eb\u4e2d\u30d0\u30c3\u30b8"]}}, "comment" : {"reference" : "packages/woocommerce-blocks/assets/js/atomic/blocks/product-elements/sale-badge/constants.js"}} | json_instruct | {"type": "object", "properties": {"translation-revision-date": {"type": "string"}, "generator": {"type": "string"}, "domain": {"type": "string"}, "locale_data": {"type": "object", "properties": {"messages": {"type": "object", "properties": {"": {"type": "object", "properties": {"domain": {"type": "string"}, "plural-forms": {"type": "string"}, "lang": {"type": "string"}}, "required": ["domain", "plural-forms", "lang"]}, "Displays an on-sale badge if the product is on-sale.": {"type": "array", "items": {"type": "string"}}, "On-Sale Badge": {"type": "array", "items": {"type": "string"}}}, "required": ["", "Displays an on-sale badge if the product is on-sale.", "On-Sale Badge"]}}, "required": ["messages"]}, "comment": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["translation-revision-date", "generator", "domain", "locale_data", "comment"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"USAE": {"type": "number"}, "TPAC": {"type": "number"}}, "required": ["USAE", "TPAC"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"USAE" : 1.0, "TPAC" : 0.5455207055375203} | json_instruct | {"type": "object", "properties": {"USAE": {"type": "number"}, "TPAC": {"type": "number"}}, "required": ["USAE", "TPAC"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "null"}, "population": {"type": "null"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {}, "required": []}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"type" : "Feature", "properties" : {"name" : "Bujumbura Mairie", "iso2" : "BI-BM", "admin_level" : 4, "osm_id" : 1694988, "wikidata_id" : "Q1816580", "wikipedia_id" : null, "population" : null, "countrylevel_id" : "iso2:BI-BM", "osm_data" : {"localname" : "Bujumbura Mairie", "official_name" : "", "alltags" : {}}}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[29.292, -3.349], [29.318, -3.347], [29.312, -3.305], [29.422, -3.322], [29.405, -3.344], [29.383, -3.427], [29.342, -3.438], [29.35, -3.391], [29.324, -3.355], [29.292, -3.349]]]]}} | json_instruct | {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "iso2": {"type": "string"}, "admin_level": {"type": "integer"}, "osm_id": {"type": "integer"}, "wikidata_id": {"type": "string"}, "wikipedia_id": {"type": "null"}, "population": {"type": "null"}, "countrylevel_id": {"type": "string"}, "osm_data": {"type": "object", "properties": {"localname": {"type": "string"}, "official_name": {"type": "string"}, "alltags": {"type": "object", "properties": {}, "required": []}}, "required": ["localname", "official_name", "alltags"]}}, "required": ["name", "iso2", "admin_level", "osm_id", "wikidata_id", "wikipedia_id", "population", "countrylevel_id", "osm_data"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}}, "required": ["type", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"csrf_token": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "minLength"]}, "traits": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "method": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["csrf_token", "password", "traits", "method"]}, "if": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"method": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}}, "required": ["method"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"]}, "then": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}}, "required": ["required"]}}, "required": ["$id", "$schema", "type", "properties", "if", "then"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"$id" : "https://schemas.ory.sh/kratos/selfservice/strategy/password/registration.schema.json", "$schema" : "http://json-schema.org/draft-07/schema#", "type" : "object", "properties" : {"csrf_token" : {"type" : "string"}, "password" : {"type" : "string", "minLength" : 1}, "traits" : {"description" : "This field will be overwritten in registration.go's decoder() method. Do not add anything to this field as it has no effect."}, "method" : {"type" : "string"}}, "if" : {"properties" : {"method" : {"const" : "password"}}, "required" : ["method"]}, "then" : {"required" : ["password"]}} | json_instruct | {"type": "object", "properties": {"$id": {"type": "string"}, "$schema": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"csrf_token": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "password": {"type": "object", "properties": {"type": {"type": "string"}, "minLength": {"type": "integer"}}, "required": ["type", "minLength"]}, "traits": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "method": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["csrf_token", "password", "traits", "method"]}, "if": {"type": "object", "properties": {"properties": {"type": "object", "properties": {"method": {"type": "object", "properties": {"const": {"type": "string"}}, "required": ["const"]}}, "required": ["method"]}, "required": {"type": "array", "items": {"type": "string"}}}, "required": ["properties", "required"]}, "then": {"type": "object", "properties": {"required": {"type": "array", "items": {"type": "string"}}}, "required": ["required"]}}, "required": ["$id", "$schema", "type", "properties", "if", "then"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"namaKab" : "JEMBRANA", "originalFilename" : "firlinand.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36246, "noUrut" : 1, "nama" : "FIRLINAND TAUFIEQ", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JEMBRANA", "originalFilename" : "anggriptarum 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 41382, "noUrut" : 2, "nama" : "NI KOMANG RIRIN ANGRIPTARUM", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JEMBRANA", "originalFilename" : "donatus openg 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36399, "noUrut" : 3, "nama" : "DONATUS OPENG", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JEMBRANA", "originalFilename" : "harries 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36270, "noUrut" : 4, "nama" : "HARRIES EDHY KOESTIYAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JEMBRANA", "originalFilename" : "sri inda 4x6.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36494, "noUrut" : 5, "nama" : "SRI INDAYANI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JEMBRANA", "originalFilename" : "4x6 3.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36297, "noUrut" : 6, "nama" : "NI KETUT PARWATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "JEMBRANA", "originalFilename" : "4x6 budiartama.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36527, "noUrut" : 7, "nama" : "I WAYAN BUDIARTAMA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "JEMBRANA", "originalFilename" : "4x6 ard.jpg", "namaPartai" : "Partai Hati Nurani Rakyat", "id" : 36358, "noUrut" : 8, "nama" : "NI PUTU ARDANI", "stringJenisKelamin" : "Perempuan"}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"namaKab": {"type": "string"}, "originalFilename": {"type": "string"}, "namaPartai": {"type": "string"}, "id": {"type": "integer"}, "noUrut": {"type": "integer"}, "nama": {"type": "string"}, "stringJenisKelamin": {"type": "string"}}, "required": ["namaKab", "originalFilename", "namaPartai", "id", "noUrut", "nama", "stringJenisKelamin"]}, "$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"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chrome-launcher": {"type": "string"}, "chrome-remote-interface": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["chrome-launcher", "chrome-remote-interface", "node-fetch"]}}, "required": ["name", "version", "description", "author", "license", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "mattermost-webapp-profiling", "version" : "0.0.1", "description" : "Under construction project for automated profiling of the Mattermost web app.", "author" : "Joram Wilander", "license" : "Apache-2.0", "repository" : "https://github.com/mattermost/mattermost-webapp-profiling", "dependencies" : {"chrome-launcher" : "0.3.2", "chrome-remote-interface" : "0.25.4", "node-fetch" : "1.7.3"}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "repository": {"type": "string"}, "dependencies": {"type": "object", "properties": {"chrome-launcher": {"type": "string"}, "chrome-remote-interface": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["chrome-launcher", "chrome-remote-interface", "node-fetch"]}}, "required": ["name", "version", "description", "author", "license", "repository", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Please provide a valid JSON object following this schema:
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "object", "properties": {"version": {"type": "integer"}, "sources": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"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" : "export { Chart } from './components/Chart';\nexport * from './types';", "map" : {"version" : 3, "sources" : ["/Users/samerkadih/Desktop/Coding/Personal/React/kelly-criterion/node_modules/react-charts/es/index.js"], "names" : ["Chart"], "mappings" : "AAAA,SAASA,KAAT,QAAsB,oBAAtB;AACA,cAAc,SAAd", "sourcesContent" : ["export { Chart } from './components/Chart';\nexport * from './types';"]}, "metadata" : {}, "sourceType" : "module"} | 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#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [{"c" : 1281065, "d" : "65V", "md" : false}, {"c" : 1281066, "d" : "66V", "md" : false}, {"c" : 1281067, "d" : "67V", "md" : false}, {"c" : 1281068, "d" : "68V", "md" : false}, {"c" : 1281069, "d" : "69V", "md" : false}, {"c" : 1281070, "d" : "70V", "md" : false}, {"c" : 1281071, "d" : "71V", "md" : false}, {"c" : 1281072, "d" : "72V", "md" : false}, {"c" : 1281073, "d" : "73V", "md" : false}, {"c" : 1281074, "d" : "74V", "md" : false}, {"c" : 1281075, "d" : "75V", "md" : false}, {"c" : 1281076, "d" : "76V", "md" : false}, {"c" : 1281077, "d" : "77V", "md" : false}, {"c" : 1281078, "d" : "78V", "md" : false}, {"c" : 1281079, "d" : "79V", "md" : false}, {"c" : 1281080, "d" : "80V", "md" : false}, {"c" : 1281081, "d" : "81V", "md" : false}, {"c" : 1281082, "d" : "82V", "md" : true}, {"c" : 1281083, "d" : "83V", "md" : false}] | json_instruct | {"type": "array", "items": {"type": "object", "properties": {"c": {"type": "integer"}, "d": {"type": "string"}, "md": {"type": "boolean"}}, "required": ["c", "d", "md"]}, "$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"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"aogg\\think\\": {"type": "string"}}, "required": ["aogg\\think\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["name", "description", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "aogg/think-helper", "description" : "PHP\u6570\u7ec4\u548c\u5b57\u7b26\u4e32\u76f8\u5173\u5e2e\u52a9\u7c7b", "license" : "Apache-2.0", "authors" : [{"name" : "aogg", "email" : "[email protected]"}], "require" : {"php" : ">=7.1.0"}, "autoload" : {"psr-4" : {"aogg\\think\\" : "src"}, "files" : ["src/helper.php"]}} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"aogg\\think\\": {"type": "string"}}, "required": ["aogg\\think\\"]}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["psr-4", "files"]}}, "required": ["name", "description", "license", "authors", "require", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"} |
The schema below describes a JSON structure. Generate a valid example:
{"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "version": {"type": "string"}, "website": {"type": "string"}, "command": {"type": "string"}, "url": {"type": "string"}, "output": {"type": "string"}, "permission": {"type": "string"}}, "required": ["name", "icon", "version", "website", "command", "url", "output", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "Git", "icon" : "images/git.png", "version" : "2.17.1.2", "website" : "https://desktop.github.com/", "command" : "Start-Process -FilePath * /passive", "url" : "https://github-production-release-asset-2e65be.s3.amazonaws.com/23216272/52993848-638c-11e8-87c7-4d75fc1d0b18?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIWNJYAX4CSVEH53A%2F20180611%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20180611T180429Z&X-Amz-Expires=300&X-Amz-Signature=6f1d23810c350e386a161461e5743f49ddd6b71691540fc4a9241f15eb240a8d&X-Amz-SignedHeaders=host&actor_id=27204436&response-content-disposition=attachment%3B%20filename%3DGit-2.17.1.2-64-bit.exe&response-content-type=application%2Foctet-stream", "output" : "C:/deployment/git.exe", "permission" : "0"} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "icon": {"type": "string"}, "version": {"type": "string"}, "website": {"type": "string"}, "command": {"type": "string"}, "url": {"type": "string"}, "output": {"type": "string"}, "permission": {"type": "string"}}, "required": ["name", "icon", "version", "website", "command", "url", "output", "permission"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"name": {"type": "string"}, "inputs": {"type": "object", "properties": {"n": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "radix": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "optional": {"type": "boolean"}}, "required": ["type", "metadata", "optional"]}}, "required": ["n", "radix"]}, "outputs": {"type": "object", "properties": {"str": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["str"]}, "metadata": {"type": "object", "properties": {"icon": {"type": "string"}, "description": {"type": "string"}, "complexity": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["icon", "description", "complexity", "tags"]}, "id": {"type": "string"}, "base": {"type": "boolean"}, "type": {"type": "string"}, "system": {"type": "boolean"}}, "required": ["name", "inputs", "outputs", "metadata", "id", "base", "type", "system"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"name" : "number to string", "inputs" : {"n" : {"type" : "number"}, "radix" : {"type" : "number", "metadata" : {"description" : "integer in the range 2 through 36 specifying the base to represent the number"}, "optional" : true}}, "outputs" : {"str" : {"type" : "string"}}, "metadata" : {"icon" : "tilde", "description" : "convert a number into a string", "complexity" : 3, "tags" : ["f", "number"]}, "id" : "f712793d-8ee9-4805-9d4a-8c210cae667a", "base" : true, "type" : "`U`", "system" : true} | json_instruct | {"type": "object", "properties": {"name": {"type": "string"}, "inputs": {"type": "object", "properties": {"n": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}, "radix": {"type": "object", "properties": {"type": {"type": "string"}, "metadata": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}, "optional": {"type": "boolean"}}, "required": ["type", "metadata", "optional"]}}, "required": ["n", "radix"]}, "outputs": {"type": "object", "properties": {"str": {"type": "object", "properties": {"type": {"type": "string"}}, "required": ["type"]}}, "required": ["str"]}, "metadata": {"type": "object", "properties": {"icon": {"type": "string"}, "description": {"type": "string"}, "complexity": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}}, "required": ["icon", "description", "complexity", "tags"]}, "id": {"type": "string"}, "base": {"type": "boolean"}, "type": {"type": "string"}, "system": {"type": "boolean"}}, "required": ["name", "inputs", "outputs", "metadata", "id", "base", "type", "system"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Construct a JSON document that adheres to this schema specification:
{"type": "object", "properties": {"bio": {"type": "object", "properties": {"birthday": {"type": "string"}, "gender": {"type": "string"}}, "required": ["birthday", "gender"]}, "id": {"type": "object", "properties": {"aclu_id": {"type": "string"}, "ballotpedia": {"type": "string"}, "bioguide": {"type": "string"}, "cspan": {"type": "integer"}, "fec": {"type": "array", "items": {"type": "string"}}, "google_entity_id": {"type": "string"}, "govtrack": {"type": "integer"}, "icpsr": {"type": "integer"}, "maplight": {"type": "integer"}, "opensecrets": {"type": "string"}, "votesmart": {"type": "integer"}, "wikidata": {"type": "string"}, "wikipedia": {"type": "string"}}, "required": ["aclu_id", "ballotpedia", "bioguide", "cspan", "fec", "google_entity_id", "govtrack", "icpsr", "maplight", "opensecrets", "votesmart", "wikidata", "wikipedia"]}, "name": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}, "official_full": {"type": "string"}}, "required": ["first", "last", "official_full"]}, "social": {"type": "object", "properties": {"facebook": {"type": "string"}, "instagram": {"type": "string"}, "twitter": {"type": "string"}, "twitter_id": {"type": "integer"}}, "required": ["facebook", "instagram", "twitter", "twitter_id"]}, "terms": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "district": {"type": "integer"}, "end": {"type": "string"}, "office": {"type": "string"}, "party": {"type": "string"}, "phone": {"type": "string"}, "start": {"type": "string"}, "state": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["address", "district", "end", "office", "party", "phone", "start", "state", "type", "url"]}}, "url_slug": {"type": "string"}}, "required": ["bio", "id", "name", "social", "terms", "url_slug"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"bio" : {"birthday" : "1956-07-24", "gender" : "M"}, "id" : {"aclu_id" : "aclu/elections-api/congress_legislator:626", "ballotpedia" : "Charlie Crist", "bioguide" : "C001111", "cspan" : 7960, "fec" : ["H6FL13205"], "google_entity_id" : "kg:/m/04jyvv", "govtrack" : 412697, "icpsr" : 21712, "maplight" : 2209, "opensecrets" : "N00002942", "votesmart" : 24311, "wikidata" : "Q374693", "wikipedia" : "Charlie Crist"}, "name" : {"first" : "Charlie", "last" : "Crist", "official_full" : "Charlie Crist"}, "social" : {"facebook" : "RepCharlieCrist", "instagram" : "repcharliecrist", "twitter" : "repcharliecrist", "twitter_id" : 816030424778543104}, "terms" : [{"address" : "427 Cannon House Office Building; Washington DC 20515-0913", "district" : 13, "end" : "2019-01-03", "office" : "427 Cannon House Office Building", "party" : "Democrat", "phone" : "202-225-5961", "start" : "2017-01-03", "state" : "FL", "type" : "rep", "url" : "https://crist.house.gov"}, {"address" : "215 Cannon House Office Building Washington DC 20515-0913", "district" : 13, "end" : "2021-01-03", "office" : "215 Cannon House Office Building", "party" : "Democrat", "phone" : "202-225-5961", "start" : "2019-01-03", "state" : "FL", "type" : "rep", "url" : "https://crist.house.gov"}, {"address" : "215 Cannon House Office Building Washington DC 20515-0913", "district" : 13, "end" : "2023-01-03", "office" : "215 Cannon House Office Building", "party" : "Democrat", "phone" : "202-225-5961", "start" : "2021-01-03", "state" : "FL", "type" : "rep", "url" : "https://crist.house.gov"}], "url_slug" : "fl-charlie-crist"} | json_instruct | {"type": "object", "properties": {"bio": {"type": "object", "properties": {"birthday": {"type": "string"}, "gender": {"type": "string"}}, "required": ["birthday", "gender"]}, "id": {"type": "object", "properties": {"aclu_id": {"type": "string"}, "ballotpedia": {"type": "string"}, "bioguide": {"type": "string"}, "cspan": {"type": "integer"}, "fec": {"type": "array", "items": {"type": "string"}}, "google_entity_id": {"type": "string"}, "govtrack": {"type": "integer"}, "icpsr": {"type": "integer"}, "maplight": {"type": "integer"}, "opensecrets": {"type": "string"}, "votesmart": {"type": "integer"}, "wikidata": {"type": "string"}, "wikipedia": {"type": "string"}}, "required": ["aclu_id", "ballotpedia", "bioguide", "cspan", "fec", "google_entity_id", "govtrack", "icpsr", "maplight", "opensecrets", "votesmart", "wikidata", "wikipedia"]}, "name": {"type": "object", "properties": {"first": {"type": "string"}, "last": {"type": "string"}, "official_full": {"type": "string"}}, "required": ["first", "last", "official_full"]}, "social": {"type": "object", "properties": {"facebook": {"type": "string"}, "instagram": {"type": "string"}, "twitter": {"type": "string"}, "twitter_id": {"type": "integer"}}, "required": ["facebook", "instagram", "twitter", "twitter_id"]}, "terms": {"type": "array", "items": {"type": "object", "properties": {"address": {"type": "string"}, "district": {"type": "integer"}, "end": {"type": "string"}, "office": {"type": "string"}, "party": {"type": "string"}, "phone": {"type": "string"}, "start": {"type": "string"}, "state": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "required": ["address", "district", "end", "office", "party", "phone", "start", "state", "type", "url"]}}, "url_slug": {"type": "string"}}, "required": ["bio", "id", "name", "social", "terms", "url_slug"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create an example JSON object that satisfies this schema:
{"type": "object", "properties": {"nixpkgs": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}, "nixpkgs-static": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}}, "required": ["nixpkgs", "nixpkgs-static"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"nixpkgs" : {"branch" : "nixos-20.03", "description" : "Nix Packages collection", "homepage" : "https://github.com/NixOS/nixpkgs", "owner" : "NixOS", "repo" : "nixpkgs", "rev" : "030e2ce817c8e83824fb897843ff70a15c131b96", "sha256" : "110kgp4x5bx44rgw55ngyhayr4s19xwy19n6qw9g01hvhdisilwf", "type" : "tarball", "url" : "https://github.com/NixOS/nixpkgs/archive/030e2ce817c8e83824fb897843ff70a15c131b96.tar.gz", "url_template" : "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"}, "nixpkgs-static" : {"branch" : "master", "description" : "easily build most Haskell programs into fully static Linux executables", "homepage" : "", "owner" : "nh2", "repo" : "static-haskell-nix", "rev" : "bd66b86b72cff4479e1c76d5916a853c38d09837", "sha256" : "0rnsxaw7v27znsg9lgqk1i4007ydqrc8gfgimrmhf24lv6galbjh", "type" : "tarball", "url" : "https://github.com/nh2/static-haskell-nix/archive/bd66b86b72cff4479e1c76d5916a853c38d09837.tar.gz", "url_template" : "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz"}} | json_instruct | {"type": "object", "properties": {"nixpkgs": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}, "nixpkgs-static": {"type": "object", "properties": {"branch": {"type": "string"}, "description": {"type": "string"}, "homepage": {"type": "string"}, "owner": {"type": "string"}, "repo": {"type": "string"}, "rev": {"type": "string"}, "sha256": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}, "url_template": {"type": "string"}}, "required": ["branch", "description", "homepage", "owner", "repo", "rev", "sha256", "type", "url", "url_template"]}}, "required": ["nixpkgs", "nixpkgs-static"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Based on the schema below, produce a valid JSON object:
{"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"$schema": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "outputTarget": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "type", "enum"]}, "newlineKind": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["description", "type", "enum", "default"]}, "newDocfxNamespaces": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "plugins": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "tableOfContents": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}}, "required": ["description", "type", "additionalProperties"]}}, "required": ["$schema", "outputTarget", "newlineKind", "newDocfxNamespaces", "plugins", "tableOfContents"]}, "additionalProperties": {"type": "boolean"}}, "required": ["title", "description", "type", "properties", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"title" : "API Documenter Configuration", "description" : "Describes how the API Documenter tool will process a project.", "type" : "object", "properties" : {"$schema" : {"description" : "Part of the JSON Schema standard, this optional keyword declares the URL of the schema that the file conforms to. Editors may download the schema and use it to perform syntax highlighting.", "type" : "string"}, "outputTarget" : {"description" : "Specifies what type of documentation will be generated", "type" : "string", "enum" : ["docfx", "markdown"]}, "newlineKind" : {"description" : "Specifies what type of newlines API Documenter should use when writing output files. By default, the output files will be written with Windows-style newlines. To use POSIX-style newlines, specify \"lf\" instead. To use the OS's default newline kind, specify \"os\".", "type" : "string", "enum" : ["crlf", "lf", "os"], "default" : "crlf"}, "newDocfxNamespaces" : {"description" : "This enables an experimental feature that will be officially released with the next major version of API Documenter. It requires DocFX 2.46 or newer. It enables documentation for namespaces and adds them to the table of contents. This will also affect file layout as namespaced items will be nested under a directory for the namespace instead of just within the package.", "type" : "boolean"}, "plugins" : {"description" : "Specifies plugin packages to be loaded", "type" : "array"}, "tableOfContents" : {"description" : "Configures how the table of contents is generated.", "type" : "object", "additionalProperties" : true}}, "additionalProperties" : false} | json_instruct | {"type": "object", "properties": {"title": {"type": "string"}, "description": {"type": "string"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"$schema": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "outputTarget": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["description", "type", "enum"]}, "newlineKind": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["description", "type", "enum", "default"]}, "newDocfxNamespaces": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "plugins": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}}, "required": ["description", "type"]}, "tableOfContents": {"type": "object", "properties": {"description": {"type": "string"}, "type": {"type": "string"}, "additionalProperties": {"type": "boolean"}}, "required": ["description", "type", "additionalProperties"]}}, "required": ["$schema", "outputTarget", "newlineKind", "newDocfxNamespaces", "plugins", "tableOfContents"]}, "additionalProperties": {"type": "boolean"}}, "required": ["title", "description", "type", "properties", "additionalProperties"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Following the schema specification below, generate a valid JSON instance:
{"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"id" : "d430-44", "text" : "July 2, 1958\nMiss Martha Jane Smith\n17 Gramercy Park South\nNew York City\nNew York\nDear Miss Smith:\nIn regard to your letter of June 24 concerning our Fact Sheets, I am en\u00ac\nclosing a letter which we sent out some time ago to all Fact Sheetseub-\nscrlbers. I think it will fill you in cm the details concerning this publi\u00ac\ncation . I am also enclosing a listing of our publications and recordings\nwhich are available and call your attention to number P-7 on page one *\nI realize this information is probably not too much help to you, but as\nyou can see, our Fact Sheets are published regularly\u2014perhaps 4 or 5\nsome months , 2-3 the next month. Therefore, I cannot teU from you\nletter Just what Fact Sheet you wished, as we put out quite a few during\nthe month of June, 1957.\nSincerely\n(Mrs JJudith B. Gans\nSecretary\nEnclosues\nP.S. A Fact Sheet Index is also enclosed"} | json_instruct | {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate sample JSON data that conforms to the following schema definition:
{"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "null"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"ETag" : "W/\"07c073814b1be00bfe172c7932a676bfda4bf6e6a2bf9424d06c6e2fe1d3db09\"", "Last-Modified" : "Thu, 07 Oct 2021 17:53:08 GMT", "base" : {"repo" : {"name" : "jquery-ui-feedstock"}}, "closed_at" : null, "created_at" : "2021-10-07T17:53:03Z", "draft" : false, "head" : {"ref" : "1.13.0_h863197"}, "html_url" : "https://github.com/conda-forge/jquery-ui-feedstock/pull/2", "id" : 753407444, "labels" : [], "mergeable" : true, "mergeable_state" : "unstable", "merged" : false, "merged_at" : null, "number" : 2, "state" : "open", "updated_at" : "2021-10-07T17:53:08Z"} | json_instruct | {"type": "object", "properties": {"ETag": {"type": "string"}, "Last-Modified": {"type": "string"}, "base": {"type": "object", "properties": {"repo": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["repo"]}, "closed_at": {"type": "null"}, "created_at": {"type": "string"}, "draft": {"type": "boolean"}, "head": {"type": "object", "properties": {"ref": {"type": "string"}}, "required": ["ref"]}, "html_url": {"type": "string"}, "id": {"type": "integer"}, "labels": {"type": "array", "items": {}}, "mergeable": {"type": "boolean"}, "mergeable_state": {"type": "string"}, "merged": {"type": "boolean"}, "merged_at": {"type": "null"}, "number": {"type": "integer"}, "state": {"type": "string"}, "updated_at": {"type": "string"}}, "required": ["ETag", "Last-Modified", "base", "closed_at", "created_at", "draft", "head", "html_url", "id", "labels", "mergeable", "mergeable_state", "merged", "merged_at", "number", "state", "updated_at"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Generate a valid JSON object that conforms to the following schema:
{"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
| {"survey.css" : "sha512-0ABo+i1s9l5a7+fSrhTkXmQyDsl3mChXQx8eepEvHj3Ippd7s1r812D8cqVrMxKnIKoM4RYJ7rWe9YI35MdQ/w==", "survey.min.css" : "sha512-2QbKqM8fa7iTPvei4mIuSA56eb7cTyTRNX/SWzNsHrzGZSyyiN3mNljb8gtFsDtxP4dGs1hZ3COxe4S2RKj9Rw==", "survey.react.js" : "sha512-VRvr3ip/RNh6ffpKoE/jPeqAi0CVWap7V5s8d7uhjT9DJw0Onnu5L9167l7upQyCdezCl6qs9kM1FB5+U+6TKA==", "survey.react.min.js" : "sha512-btbPu8ReMQx+RZx1CmbvFmGoc7hu7Dc56TtSjg91XGDWOHHe6jT8+OCsIewnF3Tx8p9nKphTMN+KsQvmpdbXFg=="} | json_instruct | {"type": "object", "properties": {"survey.css": {"type": "string"}, "survey.min.css": {"type": "string"}, "survey.react.js": {"type": "string"}, "survey.react.min.js": {"type": "string"}}, "required": ["survey.css", "survey.min.css", "survey.react.js", "survey.react.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"} |
Create a JSON structure that matches this schema definition:
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
| [[1996, 5], [1997, 8], [2000, 5], [2003, 7], [2004, 6], [2005, 10], [2006, 8], [2007, 9], [2008, 8], [2009, 18], [2010, 7], [2011, 12], [2012, 12], [2013, 13], [2014, 8]] | json_instruct | {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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.