input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"text" : {"0" : {"m1" : "\u0627\u0632 \u06cc\u0627\u062f \u062e\u062f\u0627\u06cc \u0645\u0631\u062f \u0645\u0637\u0644\u0642 \u062e\u06cc\u0632\u062f", "m2" : "\u0628\u0646\u06af\u0631 \u06a9\u0647 \u0632 \u0646\u0648\u0631 \u062d\u0642 \u0686\u0647 \u0631\u0648\u0646\u0642 \u062e\u06cc\u0632\u062f"}, "1" : {"m1" : "\u0627\u06cc\u0646 \u0628\u0627\u0637\u0646 \u0645\u0631\u062f\u0627\u0646 \u06a9\u0647 \u0639\u062c\u0627\u06cc\u0628 \u0628\u062d\u0631\u06cc\u0633\u062a", "m2" : "\u0686\u0648\u0646 \u0645\u0648\u062c \u0632\u0646\u062f \u0627\u0632 \u0622\u0646 \u0627\u0646\u0627\u0627\u0644\u062d\u0642 \u062e\u06cc\u0632\u062f"}}}
json_instruct
{"type": "object", "properties": {"text": {"type": "object", "properties": {"0": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}, "1": {"type": "object", "properties": {"m1": {"type": "string"}, "m2": {"type": "string"}}, "required": ["m1", "m2"]}}, "required": ["0", "1"]}}, "required": ["text"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}, "python.linting.enabled": {"type": "boolean"}, "restructuredtext.confPath": {"type": "string"}}, "required": ["python.pythonPath", "python.linting.pylintEnabled", "python.linting.enabled", "restructuredtext.confPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"python.pythonPath" : "/home/sysadmin/whardier/tornado-relp/.venv/bin/python3", "python.linting.pylintEnabled" : true, "python.linting.enabled" : true, "restructuredtext.confPath" : ""}
json_instruct
{"type": "object", "properties": {"python.pythonPath": {"type": "string"}, "python.linting.pylintEnabled": {"type": "boolean"}, "python.linting.enabled": {"type": "boolean"}, "restructuredtext.confPath": {"type": "string"}}, "required": ["python.pythonPath", "python.linting.pylintEnabled", "python.linting.enabled", "restructuredtext.confPath"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "rubywood", "definition" : "red sandalwood. See under Sandalwood."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"emulators": {"type": "object", "properties": {"default": {"type": "object", "properties": {"port": {"type": "integer"}, "serviceAccount": {"type": "string"}}, "required": ["port", "serviceAccount"]}}, "required": ["default"]}, "contracts": {"type": "object", "properties": {"NonFungibleToken": {"type": "object", "properties": {"source": {"type": "string"}, "aliases": {"type": "object", "properties": {"emulator": {"type": "string"}}, "required": ["emulator"]}}, "required": ["source", "aliases"]}, "TrartContractNFT": {"type": "string"}}, "required": ["NonFungibleToken", "TrartContractNFT"]}, "networks": {"type": "object", "properties": {"emulator": {"type": "string"}}, "required": ["emulator"]}, "accounts": {"type": "object", "properties": {"emulator-account": {"type": "object", "properties": {"address": {"type": "string"}, "key": {"type": "string"}}, "required": ["address", "key"]}}, "required": ["emulator-account"]}, "deployments": {"type": "object", "properties": {"emulator": {"type": "object", "properties": {"emulator-account": {"type": "array", "items": {"type": "string"}}}, "required": ["emulator-account"]}}, "required": ["emulator"]}}, "required": ["emulators", "contracts", "networks", "accounts", "deployments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"emulators" : {"default" : {"port" : 3569, "serviceAccount" : "emulator-account"}}, "contracts" : {"NonFungibleToken" : {"source" : "./contracts/NonFungibleToken.cdc", "aliases" : {"emulator" : "0xf8d6e0586b0a20c7"}}, "TrartContractNFT" : "./contracts/TrartTemplateNFT.cdc"}, "networks" : {"emulator" : "127.0.0.1:3569"}, "accounts" : {"emulator-account" : {"address" : "f8d6e0586b0a20c7", "key" : "ada0e508b64869e6e7728282e9675803f3c1ada5370e30842c3885c351b61d33"}}, "deployments" : {"emulator" : {"emulator-account" : ["TrartContractNFT", "NonFungibleToken"]}}}
json_instruct
{"type": "object", "properties": {"emulators": {"type": "object", "properties": {"default": {"type": "object", "properties": {"port": {"type": "integer"}, "serviceAccount": {"type": "string"}}, "required": ["port", "serviceAccount"]}}, "required": ["default"]}, "contracts": {"type": "object", "properties": {"NonFungibleToken": {"type": "object", "properties": {"source": {"type": "string"}, "aliases": {"type": "object", "properties": {"emulator": {"type": "string"}}, "required": ["emulator"]}}, "required": ["source", "aliases"]}, "TrartContractNFT": {"type": "string"}}, "required": ["NonFungibleToken", "TrartContractNFT"]}, "networks": {"type": "object", "properties": {"emulator": {"type": "string"}}, "required": ["emulator"]}, "accounts": {"type": "object", "properties": {"emulator-account": {"type": "object", "properties": {"address": {"type": "string"}, "key": {"type": "string"}}, "required": ["address", "key"]}}, "required": ["emulator-account"]}, "deployments": {"type": "object", "properties": {"emulator": {"type": "object", "properties": {"emulator-account": {"type": "array", "items": {"type": "string"}}}, "required": ["emulator-account"]}}, "required": ["emulator"]}}, "required": ["emulators", "contracts", "networks", "accounts", "deployments"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid 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" : 404400837, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "9f34ca5d2d3fbd057ab672b8f857a444", "wof:id" : 404400837, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.24972, 42.53639, 2.24972, 42.53639], "geometry" : {"coordinates" : [2.24972, 42.53639], "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": "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" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 177746, "noUrut" : 1, "nama" : "MOHAMMAD HATTA", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 157206, "noUrut" : 2, "nama" : "NURHAYATI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 189875, "noUrut" : 3, "nama" : "HASANUDDIN SYIHAB", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 221308, "noUrut" : 4, "nama" : "SYAIFUL MAGRABI, SE", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 179744, "noUrut" : 5, "nama" : "LIZA ELIZA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 222102, "noUrut" : 6, "nama" : "ALFIANSYAH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : ";knoihik.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 222985, "noUrut" : 7, "nama" : "ERMAYANTI", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "RIDWANSYAH.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 156650, "noUrut" : 8, "nama" : "RIDWANSYAH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 222726, "noUrut" : 9, "nama" : "DAHMAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "SUMBAWA BARAT", "originalFilename" : "foto.jpg", "namaPartai" : "PARTAI AMANAT NASIONAL", "id" : 221491, "noUrut" : 10, "nama" : "WAWAN DARMAWAN, S.KM", "stringJenisKelamin" : "Laki-Laki"}]
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "9118082001", "nama" : "Suru-Suru"}, {"id" : "9118082002", "nama" : "See"}, {"id" : "9118082003", "nama" : "Koba"}, {"id" : "9118082004", "nama" : "Tii"}, {"id" : "9118082005", "nama" : "Yensuku"}, {"id" : "9118082006", "nama" : "Sagapu"}, {"id" : "9118082007", "nama" : "Tomor"}, {"id" : "9118082008", "nama" : "Jifak"}, {"id" : "9118082009", "nama" : "Dumaten"}, {"id" : "9118082010", "nama" : "Hom-hom"}, {"id" : "9118082011", "nama" : "Ajin"}, {"id" : "9118082012", "nama" : "Laluk"}, {"id" : "9118082013", "nama" : "Kebikduk"}, {"id" : "9118082014", "nama" : "Hulam"}, {"id" : "9118082015", "nama" : "Walase"}, {"id" : "9118082016", "nama" : "Berimono"}, {"id" : "9118082017", "nama" : "Asgun"}, {"id" : "9118082018", "nama" : "Korobuk"}, {"id" : "9118082019", "nama" : "Katalina"}, {"id" : "9118082020", "nama" : "Obio"}, {"id" : "9118082021", "nama" : "Salbik"}, {"id" : "9118082022", "nama" : "Linduk"}, {"id" : "9118082023", "nama" : "Besika"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "nama": {"type": "string"}}, "required": ["id", "nama"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "number"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"type" : "Feature", "id" : "viewsistemaviariocompleto.fid-cda359b_16bd380d5a7_4641", "geometry" : {"type" : "MultiLineString", "coordinates" : [[[-48.67363534, -26.89479026], [-48.67239298, -26.89373538]]]}, "geometry_name" : "geom", "properties" : {"id" : 183, "nome" : "R.Francisco Czarneski", "cod" : 173, "ptotalvia" : 7.5, "ppasseio1" : 1, "ppasseio2" : 1, "leidata" : "1089/1971", "hierarquia" : null, "bairro" : "S\u00e3o Jo\u00e3o", "abrevlogr" : null, "pavto" : "Paralelep\u00edpedo", "anopavtoin" : "dez/15", "loteamnome" : "-", "nomeloteamento" : "-"}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "geometry_name": {"type": "string"}, "properties": {"type": "object", "properties": {"id": {"type": "integer"}, "nome": {"type": "string"}, "cod": {"type": "integer"}, "ptotalvia": {"type": "number"}, "ppasseio1": {"type": "integer"}, "ppasseio2": {"type": "integer"}, "leidata": {"type": "string"}, "hierarquia": {"type": "null"}, "bairro": {"type": "string"}, "abrevlogr": {"type": "null"}, "pavto": {"type": "string"}, "anopavtoin": {"type": "string"}, "loteamnome": {"type": "string"}, "nomeloteamento": {"type": "string"}}, "required": ["id", "nome", "cod", "ptotalvia", "ppasseio1", "ppasseio2", "leidata", "hierarquia", "bairro", "abrevlogr", "pavto", "anopavtoin", "loteamnome", "nomeloteamento"]}}, "required": ["type", "id", "geometry", "geometry_name", "properties"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "express-prometheus-middleware": {"type": "string"}, "nodemon": {"type": "string"}, "prom-client": {"type": "string"}, "prometheus-query": {"type": "string"}, "reqclient": {"type": "string"}}, "required": ["dotenv", "express", "express-prometheus-middleware", "nodemon", "prom-client", "prometheus-query", "reqclient"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "prometheus", "version" : "1.0.0", "main" : "server.js", "license" : "MIT", "scripts" : {"start" : "nodemon server.js", "test" : "node getPrometheusData.js"}, "dependencies" : {"dotenv" : "^10.0.0", "express" : "^4.17.1", "express-prometheus-middleware" : "^1.2.0", "nodemon" : "^2.0.14", "prom-client" : "^14.0.1", "prometheus-query" : "^3.2.0", "reqclient" : "^2.4.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "express": {"type": "string"}, "express-prometheus-middleware": {"type": "string"}, "nodemon": {"type": "string"}, "prom-client": {"type": "string"}, "prometheus-query": {"type": "string"}, "reqclient": {"type": "string"}}, "required": ["dotenv", "express", "express-prometheus-middleware", "nodemon", "prom-client", "prometheus-query", "reqclient"]}}, "required": ["name", "version", "main", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"yasgui.bundled.min.js" : "sha512-cgHOkSDMRNBkacdeL+wWW+zXpJG3vbFUfRBEu7RKl2yChxEsNwfYUJSf3kskwtFku5Uo3sDQ510k5L2Z5FpxFg==", "yasgui.min.css" : "sha512-YjNH4rGCQNSA6KoXKQClgS/Dgwq+UgfPBwG2GMSENW3LKkcvcw+wY0OVFaaOIT9MaFWK8krfuzg+LBy8kAmW+g==", "yasgui.min.js" : "sha512-/eO1bQo3JZH8+l/O47JgTlT8g/Z4CyWUrh1uz5S/mQxlifS2izPnM9I4xOgovgeiOp467nI6zCu5jQFaugHj9A=="}
json_instruct
{"type": "object", "properties": {"yasgui.bundled.min.js": {"type": "string"}, "yasgui.min.css": {"type": "string"}, "yasgui.min.js": {"type": "string"}}, "required": ["yasgui.bundled.min.js", "yasgui.min.css", "yasgui.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"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" : 85908919, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "42460627bcd25e4cb00c4396f3838c6a", "wof:id" : 85908919, "wof:repo" : "whosonfirst-data-admin-jp"}, "bbox" : [139.92011474600025, 37.47139699764996, 139.9490944115945, 37.49825256863717], "geometry" : {"coordinates" : [[[139.9442545694638, 37.48203811557313], [139.94517623461758, 37.47855368134728], [139.94515126775923, 37.47857417111831], [139.9448467053253, 37.47757016332648], [139.94392260612324, 37.47584129532002], [139.94267897781208, 37.4743259298384], [139.94116361233034, 37.47308230152713], [139.939434744324, 37.47215820232518], [139.93755881322028, 37.47158914484616], [139.93560791000016, 37.47139699764996], [139.93365700678004, 37.47158914484616], [139.93286132800012, 37.47183051136503], [139.93206564922053, 37.47158914484616], [139.9301147460003, 37.47139699764996], [139.92816384278, 37.47158914484616], [139.92628791167658, 37.47215820232518], [139.92455904367011, 37.47308230152713], [139.92304367818815, 37.4743259298384], [139.92180004987722, 37.47584129532002], [139.920875950675, 37.47757016332648], [139.9203068931962, 37.4794460944299], [139.92011474600025, 37.48139699765021], [139.9203068931962, 37.48334790087024], [139.92037623399506, 37.48357648685017], [139.92030689319608, 37.48380507283001], [139.92011474600025, 37.48575597605013], [139.92030689319608, 37.48770687927016], [139.9203737101035, 37.48792714509486], [139.9203693308507, 37.48793533810043], [139.92036577316935, 37.48794199405434], [139.9273681640001, 37.49088375437297], [139.9273681640001, 37.49229399860006], [139.93286132800012, 37.49229399860006], [139.93835449200014, 37.49229399860006], [139.9383545424427, 37.49229399860015], [139.94181255449064, 37.4966522776252], [139.9443519348876, 37.49825256863717], [139.94683436426823, 37.49656777040131], [139.9490944115945, 37.49423711966126], [139.9442545694638, 37.48203811557313]]], "type" : "Polygon"}}
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": "array", "items": {"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": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examine" : "This looks quite old."}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}}, "required": ["examine"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"capabilities": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "version": {"type": "string"}, "maxInstances": {"type": "integer"}, "seleniumProtocol": {"type": "string"}}, "required": ["browserName", "version", "maxInstances", "seleniumProtocol"]}}, "configuration": {"type": "object", "properties": {"proxy": {"type": "string"}, "maxSession": {"type": "integer"}, "port": {"type": "integer"}, "register": {"type": "boolean"}, "registerCycle": {"type": "integer"}, "hubPort": {"type": "integer"}, "hubHost": {"type": "string"}}, "required": ["proxy", "maxSession", "port", "register", "registerCycle", "hubPort", "hubHost"]}}, "required": ["capabilities", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"capabilities" : [{"browserName" : "opera", "version" : "12", "maxInstances" : 1, "seleniumProtocol" : "WebDriver"}, {"browserName" : "firefox", "version" : "20", "maxInstances" : 3, "seleniumProtocol" : "WebDriver"}, {"browserName" : "firefox", "version" : "21", "maxInstances" : 3, "seleniumProtocol" : "WebDriver"}, {"browserName" : "firefox", "version" : "22", "maxInstances" : 3, "seleniumProtocol" : "WebDriver"}, {"browserName" : "firefox", "version" : "23", "maxInstances" : 3, "seleniumProtocol" : "WebDriver"}, {"browserName" : "chrome", "version" : "38", "maxInstances" : 1, "seleniumProtocol" : "WebDriver"}], "configuration" : {"proxy" : "org.openqa.grid.selenium.proxy.DefaultRemoteProxy", "maxSession" : 2, "port" : 5555, "register" : true, "registerCycle" : 5000, "hubPort" : 4444, "hubHost" : "127.0.0.1"}}
json_instruct
{"type": "object", "properties": {"capabilities": {"type": "array", "items": {"type": "object", "properties": {"browserName": {"type": "string"}, "version": {"type": "string"}, "maxInstances": {"type": "integer"}, "seleniumProtocol": {"type": "string"}}, "required": ["browserName", "version", "maxInstances", "seleniumProtocol"]}}, "configuration": {"type": "object", "properties": {"proxy": {"type": "string"}, "maxSession": {"type": "integer"}, "port": {"type": "integer"}, "register": {"type": "boolean"}, "registerCycle": {"type": "integer"}, "hubPort": {"type": "integer"}, "hubHost": {"type": "string"}}, "required": ["proxy", "maxSession", "port", "register", "registerCycle", "hubPort", "hubHost"]}}, "required": ["capabilities", "configuration"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"app_name": {"type": "string"}, "version": {"type": "string"}, "build_number": {"type": "string"}}, "required": ["app_name", "version", "build_number"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"app_name" : "flutter_ui_challenges", "version" : "1.0.0", "build_number" : "1"}
json_instruct
{"type": "object", "properties": {"app_name": {"type": "string"}, "version": {"type": "string"}, "build_number": {"type": "string"}}, "required": ["app_name", "version", "build_number"], "$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"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "start", "prepublish"]}, "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"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "http4js": {"type": "string"}, "moment-timezone": {"type": "string"}, "pg": {"type": "string"}, "postgrator": {"type": "string"}, "postgres": {"type": "string"}}, "required": ["dotenv", "http4js", "moment-timezone", "pg", "postgrator", "postgres"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/dockerode": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/moment-timezone": {"type": "string"}, "@types/node": {"type": "string"}, "@types/pg": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "testcontainers": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/dockerode", "@types/mocha", "@types/moment-timezone", "@types/node", "@types/pg", "chai", "mocha", "testcontainers", "ts-node", "typescript"]}}, "required": ["name", "version", "main", "types", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "covid-travel-store", "version" : "1.0.5", "main" : "dist/index.js", "types" : "dist/index.d.ts", "scripts" : {"test" : "mocha **/*.test.ts --require ts-node/register", "start" : "ts-node index.ts", "prepublish" : "tsc"}, "repository" : {"type" : "git", "url" : "git+https://github.com/isabelcooper/coronApi.git"}, "author" : "", "license" : "MIT", "bugs" : {"url" : "https://github.com/isabelcooper/coronApi/issues"}, "homepage" : "https://github.com/isabelcooper/coronApi#readme", "dependencies" : {"dotenv" : "^8.2.0", "http4js" : "^5.0.5", "moment-timezone" : "^0.5.28", "pg" : "^8.0.0", "postgrator" : "^3.11.0", "postgres" : "^1.0.2"}, "devDependencies" : {"@types/chai" : "^4.2.11", "@types/dockerode" : "^2.5.28", "@types/mocha" : "^7.0.2", "@types/moment-timezone" : "^0.5.13", "@types/node" : "^13.11.0", "@types/pg" : "^7.14.3", "chai" : "^4.2.0", "mocha" : "^7.1.1", "testcontainers" : "^2.7.0", "ts-node" : "^8.8.2", "typescript" : "^3.8.3"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "start": {"type": "string"}, "prepublish": {"type": "string"}}, "required": ["test", "start", "prepublish"]}, "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"}, "dependencies": {"type": "object", "properties": {"dotenv": {"type": "string"}, "http4js": {"type": "string"}, "moment-timezone": {"type": "string"}, "pg": {"type": "string"}, "postgrator": {"type": "string"}, "postgres": {"type": "string"}}, "required": ["dotenv", "http4js", "moment-timezone", "pg", "postgrator", "postgres"]}, "devDependencies": {"type": "object", "properties": {"@types/chai": {"type": "string"}, "@types/dockerode": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/moment-timezone": {"type": "string"}, "@types/node": {"type": "string"}, "@types/pg": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "testcontainers": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@types/chai", "@types/dockerode", "@types/mocha", "@types/moment-timezone", "@types/node", "@types/pg", "chai", "mocha", "testcontainers", "ts-node", "typescript"]}}, "required": ["name", "version", "main", "types", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"clib_packages": {"type": "array", "items": {"type": "string"}}}, "required": ["clib_packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"clib_packages" : ["clibs/hash", "AjayMT/dict.c", "troydhanson/uthash"]}
json_instruct
{"type": "object", "properties": {"clib_packages": {"type": "array", "items": {"type": "string"}}}, "required": ["clib_packages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["test", "test:watch"]}, "files": {"type": "array", "items": {"type": "string"}}, "localDependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["prop-types", "react", "styled-components"]}, "dependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "immutable": {"type": "string"}, "keymirror": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}, "reselect": {"type": "string"}, "tape-promise": {"type": "string"}}, "required": ["expect", "immutable", "keymirror", "react-redux", "redux", "redux-thunk", "reselect", "tape-promise"]}}, "required": ["name", "version", "license", "main", "scripts", "files", "localDependencies", "peerDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@broad/redux-genes", "version" : "0.0.1", "license" : "MIT", "main" : "src/index.js", "scripts" : {"test" : "../../node_modules/.bin/babel-node --inspect ../../node_modules/.bin/tape './src/genes.spec.js' | ../../node_modules/.bin/tspec", "test:watch" : "../../node_modules/.bin/watch 'npm test' src -d"}, "files" : ["lib"], "localDependencies" : {}, "peerDependencies" : {"prop-types" : "^15.5.10", "react" : "^15.5.4", "styled-components" : "^2.1.2"}, "dependencies" : {"expect" : "^21.2.1", "immutable" : "^4.0.0-rc.9", "keymirror" : "^0.1.1", "react-redux" : "^5.0.6", "redux" : "3.6.0", "redux-thunk" : "^2.2.0", "reselect" : "^3.0.1", "tape-promise" : "^2.0.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "license": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "test:watch": {"type": "string"}}, "required": ["test", "test:watch"]}, "files": {"type": "array", "items": {"type": "string"}}, "localDependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {"prop-types": {"type": "string"}, "react": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["prop-types", "react", "styled-components"]}, "dependencies": {"type": "object", "properties": {"expect": {"type": "string"}, "immutable": {"type": "string"}, "keymirror": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}, "redux-thunk": {"type": "string"}, "reselect": {"type": "string"}, "tape-promise": {"type": "string"}}, "required": ["expect", "immutable", "keymirror", "react-redux", "redux", "redux-thunk", "reselect", "tape-promise"]}}, "required": ["name", "version", "license", "main", "scripts", "files", "localDependencies", "peerDependencies", "dependencies"], "$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"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Name" : "Witch", "Registry ID" : "minecraft:witch", "Class" : "net.minecraft.entity.monster.EntityWitch"}
json_instruct
{"type": "object", "properties": {"Name": {"type": "string"}, "Registry ID": {"type": "string"}, "Class": {"type": "string"}}, "required": ["Name", "Registry ID", "Class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"merged" : "/Users/moham/Downloads/ftc_app-master-2/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/menu_server.xml", "source" : "/Users/moham/.android/build-cache/18113cc8987f10450c56da7dda2181ba65cbafe3/output/res/menu/menu_server.xml"}, {"merged" : "/Users/HomeFolder/Documents/GitHub/5795RelicRecovery/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/main_menu.xml", "source" : "/Users/HomeFolder/.android/build-cache/8ac4adca5bc237219d3e3e921d37b00950d75ecc/output/res/menu/main_menu.xml"}, {"merged" : "/Users/HomeFolder/Documents/GitHub/5795RelicRecovery/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/ftc_robot_controller.xml", "source" : "/Users/HomeFolder/Documents/GitHub/5795RelicRecovery/FtcRobotController/build/intermediates/bundles/debug/res/menu/ftc_robot_controller.xml"}, {"merged" : "/Users/moham/Downloads/ftc_app-master-2/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/ftc_robot_controller.xml", "source" : "/Users/moham/Downloads/ftc_app-master-2/FtcRobotController/build/intermediates/bundles/debug/res/menu/ftc_robot_controller.xml"}, {"merged" : "/Users/HomeFolder/Documents/GitHub/5795RelicRecovery/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/menu_server.xml", "source" : "/Users/HomeFolder/.android/build-cache/d10b9385188b430aa485b5aac7b0726851e66422/output/res/menu/menu_server.xml"}, {"merged" : "/Users/moham/Downloads/ftc_app-master-2/FtcRobotController/build/intermediates/res/merged/androidTest/debug/menu/main_menu.xml", "source" : "/Users/moham/.android/build-cache/5764d83223e197d834a2695601f336b8185492b2/output/res/menu/main_menu.xml"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"merged": {"type": "string"}, "source": {"type": "string"}}, "required": ["merged", "source"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": ["text", "type", "level"]}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"number" : "36.602-2", "title" : "Evaluation boards.", "children" : [{"text" : "(a) When acquiring architect-engineer services, an agency shall provide for one or more permanent or ad hoc architect-engineer evaluation boards (which may include preselection boards when authorized by agency regulations) to be composed of members who, collectively, have experience in architecture, engineering, construction, and Government and related acquisition matters. Members shall be appointed from among highly qualified professional employees of the agency or other agencies, and if authorized by agency procedure, private practitioners of architecture, engineering, or related professions. One Government member of each board shall be designated as the chairperson.", "type" : "paragraph", "level" : null}, {"text" : "(b) No firm shall be eligible for award of an architect-engineer contract during the period in which any of its principals or associates are participating as members of the awarding agency\u2019s evaluation board.", "type" : "paragraph", "level" : null}]}
json_instruct
{"type": "object", "properties": {"number": {"type": "string"}, "title": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"text": {"type": "string"}, "type": {"type": "string"}, "level": {"type": "null"}}, "required": ["text", "type", "level"]}}}, "required": ["number", "title", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"900692562": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692563": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692564": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692565": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692566": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692567": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900692562", "900692563", "900692564", "900692565", "900692566", "900692567"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"900692562" : {"nama" : "TPS 1", "dapil" : [6401, 16405, 2640703]}, "900692563" : {"nama" : "TPS 2", "dapil" : [6401, 16405, 2640703]}, "900692564" : {"nama" : "TPS 3", "dapil" : [6401, 16405, 2640703]}, "900692565" : {"nama" : "TPS 4", "dapil" : [6401, 16405, 2640703]}, "900692566" : {"nama" : "TPS 5", "dapil" : [6401, 16405, 2640703]}, "900692567" : {"nama" : "TPS 6", "dapil" : [6401, 16405, 2640703]}}
json_instruct
{"type": "object", "properties": {"900692562": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692563": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692564": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692565": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692566": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}, "900692567": {"type": "object", "properties": {"nama": {"type": "string"}, "dapil": {"type": "array", "items": {"type": "integer"}}}, "required": ["nama", "dapil"]}}, "required": ["900692562", "900692563", "900692564", "900692565", "900692566", "900692567"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following 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" : "0xc2b0ee60b2a16162a6a326c81a7577c0d621888a8e11f4a79302f265ebc56353", "parentHash" : "0xbdc9da24a1a730940060560ffd2788cf9157ae57ae6fe0b11148c80f4d21dfb0", "number" : 60079, "timestamp" : 1439148780, "nonce" : "0x77351f03d02e2cb8", "difficulty" : 1730569010900, "gasLimit" : {"_hex" : "0x2fefd8"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xbb7B8287f3F0a933474a79eAe42CBCa977791171", "extraData" : "0x476574682f4c5649562f76312e302e312f6c696e75782f676f312e342e32", "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#"}
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"}, "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"}, "dependencies": {"type": "object", "properties": {"@discordjs/builders": {"type": "string"}, "@discordjs/rest": {"type": "string"}, "discord-api-types": {"type": "string"}, "discord.js": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@discordjs/builders", "@discordjs/rest", "discord-api-types", "discord.js", "node-fetch"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "babotjs", "version" : "4.1.33", "description" : "Bot discord du Bastion bas\u00e9 sur Discord.JS", "main" : "index.js", "repository" : {"type" : "git", "url" : "git+https://github.com/bastion-gaming/BaBotJS.git"}, "author" : "Azerxim", "license" : "MIT", "bugs" : {"url" : "https://github.com/bastion-gaming/BaBotJS/issues"}, "homepage" : "https://github.com/bastion-gaming/BaBotJS#readme", "dependencies" : {"@discordjs/builders" : "^0.6.0", "@discordjs/rest" : "^0.1.0-canary.0", "discord-api-types" : "^0.20.2", "discord.js" : "^13.1.0", "node-fetch" : "^2.6.5"}, "devDependencies" : {"eslint" : "^7.32.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "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"}, "dependencies": {"type": "object", "properties": {"@discordjs/builders": {"type": "string"}, "@discordjs/rest": {"type": "string"}, "discord-api-types": {"type": "string"}, "discord.js": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["@discordjs/builders", "@discordjs/rest", "discord-api-types", "discord.js", "node-fetch"]}, "devDependencies": {"type": "object", "properties": {"eslint": {"type": "string"}}, "required": ["eslint"]}}, "required": ["name", "version", "description", "main", "repository", "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": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Polygon", "coordinates" : [[[144.125, 25.416666666666668], [144.125, 25.5], [144.25, 25.5], [144.25, 25.416666666666668], [144.125, 25.416666666666668]]]}, "properties" : {"code" : 384411, "url" : "http://madefor.github.io/0410/api/v1/384411.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/384411.geojson"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"code": {"type": "integer"}, "url": {"type": "string"}, "view": {"type": "string"}}, "required": ["code", "url", "view"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/katex": {"type": "string"}}, "required": ["@types/katex"]}, "dependencies": {"type": "object", "properties": {"@ts-stack/markdown": {"type": "string"}, "highlight.js": {"type": "string"}, "katex": {"type": "string"}}, "required": ["@ts-stack/markdown", "highlight.js", "katex"]}}, "required": ["private", "name", "version", "description", "main", "typings", "scripts", "keywords", "author", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "name" : "shared", "version" : "1.0.0", "description" : "", "main" : "dist/index", "typings" : "dist/index", "scripts" : {"test" : "jest", "build" : "tsc -b -f"}, "keywords" : [], "author" : "", "devDependencies" : {"@types/katex" : "^0.11.0"}, "dependencies" : {"@ts-stack/markdown" : "^1.4.0", "highlight.js" : "^11.0.0", "katex" : "^0.13.11"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "typings": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}, "build": {"type": "string"}}, "required": ["test", "build"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@types/katex": {"type": "string"}}, "required": ["@types/katex"]}, "dependencies": {"type": "object", "properties": {"@ts-stack/markdown": {"type": "string"}, "highlight.js": {"type": "string"}, "katex": {"type": "string"}}, "required": ["@ts-stack/markdown", "highlight.js", "katex"]}}, "required": ["private", "name", "version", "description", "main", "typings", "scripts", "keywords", "author", "devDependencies", "dependencies"], "$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": {"test": {"type": "string"}}, "required": ["test"]}, "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"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-sass", "gulp-concat", "gulp-minify-css", "gulp-rename"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp-util": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["bower", "gulp-util", "shelljs"]}, "cordovaPlugins": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "cordovaPlugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "HI-Mobility", "version" : "1.0.0", "description" : "mobile application for HItraffic Open Source Project", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "https://github.com/hitraffic/mobile.git"}, "author" : "Marifel Barbasa && Kevin Shin", "license" : "ISC", "bugs" : {"url" : "https://github.com/hitraffic/mobile/issues"}, "homepage" : "https://github.com/hitraffic/mobile", "dependencies" : {"gulp" : "^3.5.6", "gulp-sass" : "^0.7.1", "gulp-concat" : "^2.2.0", "gulp-minify-css" : "^0.3.0", "gulp-rename" : "^1.2.0"}, "devDependencies" : {"bower" : "^1.3.3", "gulp-util" : "^2.2.14", "shelljs" : "^0.3.0"}, "cordovaPlugins" : ["com.ionic.keyboard", "org.apache.cordova.console", "org.apache.cordova.device"]}
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"gulp": {"type": "string"}, "gulp-sass": {"type": "string"}, "gulp-concat": {"type": "string"}, "gulp-minify-css": {"type": "string"}, "gulp-rename": {"type": "string"}}, "required": ["gulp", "gulp-sass", "gulp-concat", "gulp-minify-css", "gulp-rename"]}, "devDependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "gulp-util": {"type": "string"}, "shelljs": {"type": "string"}}, "required": ["bower", "gulp-util", "shelljs"]}, "cordovaPlugins": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "repository", "author", "license", "bugs", "homepage", "dependencies", "devDependencies", "cordovaPlugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": "array", "items": {"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" : 101763535, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "db55f15b6c5c5a2bf7686f78b60dd13e", "wof:id" : 101763535, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [-2.22708975035016, 47.7049684680776, -2.20583702851934, 47.72017989051602], "geometry" : {"coordinates" : [[[-2.21017586835865, 47.72017989051602], [-2.20889771397293, 47.71486443531205], [-2.20626291734016, 47.71516057959644], [-2.20583702851934, 47.71338874155214], [-2.21110641906154, 47.71279641329869], [-2.21089340110859, 47.71191050460897], [-2.21221070965544, 47.711762385942], [-2.2119976791812, 47.71087647922315], [-2.21331495895259, 47.71072834768609], [-2.2126758581071, 47.70807063049909], [-2.21399306531237, 47.7079224919957], [-2.21335398318189, 47.70526477483486], [-2.21598824560624, 47.7049684680776], [-2.21641437855294, 47.70674026869312], [-2.21509720699356, 47.70688843588454], [-2.21637569958466, 47.71220383189569], [-2.22032758775185, 47.71175922971895], [-2.2201144165079, 47.71087334169471], [-2.22143167690604, 47.7107251122805], [-2.22164487004665, 47.71161099735144], [-2.22296214546037, 47.71146274916327], [-2.22402836145739, 47.71589214502461], [-2.22534573948235, 47.71574386624371], [-2.2255590327494, 47.71662973951641], [-2.22687642579012, 47.71648144195831], [-2.22708975035016, 47.71736731129425], [-2.22445491357883, 47.7176638964981], [-2.22424163282301, 47.71677802125208], [-2.22160681231617, 47.717074537256], [-2.22139358475488, 47.71618865511982], [-2.22007618607859, 47.71633688643396], [-2.21986298980693, 47.71545100036263], [-2.21591081819491, 47.71589559050989], [-2.21612394875842, 47.71678148544049], [-2.21348908947471, 47.71707780566396], [-2.21412840603784, 47.71973550228779], [-2.21017586835865, 47.72017989051602]]], "type" : "Polygon"}}
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": "array", "items": {"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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"variants" : {"" : {"model" : "netherthings:block/green_glowing_mushroom_block"}}}
json_instruct
{"type": "object", "properties": {"variants": {"type": "object", "properties": {"": {"type": "object", "properties": {"model": {"type": "string"}}, "required": ["model"]}}, "required": [""]}}, "required": ["variants"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"accession_number" : "69.46.79", "actors" : [], "creation_date" : "1896-1906", "credit_line" : "Gift of Mr. Edawrd E. Petri in memory of Frances Helene Petri", "cultures" : [], "dimensions" : "H: 2 in.", "dynasty" : null, "images" : [], "irn" : 20124, "materials" : "Silver Gilt Over Enamel", "on_view" : true, "period" : null, "printers" : [], "publishers" : [], "rights" : null, "title" : "enamel cup"}
json_instruct
{"type": "object", "properties": {"accession_number": {"type": "string"}, "actors": {"type": "array", "items": {}}, "creation_date": {"type": "string"}, "credit_line": {"type": "string"}, "cultures": {"type": "array", "items": {}}, "dimensions": {"type": "string"}, "dynasty": {"type": "null"}, "images": {"type": "array", "items": {}}, "irn": {"type": "integer"}, "materials": {"type": "string"}, "on_view": {"type": "boolean"}, "period": {"type": "null"}, "printers": {"type": "array", "items": {}}, "publishers": {"type": "array", "items": {}}, "rights": {"type": "null"}, "title": {"type": "string"}}, "required": ["accession_number", "actors", "creation_date", "credit_line", "cultures", "dimensions", "dynasty", "images", "irn", "materials", "on_view", "period", "printers", "publishers", "rights", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"vue-meta.cjs.js": {"type": "string"}, "vue-meta.cjs.min.js": {"type": "string"}, "vue-meta.cjs.prod.js": {"type": "string"}, "vue-meta.cjs.prod.min.js": {"type": "string"}, "vue-meta.esm-browser.js": {"type": "string"}, "vue-meta.esm-browser.min.js": {"type": "string"}, "vue-meta.esm-bundler.js": {"type": "string"}, "vue-meta.esm-bundler.min.js": {"type": "string"}, "vue-meta.global.js": {"type": "string"}, "vue-meta.global.min.js": {"type": "string"}}, "required": ["vue-meta.cjs.js", "vue-meta.cjs.min.js", "vue-meta.cjs.prod.js", "vue-meta.cjs.prod.min.js", "vue-meta.esm-browser.js", "vue-meta.esm-browser.min.js", "vue-meta.esm-bundler.js", "vue-meta.esm-bundler.min.js", "vue-meta.global.js", "vue-meta.global.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"vue-meta.cjs.js" : "sha512-Owq8zPWWPqtDOb4R0acQVz4l3mBRjk/+4+sidGKi9/GeMw22oWYrYSP7BF/4TcZzoJeRZs76MjoVPMxr0TWNlw==", "vue-meta.cjs.min.js" : "sha512-YaBGfzXi8jbrocEjQcn/UDaCcMCTCHFngHOAiH70g43jpdL4OzU1MX5JCFuR6O0BFcTXrb9OAl5QdEYa1FBpqQ==", "vue-meta.cjs.prod.js" : "sha512-xugnljZevbcsNAx+5+z5oI2RsLQwjZ3dUL5cN732wct2iE6ouHgymFi2bqrFa/LEtU1mP375n8z7pLyqxLoWeA==", "vue-meta.cjs.prod.min.js" : "sha512-KRt2xfhkPF0woBRoZixhb/thoOG99Nt82DU0jGMgzUX402JR210eD1Qw4TlqDEyA1IH/HnStnZljYQOXrm7LAA==", "vue-meta.esm-browser.js" : "sha512-QKMCxT05FYRo49Cx2lXqaU7bfZio/V4t0zBnQAF7wZf4aAnIF6jAZDDw3oN9SbVGYCMiQECHKqyAB//YTb9fXg==", "vue-meta.esm-browser.min.js" : "sha512-Xe54ibAdQ3mvZufkHjykebhyPBjKtqyG/Vn6ykbSiBQYWd7bi5HGRLxOwtBREH2o5JCp+gCt7JjlLfQ5OLDj7g==", "vue-meta.esm-bundler.js" : "sha512-kmRLjEZspECJOaQd6VmxCIO1Rw1QuEtcHZjU+5jde8Y1S27Zv3ukOj3bpBZxZSdw3qAAo3P5YdNiIfIl6taHDQ==", "vue-meta.esm-bundler.min.js" : "sha512-5UrOJmeTa5SNZ+Vqz7oS4HylmmtgLxHQ/ja2cLsm3zTj2atVhPRZCyePc3qryNTSfOoDGVKPXldyQPXbNBCoSg==", "vue-meta.global.js" : "sha512-3ddTm2B8I4rhviRCnUYIGq5yZLDeYQT21AWN+H/8bcLdhtbqFZgncQwXYixiHGZsiFFQY/dHk8G2RDU5WNMlaw==", "vue-meta.global.min.js" : "sha512-SYT9NLfktI7sLCbbC3yUX3sFR2doL0gzpICGstjp6XTo2q4x0X+Z03DSCL7RxEciiZ0bG2WFQqZfXYUB3rpdeA=="}
json_instruct
{"type": "object", "properties": {"vue-meta.cjs.js": {"type": "string"}, "vue-meta.cjs.min.js": {"type": "string"}, "vue-meta.cjs.prod.js": {"type": "string"}, "vue-meta.cjs.prod.min.js": {"type": "string"}, "vue-meta.esm-browser.js": {"type": "string"}, "vue-meta.esm-browser.min.js": {"type": "string"}, "vue-meta.esm-bundler.js": {"type": "string"}, "vue-meta.esm-bundler.min.js": {"type": "string"}, "vue-meta.global.js": {"type": "string"}, "vue-meta.global.min.js": {"type": "string"}}, "required": ["vue-meta.cjs.js", "vue-meta.cjs.min.js", "vue-meta.cjs.prod.js", "vue-meta.cjs.prod.min.js", "vue-meta.esm-browser.js", "vue-meta.esm-browser.min.js", "vue-meta.esm-bundler.js", "vue-meta.esm-bundler.min.js", "vue-meta.global.js", "vue-meta.global.min.js"], "$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": {"test": {"type": "string"}}, "required": ["test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "yamljs": {"type": "string"}}, "required": ["lodash", "yamljs"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "maven-syntax-file-generator", "version" : "1.0.0", "description" : "Automatically generate syntax file for Maven (pom.xml) based on the YAML input file that contains syntax mapping rules", "main" : "generate-syntax-file.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["vim", "maven", "pom.xml", "syntax", "file", "generator"], "author" : "Nguyen Nguyen", "license" : "MIT", "dependencies" : {"lodash" : "^3.10.1", "yamljs" : "^0.2.4"}}
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"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"lodash": {"type": "string"}, "yamljs": {"type": "string"}}, "required": ["lodash", "yamljs"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "betterend:block/violecite_wall_inventory"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"id": {"type": "string"}, "\u666e\u901a\u540d\u7a31": {"type": "string"}, "\u5ee0\u724c\u540d\u7a31": {"type": "string"}, "\u901a\u904e\u65e5\u671f": {"type": "string"}, "usages": {"type": "array", "items": {"type": "object", "properties": {"\u5291\u578b": {"type": "string"}, "\u542b\u91cf": {"type": "string"}, "\u6df7\u5408": {"type": "string"}, "\u4f5c\u7269\u540d\u7a31": {"type": "string"}, "\u75c5\u87f2\u540d\u7a31": {"type": "string"}, "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf": {"type": "string"}, "\u7a00\u91cb\u500d\u6578": {"type": "string"}, "\u4f7f\u7528\u6642\u671f": {"type": "string"}, "\u65bd\u85e5\u9593\u9694": {"type": "string"}, "\u65bd\u7528\u6b21\u6578": {"type": "string"}, "\u5b89\u5168\u63a1\u6536\u671f": {"type": "string"}, "\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31": {"type": "string"}, "\u65bd\u85e5\u65b9\u6cd5": {"type": "string"}, "\u6ce8\u610f\u4e8b\u9805": {"type": "string"}, "\u5099\u8a3b": {"type": "string"}}, "required": ["\u5291\u578b", "\u542b\u91cf", "\u6df7\u5408", "\u4f5c\u7269\u540d\u7a31", "\u75c5\u87f2\u540d\u7a31", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf", "\u7a00\u91cb\u500d\u6578", "\u4f7f\u7528\u6642\u671f", "\u65bd\u85e5\u9593\u9694", "\u65bd\u7528\u6b21\u6578", "\u5b89\u5168\u63a1\u6536\u671f", "\u6838\u51c6\u65e5\u671f", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31", "\u65bd\u85e5\u65b9\u6cd5", "\u6ce8\u610f\u4e8b\u9805", "\u5099\u8a3b"]}}}, "required": ["id", "\u666e\u901a\u540d\u7a31", "\u5ee0\u724c\u540d\u7a31", "\u901a\u904e\u65e5\u671f", "usages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "F147", "\u666e\u901a\u540d\u7a31" : "\u9285\u5feb\u5f97\u5be7", "\u5ee0\u724c\u540d\u7a31" : "KINSET", "\u901a\u904e\u65e5\u671f" : "074-06-01", "usages" : [{"\u5291\u578b" : "WP", "\u542b\u91cf" : "40.000", "\u6df7\u5408" : "A", "\u4f5c\u7269\u540d\u7a31" : "\u74dc\u83dc\u985e", "\u75c5\u87f2\u540d\u7a31" : "\u7d30\u83cc\u6027\u6591\u9ede\u75c5", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf" : "2.0-3.0\u516c\u65a4", "\u7a00\u91cb\u500d\u6578" : "500", "\u4f7f\u7528\u6642\u671f" : "\u767c\u75c5\u521d\u671f", "\u65bd\u85e5\u9593\u9694" : "7", "\u65bd\u7528\u6b21\u6578" : "3-5", "\u5b89\u5168\u63a1\u6536\u671f" : "3", "\u6838\u51c6\u65e5\u671f" : "96-07-06", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31" : "", "\u65bd\u85e5\u65b9\u6cd5" : "\u85e5\u6db2\u61c9\u5674\u4f48\u65bc\u8449\u7247\u4e0a\u4e0b\u5169\u9762", "\u6ce8\u610f\u4e8b\u9805" : "\u672c\u85e5\u5291\u8a66\u9a57\u6642\u52a0\u5c55\u8457\u5291\u300c\u5168\u900f\u529b\u300d1000\u500d\u3002", "\u5099\u8a3b" : "\u516c\u544a\u6a19\u793a\u5916\u4f7f\u7528"}, {"\u5291\u578b" : "WP", "\u542b\u91cf" : "40.000", "\u6df7\u5408" : "A", "\u4f5c\u7269\u540d\u7a31" : "\u74dc\u985e", "\u75c5\u87f2\u540d\u7a31" : "\u7d30\u83cc\u6027\u6591\u9ede\u75c5", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf" : "2-3\u516c\u65a4", "\u7a00\u91cb\u500d\u6578" : "500", "\u4f7f\u7528\u6642\u671f" : "\u767c\u75c5\u521d\u671f", "\u65bd\u85e5\u9593\u9694" : "7", "\u65bd\u7528\u6b21\u6578" : "3-5", "\u5b89\u5168\u63a1\u6536\u671f" : "3", "\u6838\u51c6\u65e5\u671f" : "99-05-25", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31" : "", "\u65bd\u85e5\u65b9\u6cd5" : "\u85e5\u6db2\u61c9\u5674\u4f48\u65bc\u8449\u7247\u4e0a\u4e0b\u5169\u9762", "\u6ce8\u610f\u4e8b\u9805" : "-", "\u5099\u8a3b" : "\u5ef6\u4f38\u4f7f\u7528"}, {"\u5291\u578b" : "WP", "\u542b\u91cf" : "40.000", "\u6df7\u5408" : "A", "\u4f5c\u7269\u540d\u7a31" : "\u80e1\u74dc", "\u75c5\u87f2\u540d\u7a31" : "\u7d30\u83cc\u6027\u6591\u9ede\u75c5", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf" : "2-3\u516c\u65a4", "\u7a00\u91cb\u500d\u6578" : "500", "\u4f7f\u7528\u6642\u671f" : "\u767c\u75c5\u521d\u671f", "\u65bd\u85e5\u9593\u9694" : "7", "\u65bd\u7528\u6b21\u6578" : "3-5", "\u5b89\u5168\u63a1\u6536\u671f" : "3", "\u6838\u51c6\u65e5\u671f" : "", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31" : "", "\u65bd\u85e5\u65b9\u6cd5" : "\u85e5\u6db2\u61c9\u5674\u4f48\u65bc\u8449\u7247\u4e0a\u4e0b\u5169\u9762", "\u6ce8\u610f\u4e8b\u9805" : "\u672c\u85e5\u5291\u8a66\u9a57\u6642\u52a0\u5c55\u8457\u5291\u300c\u5168\u900f\u529b\u300d1000\u500d\u3002", "\u5099\u8a3b" : ""}, {"\u5291\u578b" : "WP", "\u542b\u91cf" : "40.000", "\u6df7\u5408" : "A", "\u4f5c\u7269\u540d\u7a31" : "\u694a\u6843", "\u75c5\u87f2\u540d\u7a31" : "\u7d30\u83cc\u6027\u6591\u9ede\u75c5", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf" : "", "\u7a00\u91cb\u500d\u6578" : "500", "\u4f7f\u7528\u6642\u671f" : "\u767c\u75c5\u521d\u671f", "\u65bd\u85e5\u9593\u9694" : "7", "\u65bd\u7528\u6b21\u6578" : "4", "\u5b89\u5168\u63a1\u6536\u671f" : "6", "\u6838\u51c6\u65e5\u671f" : "87-11-23", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31" : "\u516c\u52d9\u9810\u7b97", "\u65bd\u85e5\u65b9\u6cd5" : "", "\u6ce8\u610f\u4e8b\u9805" : "1.\u5b9a\u671f\u6e05\u9664\u75c5\u679d\u8449\u53ca\u679c\u5be6\u30022.\u96e8\u5b63\u4f86\u81e8\u524d\uff0c\u5b9c\u9032\u884c\u9810\u9632\u6027\u65bd\u85e5\u3002", "\u5099\u8a3b" : ""}, {"\u5291\u578b" : "WP", "\u542b\u91cf" : "40.000", "\u6df7\u5408" : "A", "\u4f5c\u7269\u540d\u7a31" : "\u846b\u8606\u79d1\u74dc\u83dc\u985e", "\u75c5\u87f2\u540d\u7a31" : "\u7d30\u83cc\u6027\u6591\u9ede\u75c5", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf" : "2-3\u516c\u65a4", "\u7a00\u91cb\u500d\u6578" : "500", "\u4f7f\u7528\u6642\u671f" : "\u767c\u75c5\u521d\u671f", "\u65bd\u85e5\u9593\u9694" : "7", "\u65bd\u7528\u6b21\u6578" : "3-5", "\u5b89\u5168\u63a1\u6536\u671f" : "3", "\u6838\u51c6\u65e5\u671f" : "98-08-24", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31" : "", "\u65bd\u85e5\u65b9\u6cd5" : "\u85e5\u6db2\u61c9\u5674\u4f48\u65bc\u8449\u7247\u4e0a\u4e0b\u5169\u9762\u3002", "\u6ce8\u610f\u4e8b\u9805" : "\u672c\u85e5\u5291\u8a66\u9a57\u6642\u52a0\u5c55\u8457\u5291\u300c\u5168\u900f\u529b\u300d1,000\u500d\u3002", "\u5099\u8a3b" : "\u5ef6\u4f38\u4f7f\u7528"}]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "\u666e\u901a\u540d\u7a31": {"type": "string"}, "\u5ee0\u724c\u540d\u7a31": {"type": "string"}, "\u901a\u904e\u65e5\u671f": {"type": "string"}, "usages": {"type": "array", "items": {"type": "object", "properties": {"\u5291\u578b": {"type": "string"}, "\u542b\u91cf": {"type": "string"}, "\u6df7\u5408": {"type": "string"}, "\u4f5c\u7269\u540d\u7a31": {"type": "string"}, "\u75c5\u87f2\u540d\u7a31": {"type": "string"}, "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf": {"type": "string"}, "\u7a00\u91cb\u500d\u6578": {"type": "string"}, "\u4f7f\u7528\u6642\u671f": {"type": "string"}, "\u65bd\u85e5\u9593\u9694": {"type": "string"}, "\u65bd\u7528\u6b21\u6578": {"type": "string"}, "\u5b89\u5168\u63a1\u6536\u671f": {"type": "string"}, "\u6838\u51c6\u65e5\u671f": {"type": "string"}, "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31": {"type": "string"}, "\u65bd\u85e5\u65b9\u6cd5": {"type": "string"}, "\u6ce8\u610f\u4e8b\u9805": {"type": "string"}, "\u5099\u8a3b": {"type": "string"}}, "required": ["\u5291\u578b", "\u542b\u91cf", "\u6df7\u5408", "\u4f5c\u7269\u540d\u7a31", "\u75c5\u87f2\u540d\u7a31", "\u6bcf\u516c\u9803\u6bcf\u6b21\u7528\u91cf", "\u7a00\u91cb\u500d\u6578", "\u4f7f\u7528\u6642\u671f", "\u65bd\u85e5\u9593\u9694", "\u65bd\u7528\u6b21\u6578", "\u5b89\u5168\u63a1\u6536\u671f", "\u6838\u51c6\u65e5\u671f", "\u539f\u59cb\u767b\u8a18\u5ee0\u5546\u540d\u7a31", "\u65bd\u85e5\u65b9\u6cd5", "\u6ce8\u610f\u4e8b\u9805", "\u5099\u8a3b"]}}}, "required": ["id", "\u666e\u901a\u540d\u7a31", "\u5ee0\u724c\u540d\u7a31", "\u901a\u904e\u65e5\u671f", "usages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"filepath": {"type": "string"}, "line": {"type": "integer"}, "npe_method": {"type": "string"}, "deref_field": {"type": "string"}, "npe_class": {"type": "string"}}, "required": ["filepath", "line", "npe_method", "deref_field", "npe_class"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"filepath" : "src/main/java/org/apache/sling/servlets/post/impl/helper/MediaRangeList.java", "line" : 328, "npe_method" : "toString", "deref_field" : "parameters", "npe_class" : "MediaRange"}
json_instruct
{"type": "object", "properties": {"filepath": {"type": "string"}, "line": {"type": "integer"}, "npe_method": {"type": "string"}, "deref_field": {"type": "string"}, "npe_class": {"type": "string"}}, "required": ["filepath", "line", "npe_method", "deref_field", "npe_class"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "104-2019", "title" : "OSI Industries, LLC Recalls Ready-To-Eat Beef Patty Products Due to Possible Foreign Matter Contamination", "url" : "https://www.fsis.usda.gov/recalls-alerts/osi-industries-llc-recalls-ready-eat-beef-patty-products-due-possible-foreign-matter", "reasons" : ["Product Contamination"], "status" : "Closed", "risk_level" : "High", "start_date" : "2019-10-28", "end_date" : "2019-12-13", "summary" : "WASHINGTON, Oct. 28, 2019 OSI Industries, LLC, a Fort Atkinson, Wisc. establishment, is recalling approximately 4,218 pounds of ready-to-eat beef patty products that may be contaminated with extraneous materials, specifically metal, the U.S. Department of Agricultures Food Safety and Inspection Service (FSIS) announced today. The...", "establishment" : {"id" : "M1300+P5615", "url" : "http://www.fsis.usda.gov/inspection/fsis-inspected-establishments/osi-industries-llc-5", "slug" : "osi-industries-llc-5", "name" : "OSI Industries, LLC", "address" : "1200 Industrial Drive \n Fort Atkinson, WI 53538", "telephone" : "(920) 563-6391", "grant_date" : "2015-05-12", "activities" : ["Meat Processing", "Poultry Processing"]}, "impacted_products" : [], "quantity_recovered" : 1480, "quantity_unit" : "pounds", "states" : ["Iowa", "Wisconsin"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "reasons": {"type": "array", "items": {"type": "string"}}, "status": {"type": "string"}, "risk_level": {"type": "string"}, "start_date": {"type": "string"}, "end_date": {"type": "string"}, "summary": {"type": "string"}, "establishment": {"type": "object", "properties": {"id": {"type": "string"}, "url": {"type": "string"}, "slug": {"type": "string"}, "name": {"type": "string"}, "address": {"type": "string"}, "telephone": {"type": "string"}, "grant_date": {"type": "string"}, "activities": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "url", "slug", "name", "address", "telephone", "grant_date", "activities"]}, "impacted_products": {"type": "array", "items": {}}, "quantity_recovered": {"type": "integer"}, "quantity_unit": {"type": "string"}, "states": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "title", "url", "reasons", "status", "risk_level", "start_date", "end_date", "summary", "establishment", "impacted_products", "quantity_recovered", "quantity_unit", "states"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00230": {"type": "string"}}, "required": ["rn00230"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"comment" : "", "definition" : "5-Aminoimidazole + CO2 <=> 5-Amino-4-imidazole carboxylate", "orthologs" : {}, "name" : "", "product_stoichiometries" : ["1"], "enzymes" : ["4.1.1.-"], "equation" : "C05239 + C00011 <=> C05516", "glycans" : false, "substrate_stoichiometries" : ["1", "1"], "rpairs" : {}, "entry_id" : "R04732", "pathways" : {"rn00230" : "Purine metabolism"}, "products" : ["C05516"], "substrates" : ["C05239", "C00011"]}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"comment": {"type": "string"}, "definition": {"type": "string"}, "orthologs": {"type": "object", "properties": {}, "required": []}, "name": {"type": "string"}, "product_stoichiometries": {"type": "array", "items": {"type": "string"}}, "enzymes": {"type": "array", "items": {"type": "string"}}, "equation": {"type": "string"}, "glycans": {"type": "boolean"}, "substrate_stoichiometries": {"type": "array", "items": {"type": "string"}}, "rpairs": {"type": "object", "properties": {}, "required": []}, "entry_id": {"type": "string"}, "pathways": {"type": "object", "properties": {"rn00230": {"type": "string"}}, "required": ["rn00230"]}, "products": {"type": "array", "items": {"type": "string"}}, "substrates": {"type": "array", "items": {"type": "string"}}}, "required": ["comment", "definition", "orthologs", "name", "product_stoichiometries", "enzymes", "equation", "glycans", "substrate_stoichiometries", "rpairs", "entry_id", "pathways", "products", "substrates"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : 9402180039, "parent" : 9402180, "name" : "TIKAWO", "latitude" : null, "longitude" : null, "postal" : [99531], "children" : []}
json_instruct
{"type": "object", "properties": {"code": {"type": "integer"}, "parent": {"type": "integer"}, "name": {"type": "string"}, "latitude": {"type": "null"}, "longitude": {"type": "null"}, "postal": {"type": "array", "items": {"type": "integer"}}, "children": {"type": "array", "items": {}}}, "required": ["code", "parent", "name", "latitude", "longitude", "postal", "children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"e_id" : "2687", "title" : "\u674e\u514b\u519c\u4e0e\u56fd\u6c11\u515a67\u519b\u8fdb\u884c\u6297\u65e5\u5408\u4f5c", "content" : "\n\u00a0\u00a0\u00a0\u00a0\u572885\u5e74\u524d\u7684\u4eca\u5929\uff0c1936\u5e742\u670825\u65e5(\u519c\u53861936\u5e742\u67083\u65e5)\uff0c\u674e\u514b\u519c\u4e0e\u56fd\u6c11\u515a67\u519b\u8fdb\u884c\u6297\u65e5\u5408\u4f5c\u30021936\u5e742\u670825\u65e5\uff0c\u674e\u514b\u519c\u7531\u74e6\u7a91\u5821\u62b5\u6d1b\u5ddd\uff0c\u4f1a\u89c1\u738b\u4ee5\u54f2\uff0c\u5c31\u7ea2\u519b\u4e0e\u56fd\u6c11\u515a67\u519b\u6297\u65e5\u5408\u4f5c\u8fbe\u6210\u53e3\u5934\u534f\u8bae\uff1a\u653f\u6cbb\u4e0a\uff0c\u540c\u610f\u300a\u516b\u4e00\u5ba3\u8a00\u300b\uff1b\u519b\u4e8b\u4e0a\uff0c\u4e92\u4e0d\u4fb5\u72af\uff1b\u7ecf\u6d4e\u4e0a\uff0c\u5f00\u653e\u51e0\u4e2a\u53e3\u5b50\u8ba9\u7ea2\u519b\u8fd0\u8f93\u7269\u8d44\u3002", "picNo" : "0", "picUrl" : []}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"e_id": {"type": "string"}, "title": {"type": "string"}, "content": {"type": "string"}, "picNo": {"type": "string"}, "picUrl": {"type": "array", "items": {}}}, "required": ["e_id", "title", "content", "picNo", "picUrl"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this 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" : "Santa Rosa I, Marilao, Bulacan, Central Luzon (Region III), PH", "locale" : "ph.central-luzon-region-iii.bulacan.marilao.santa-rosa-i", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "6", "region_reference" : "3", "region_name" : "Central Luzon (Region III)", "province_id" : "17", "province_reference" : "17", "province_name" : "Bulacan", "city_id" : "838", "city_reference" : "291", "city_name" : "Marilao", "barangay_id" : "24250", "barangay_reference" : "6598", "barangay_name" : "Santa Rosa I"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.993782, 14.78904], [120.995132, 14.78953], [120.996262, 14.78964], [120.9981, 14.78927], [120.999474, 14.78875], [121.00087, 14.78809], [121.000778, 14.78014], [121.000458, 14.77036], [120.999001, 14.77117], [120.998009, 14.77178], [120.996178, 14.77255], [120.994759, 14.7729], [120.993309, 14.77263], [120.991531, 14.77189], [120.990494, 14.77415], [120.989639, 14.77577], [120.989029, 14.77708], [120.987991, 14.77884], [120.987717, 14.78022], [120.98819, 14.78113], [120.989143, 14.78264], [120.990181, 14.7844], [120.991287, 14.78593], [120.992447, 14.78694], [120.993782, 14.78904]]]]}}
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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "prepare": {"type": "string"}, "prettier:check": {"type": "string"}, "prettier:write": {"type": "string"}}, "required": ["serve", "prepare", "prettier:check", "prettier:write"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}, "devDependencies": {"type": "object", "properties": {"chance": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["chance", "prettier"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "webgraph-server", "version" : "1.0.0", "description" : "A super minimal dev server to be used with the WebGraph repository.", "scripts" : {"serve" : "node src/index.js", "prepare" : "node src/generate.js", "prettier:check" : "prettier --check src", "prettier:write" : "prettier --write src"}, "author" : "Robin Erol Stuedle", "license" : "MIT", "dependencies" : {"express" : "^4.17.1"}, "devDependencies" : {"chance" : "^1.1.7", "prettier" : "^2.2.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "prepare": {"type": "string"}, "prettier:check": {"type": "string"}, "prettier:write": {"type": "string"}}, "required": ["serve", "prepare", "prettier:check", "prettier:write"]}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"express": {"type": "string"}}, "required": ["express"]}, "devDependencies": {"type": "object", "properties": {"chance": {"type": "string"}, "prettier": {"type": "string"}}, "required": ["chance", "prettier"]}}, "required": ["name", "version", "description", "scripts", "author", "license", "dependencies", "devDependencies"], "$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"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"htmlhint": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}}, "required": ["htmlhint", "prettier", "stylelint"]}, "devDependencies": {"type": "object", "properties": {"htmlhint": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-prettier": {"type": "string"}, "stylelint-config-standard": {"type": "string"}}, "required": ["htmlhint", "prettier", "stylelint", "stylelint-config-prettier", "stylelint-config-standard"]}}, "required": ["name", "description", "private", "repository", "license", "bugs", "homepage", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "user-interface-i", "description" : "A sample web site for a fictitious company named Sweet Eats Bakery.", "private" : true, "repository" : {"type" : "git", "url" : "git+https://github.com/joepound/User-Interface-I.git"}, "license" : "MIT", "bugs" : {"url" : "https://github.com/joepound/User-Interface-I/issues"}, "homepage" : "https://joepound-ls-ui1-sweet-eats-bakery.netlify.com", "scripts" : {"htmlhint" : "htmlhint", "prettier" : "prettier --write \"**/*.json\" \"**/*.css\"", "stylelint" : "stylelint \"**/*.css\""}, "devDependencies" : {"htmlhint" : "^0.11.0", "prettier" : "^1.19.1", "stylelint" : "^13.0.0", "stylelint-config-prettier" : "^8.0.0", "stylelint-config-standard" : "^20.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "private": {"type": "boolean"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "scripts": {"type": "object", "properties": {"htmlhint": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}}, "required": ["htmlhint", "prettier", "stylelint"]}, "devDependencies": {"type": "object", "properties": {"htmlhint": {"type": "string"}, "prettier": {"type": "string"}, "stylelint": {"type": "string"}, "stylelint-config-prettier": {"type": "string"}, "stylelint-config-standard": {"type": "string"}}, "required": ["htmlhint", "prettier", "stylelint", "stylelint-config-prettier", "stylelint-config-standard"]}}, "required": ["name", "description", "private", "repository", "license", "bugs", "homepage", "scripts", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"alfredsnippet": {"type": "object", "properties": {"snippet": {"type": "string"}, "dontautoexpand": {"type": "boolean"}, "uid": {"type": "string"}, "name": {"type": "string"}, "keyword": {"type": "string"}}, "required": ["snippet", "dontautoexpand", "uid", "name", "keyword"]}}, "required": ["alfredsnippet"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"alfredsnippet" : {"snippet" : "\uf8ff", "dontautoexpand" : true, "uid" : "53694244-08D2-4AEF-883D-8FA2F6FDB319", "name" : "apple logo", "keyword" : "apple"}}
json_instruct
{"type": "object", "properties": {"alfredsnippet": {"type": "object", "properties": {"snippet": {"type": "string"}, "dontautoexpand": {"type": "boolean"}, "uid": {"type": "string"}, "name": {"type": "string"}, "keyword": {"type": "string"}}, "required": ["snippet", "dontautoexpand", "uid", "name", "keyword"]}}, "required": ["alfredsnippet"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "200", "messages" : "Successfully received data", "value" : [{"id" : "3323202001", "id_kecamatan" : "332320", "name" : "Gemawang"}, {"id" : "3323202002", "id_kecamatan" : "332320", "name" : "Muncar"}, {"id" : "3323202003", "id_kecamatan" : "332320", "name" : "Kemiriombo"}, {"id" : "3323202004", "id_kecamatan" : "332320", "name" : "Ngadisepi"}, {"id" : "3323202005", "id_kecamatan" : "332320", "name" : "Krempong"}, {"id" : "3323202006", "id_kecamatan" : "332320", "name" : "Sucen"}, {"id" : "3323202007", "id_kecamatan" : "332320", "name" : "Karangseneng"}, {"id" : "3323202008", "id_kecamatan" : "332320", "name" : "Banaran"}, {"id" : "3323202009", "id_kecamatan" : "332320", "name" : "Kalibanger"}, {"id" : "3323202010", "id_kecamatan" : "332320", "name" : "Jambon"}]}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "messages": {"type": "string"}, "value": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "id_kecamatan": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "id_kecamatan", "name"]}}}, "required": ["code", "messages", "value"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"id": {"type": "integer"}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"src:alt_label": {"type": "string"}, "src:geom": {"type": "string"}, "wof:geomhash": {"type": "string"}, "wof:id": {"type": "integer"}, "wof:repo": {"type": "string"}}, "required": ["src:alt_label", "src:geom", "wof:geomhash", "wof:id", "wof:repo"]}, "bbox": {"type": "array", "items": {"type": "number"}}, "geometry": {"type": "object", "properties": {"coordinates": {"type": "array", "items": {"type": "array", "items": {"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" : 101902805, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes", "src:geom" : "quattroshapes", "wof:geomhash" : "22125efd9ec8ebb249592526d8670b58", "wof:id" : 101902805, "wof:repo" : "whosonfirst-data-admin-fr"}, "bbox" : [2.82413429993551, 49.44617535152145, 2.83335200749775, 49.45304935299424], "geometry" : {"coordinates" : [[[2.82851889533356, 49.44643825378887], [2.82439879663366, 49.44617535152145], [2.82413429993551, 49.44796412720302], [2.82688112748514, 49.44813941951327], [2.8264844860646, 49.45082259040532], [2.8278579813217, 49.45091021704036], [2.82772578021263, 49.45180460819097], [2.83047283408394, 49.45197981500451], [2.83034067668547, 49.45287420936091], [2.83308779842838, 49.45304935299424], [2.83335200749775, 49.45126055637371], [2.83197849418309, 49.45117299662155], [2.83250693876079, 49.44759540479288], [2.82838672473412, 49.44733264743905], [2.82851889533356, 49.44643825378887]]], "type" : "Polygon"}}
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": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "type": {"type": "string"}}, "required": ["coordinates", "type"]}}, "required": ["id", "type", "properties", "bbox", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1202080013", "district_id" : "1202080", "name" : "SINONOAN"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "district_id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "district_id", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1117070008", "district_id" : "1117070", "name" : "WEH TENANG UKEN"}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"data": {"type": "object", "properties": {"index": {"type": "integer"}, "path": {"type": "string"}, "subchains": {"type": "object", "properties": {"226-96-2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "96-2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}}, "required": ["226-96-2464-2465-536-2466", "2464-2465-536-2466", "2465-536-2466", "536-2466", "96-2464-2465-536-2466"]}, "titles": {"type": "object", "properties": {"ar": {"type": "string"}}, "required": ["ar"]}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["index", "path", "subchains", "titles", "verse_paths"]}, "index": {"type": "integer"}, "kind": {"type": "string"}}, "required": ["data", "index", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"index" : 2466, "path" : "/people/narrators/2466", "subchains" : {"226-96-2464-2465-536-2466" : {"narrator_ids" : [226, 96, 2464, 2465, 536, 2466], "verse_paths" : ["/books/al-kafi:2:2:60:20"]}, "2464-2465-536-2466" : {"narrator_ids" : [2464, 2465, 536, 2466], "verse_paths" : ["/books/al-kafi:2:2:60:20"]}, "2465-536-2466" : {"narrator_ids" : [2465, 536, 2466], "verse_paths" : ["/books/al-kafi:2:2:60:20"]}, "536-2466" : {"narrator_ids" : [536, 2466], "verse_paths" : ["/books/al-kafi:2:2:60:20"]}, "96-2464-2465-536-2466" : {"narrator_ids" : [96, 2464, 2465, 536, 2466], "verse_paths" : ["/books/al-kafi:2:2:60:20"]}}, "titles" : {"ar" : "\u0623\u064e\u0628\u0650\u064a \u062c\u064e\u0639\u0652\u0641\u064e\u0631\u064d \u0631\u064e\u062c\u064f\u0644\u064c \u0645\u0650\u0646\u0652 \u0623\u064e\u0647\u0652\u0644\u0650 \u0627\u0644\u0652\u0643\u064f\u0648\u0641\u064e\u0629\u0650 \u0643\u064e\u0627\u0646\u064e \u064a\u064f\u0639\u0652\u0631\u064e\u0641\u064f \u0628\u0650\u0643\u064f\u0646\u0652\u064a\u064e\u062a\u0650\u0647\u0650"}, "verse_paths" : ["/books/al-kafi:2:2:60:20"]}, "index" : 2466, "kind" : "person_content"}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"index": {"type": "integer"}, "path": {"type": "string"}, "subchains": {"type": "object", "properties": {"226-96-2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}, "96-2464-2465-536-2466": {"type": "object", "properties": {"narrator_ids": {"type": "array", "items": {"type": "integer"}}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["narrator_ids", "verse_paths"]}}, "required": ["226-96-2464-2465-536-2466", "2464-2465-536-2466", "2465-536-2466", "536-2466", "96-2464-2465-536-2466"]}, "titles": {"type": "object", "properties": {"ar": {"type": "string"}}, "required": ["ar"]}, "verse_paths": {"type": "array", "items": {"type": "string"}}}, "required": ["index", "path", "subchains", "titles", "verse_paths"]}, "index": {"type": "integer"}, "kind": {"type": "string"}}, "required": ["data", "index", "kind"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"draw_ost_template": {"type": "boolean"}, "smart_fill": {"type": "boolean"}, "train": {"type": "boolean"}, "json_dir": {"type": "string"}, "img_dir": {"type": "string"}, "last_session": {"type": "null"}}, "required": ["draw_ost_template", "smart_fill", "train", "json_dir", "img_dir", "last_session"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"draw_ost_template" : true, "smart_fill" : true, "train" : true, "json_dir" : "/", "img_dir" : "/", "last_session" : null}
json_instruct
{"type": "object", "properties": {"draw_ost_template": {"type": "boolean"}, "smart_fill": {"type": "boolean"}, "train": {"type": "boolean"}, "json_dir": {"type": "string"}, "img_dir": {"type": "string"}, "last_session": {"type": "null"}}, "required": ["draw_ost_template", "smart_fill", "train", "json_dir", "img_dir", "last_session"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"Svalbard and Jan Mayen": {"type": "array", "items": {}}}, "required": ["Svalbard and Jan Mayen"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"Svalbard and Jan Mayen" : []}
json_instruct
{"type": "object", "properties": {"Svalbard and Jan Mayen": {"type": "array", "items": {}}}, "required": ["Svalbard and Jan Mayen"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1988, 5], [1990, 5], [1991, 9], [1994, 5], [1997, 7], [1998, 5]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$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"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:dev": {"type": "string"}, "build:prod": {"type": "string"}, "test": {"type": "string"}, "test-coverage": {"type": "string"}, "doc": {"type": "string"}, "publish-npm-public": {"type": "string"}}, "required": ["build", "build:dev", "build:prod", "test", "test-coverage", "doc", "publish-npm-public"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}, "ts-lib": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "eslint-webpack-plugin": {"type": "string"}, "ts-loader": {"type": "string"}, "jest": {"type": "string"}, "jest-junit": {"type": "string"}, "ts-jest": {"type": "string"}, "@types/jest": {"type": "string"}, "typedoc": {"type": "string"}}, "required": ["@types/node", "eslint", "ts-lib", "typescript", "webpack", "webpack-cli", "eslint-webpack-plugin", "ts-loader", "jest", "jest-junit", "ts-jest", "@types/jest", "typedoc"]}, "youwol": {"type": "object", "properties": {"pipeline": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "required": ["pipeline"]}}, "required": ["name", "version", "description", "author", "keywords", "homepage", "main", "types", "scripts", "dependencies", "peerDependencies", "devDependencies", "youwol"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@youwol/cdn-client", "version" : "0.0.10", "description" : "Library for dynamic dependencies fetching from YouWol's CDN", "author" : "", "keywords" : [], "homepage" : "https://github.com/youwol/cdn-client#README.md", "main" : "dist/@youwol/cdn-client.js", "types" : "src/index.ts", "scripts" : {"build" : "yarn build:dev", "build:dev" : "webpack --mode development", "build:prod" : "webpack --mode production", "test" : "jest -c ./jest.config.js --rootDir .", "test-coverage" : "jest -c ./jest.config.js --rootDir . --collect-coverage --collectCoverageFrom=./src/lib/**/*.ts ", "doc" : "typedoc src/ --exclude src/index.ts --exclude src/tests --out dist/docs --theme default", "publish-npm-public" : "yarn build:prod && yarn test-coverage && yarn publish --access public"}, "dependencies" : {}, "peerDependencies" : {}, "devDependencies" : {"@types/node" : "14.14.37", "eslint" : "7.23.0", "ts-lib" : "0.0.5", "typescript" : "4.2.3", "webpack" : "5.28.0", "webpack-cli" : "4.6.0", "eslint-webpack-plugin" : "2.5.3", "ts-loader" : "8.1.0", "jest" : "26.6.3", "jest-junit" : "12.0.0", "ts-jest" : "26.5.4", "@types/jest" : "26.0.22", "typedoc" : "0.20.34"}, "youwol" : {"pipeline" : {"name" : "yw_pipeline_webpack_ts", "version" : "0.0.0"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "author": {"type": "string"}, "keywords": {"type": "array", "items": {}}, "homepage": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "build:dev": {"type": "string"}, "build:prod": {"type": "string"}, "test": {"type": "string"}, "test-coverage": {"type": "string"}, "doc": {"type": "string"}, "publish-npm-public": {"type": "string"}}, "required": ["build", "build:dev", "build:prod", "test", "test-coverage", "doc", "publish-npm-public"]}, "dependencies": {"type": "object", "properties": {}, "required": []}, "peerDependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@types/node": {"type": "string"}, "eslint": {"type": "string"}, "ts-lib": {"type": "string"}, "typescript": {"type": "string"}, "webpack": {"type": "string"}, "webpack-cli": {"type": "string"}, "eslint-webpack-plugin": {"type": "string"}, "ts-loader": {"type": "string"}, "jest": {"type": "string"}, "jest-junit": {"type": "string"}, "ts-jest": {"type": "string"}, "@types/jest": {"type": "string"}, "typedoc": {"type": "string"}}, "required": ["@types/node", "eslint", "ts-lib", "typescript", "webpack", "webpack-cli", "eslint-webpack-plugin", "ts-loader", "jest", "jest-junit", "ts-jest", "@types/jest", "typedoc"]}, "youwol": {"type": "object", "properties": {"pipeline": {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}}, "required": ["name", "version"]}}, "required": ["pipeline"]}}, "required": ["name", "version", "description", "author", "keywords", "homepage", "main", "types", "scripts", "dependencies", "peerDependencies", "devDependencies", "youwol"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"category": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "preRequisites": {"type": "array", "items": {"type": "string"}}, "parametersDescription": {"type": "object", "properties": {"rolesToStepUp": {"type": "string"}}, "required": ["rolesToStepUp"]}, "defaultStepsDescription": {"type": "object", "properties": {"Step 1": {"type": "string"}, "Step 2": {"type": "string"}}, "required": ["Step 1", "Step 2"]}, "authenticationSteps": {"type": "integer"}, "defaultAuthenticators": {"type": "object", "properties": {"1": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "string"}}, "federated": {"type": "array", "items": {}}}, "required": ["local", "federated"]}, "2": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "string"}}, "federated": {"type": "array", "items": {}}}, "required": ["local", "federated"]}}, "required": ["1", "2"]}, "helpLink": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["category", "name", "title", "summary", "preRequisites", "parametersDescription", "defaultStepsDescription", "authenticationSteps", "defaultAuthenticators", "helpLink", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"category" : "user_based", "name" : "Role-Based", "title" : "Role-Based 2FA Template", "summary" : "Prompts 2FA to the users who belongs to any of the given set of roles.", "preRequisites" : ["Change the rolesList parameter to an array of roles of which users need to enforce 2FA.", "Modify the 1st and 2nd factor authentication option(s) from defaults as required."], "parametersDescription" : {"rolesToStepUp" : "An array of roles of which users need to enforce 2FA."}, "defaultStepsDescription" : {"Step 1" : "Basic (Password) authenticator.", "Step 2" : "Either of TOTP or FIDO"}, "authenticationSteps" : 2, "defaultAuthenticators" : {"1" : {"local" : ["BasicAuthenticator"], "federated" : []}, "2" : {"local" : ["totp", "FIDOAuthenticator"], "federated" : []}}, "helpLink" : "https://docs.wso2.com/display/IS570/Configuring+Role-Based+Adaptive+Authentication", "code" : ["// This script will step up authentication for any user belonging", "// to one of the given roles", "// If the user has any of the below roles, authentication will be stepped up", "var rolesToStepUp = ['admin', 'manager'];", "", "var onLoginRequest = function(context) {", " executeStep(1, {", " onSuccess: function (context) {", " // Extracting authenticated subject from the first step", " var user = context.currentKnownSubject;", " // Checking if the user is assigned to one of the given roles", " var hasRole = hasAnyOfTheRoles(user, rolesToStepUp);", " if (hasRole) {", " Log.info(user.username + ' Has one of Roles: ' + rolesToStepUp.toString());", " executeStep(2);", " }", " }", " });", "};"]}
json_instruct
{"type": "object", "properties": {"category": {"type": "string"}, "name": {"type": "string"}, "title": {"type": "string"}, "summary": {"type": "string"}, "preRequisites": {"type": "array", "items": {"type": "string"}}, "parametersDescription": {"type": "object", "properties": {"rolesToStepUp": {"type": "string"}}, "required": ["rolesToStepUp"]}, "defaultStepsDescription": {"type": "object", "properties": {"Step 1": {"type": "string"}, "Step 2": {"type": "string"}}, "required": ["Step 1", "Step 2"]}, "authenticationSteps": {"type": "integer"}, "defaultAuthenticators": {"type": "object", "properties": {"1": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "string"}}, "federated": {"type": "array", "items": {}}}, "required": ["local", "federated"]}, "2": {"type": "object", "properties": {"local": {"type": "array", "items": {"type": "string"}}, "federated": {"type": "array", "items": {}}}, "required": ["local", "federated"]}}, "required": ["1", "2"]}, "helpLink": {"type": "string"}, "code": {"type": "array", "items": {"type": "string"}}}, "required": ["category", "name", "title", "summary", "preRequisites", "parametersDescription", "defaultStepsDescription", "authenticationSteps", "defaultAuthenticators", "helpLink", "code"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : "Barangay 12, Pasay City, Metropolitan Manila, National Capital Region, PH", "locale" : "ph.national-capital-region.metropolitan-manila.pasay-city.barangay-12", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "12", "region_reference" : "141", "region_name" : "National Capital Region", "province_id" : "47", "province_reference" : "47", "province_name" : "Metropolitan Manila", "city_id" : "1004", "city_reference" : "960", "city_name" : "Pasay City", "barangay_id" : "28421", "barangay_reference" : "25403", "barangay_name" : "Barangay 12"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.99173, 14.552681], [120.990891, 14.55243], [120.990616, 14.552341], [120.990257, 14.55222], [120.989647, 14.552041], [120.989388, 14.55195], [120.98922, 14.55257], [120.989487, 14.552661], [120.990387, 14.55294], [120.991516, 14.55329], [120.99173, 14.552681]]]]}}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "title" : "Hispellum", "id" : "413170", "bbox" : [12.671828, 42.989813, 12.671901, 42.990904], "description" : "Hispellum (modern Spello) is an ancient settlement of Umbria that became a Roman colony in the first century BC.", "connectsWith" : ["856514595"], "names" : ["Hispellum", "Hispellates", "Eispellon"], "features" : [{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [12.6718645, 42.9903585]}, "properties" : {"description" : "representative point"}}, {"geometry" : {"type" : "Point", "coordinates" : [12.671901, 42.989813]}, "id" : "darmc-location-18037", "type" : "Feature", "properties" : {"description" : "1:500,000 scale representative point location digitized from the Barrington Atlas of the Greek and Roman World by the Digital Atlas of Roman and Medieval Civilizations project at Harvard University.", "location_precision" : "precise", "title" : "DARMC location 18037", "link" : "http://pleiades.stoa.org/places/413170/darmc-location-18037"}}, {"geometry" : {"type" : "Point", "coordinates" : [12.671828, 42.990904]}, "id" : "dare-location", "type" : "Feature", "properties" : {"description" : "Representative point location, site precision", "location_precision" : "precise", "title" : "DARE Location", "link" : "http://pleiades.stoa.org/places/413170/dare-location"}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "title": {"type": "string"}, "id": {"type": "string"}, "bbox": {"type": "array", "items": {"type": "number"}}, "description": {"type": "string"}, "connectsWith": {"type": "array", "items": {"type": "string"}}, "names": {"type": "array", "items": {"type": "string"}}, "features": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"description": {"type": "string"}}, "required": ["description"]}}, "required": ["type", "geometry", "properties"]}}}, "required": ["type", "title", "id", "bbox", "description", "connectsWith", "names", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "carVertical", "type" : "ERC20", "symbol" : "cV", "decimals" : 18, "website" : "https://www.carvertical.com", "description" : "carVertical is building a decentralized vehicle registry.", "explorer" : "https://etherscan.io/token/0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683", "status" : "active", "id" : "0x50bC2Ecc0bfDf5666640048038C1ABA7B7525683"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "symbol": {"type": "string"}, "decimals": {"type": "integer"}, "website": {"type": "string"}, "description": {"type": "string"}, "explorer": {"type": "string"}, "status": {"type": "string"}, "id": {"type": "string"}}, "required": ["name", "type", "symbol", "decimals", "website", "description", "explorer", "status", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"language": {"type": "string"}, "sources": {"type": "object", "properties": {"contracts/F.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/NMR.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/R.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/T.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}, "required": ["contracts/F.sol", "contracts/NMR.sol", "contracts/R.sol", "contracts/T.sol"]}, "settings": {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"useLiteralContent": {"type": "boolean"}}, "required": ["useLiteralContent"]}, "optimizer": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "runs": {"type": "integer"}}, "required": ["enabled", "runs"]}, "outputSelection": {"type": "object", "properties": {"*": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}, "": {"type": "array", "items": {"type": "string"}}}, "required": ["*", ""]}}, "required": ["*"]}}, "required": ["metadata", "optimizer", "outputSelection"]}}, "required": ["language", "sources", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"language" : "Solidity", "sources" : {"contracts/F.sol" : {"content" : "pragma solidity ^0.5.1;\n\n\ncontract F {}"}, "contracts/NMR.sol" : {"content" : "pragma solidity ^0.5.1;\n\n\ncontract NMR {}"}, "contracts/R.sol" : {"content" : "pragma solidity ^0.5.1;\n\n\ncontract R {}"}, "contracts/T.sol" : {"content" : "pragma solidity ^0.5.1;\n\n\ncontract T {}"}}, "settings" : {"metadata" : {"useLiteralContent" : true}, "optimizer" : {"enabled" : false, "runs" : 200}, "outputSelection" : {"*" : {"*" : ["abi", "evm.bytecode", "evm.deployedBytecode", "evm.methodIdentifiers"], "" : ["id", "ast"]}}}}
json_instruct
{"type": "object", "properties": {"language": {"type": "string"}, "sources": {"type": "object", "properties": {"contracts/F.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/NMR.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/R.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}, "contracts/T.sol": {"type": "object", "properties": {"content": {"type": "string"}}, "required": ["content"]}}, "required": ["contracts/F.sol", "contracts/NMR.sol", "contracts/R.sol", "contracts/T.sol"]}, "settings": {"type": "object", "properties": {"metadata": {"type": "object", "properties": {"useLiteralContent": {"type": "boolean"}}, "required": ["useLiteralContent"]}, "optimizer": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "runs": {"type": "integer"}}, "required": ["enabled", "runs"]}, "outputSelection": {"type": "object", "properties": {"*": {"type": "object", "properties": {"*": {"type": "array", "items": {"type": "string"}}, "": {"type": "array", "items": {"type": "string"}}}, "required": ["*", ""]}}, "required": ["*"]}}, "required": ["metadata", "optimizer", "outputSelection"]}}, "required": ["language", "sources", "settings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "private", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "react-bootstrap/PopoverTitle", "private" : true, "main" : "../cjs/PopoverTitle.js", "module" : "../esm/PopoverTitle.js", "types" : "../esm/PopoverTitle.d.ts"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "private": {"type": "boolean"}, "main": {"type": "string"}, "module": {"type": "string"}, "types": {"type": "string"}}, "required": ["name", "private", "main", "module", "types"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"embetty.js": {"type": "string"}, "embetty.min.js": {"type": "string"}}, "required": ["embetty.js", "embetty.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"embetty.js" : "sha512-gyfWlJlUcGLxy4BEwUH/jt7+fb0KZrzxkj7BzIn8FoUYI5eooi8uXlJk4KNsma0SLRlnlZcd408NCwLqBcYWXQ==", "embetty.min.js" : "sha512-O48CNiigwkHYaNVf6djAdMjiCCMihydpOy2aRwand2yzYqCgoHqrbOZIfH7NOyVPoOXvDhhs3/Od/PGsk1+3SA=="}
json_instruct
{"type": "object", "properties": {"embetty.js": {"type": "string"}, "embetty.min.js": {"type": "string"}}, "required": ["embetty.js", "embetty.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Traffic engineering with forward fault correction.", "fields" : ["sorting network", "throughput", "data loss", "traffic engineering", "packet loss"], "abstract" : "Faults such as link failures and high switch configuration delays can cause heavy congestion and packet loss. Because it takes time to detect and react to faults, these conditions can last long---even tens of seconds. We propose forward fault correction (FFC), a proactive approach to handling faults. FFC spreads network traffic such that freedom from congestion is guaranteed under arbitrary combinations of up to k faults. We show how FFC can be practically realized by compactly encoding the constraints that arise from this large number of possible faults and solving them efficiently using sorting networks. Experiments with data from real networks show that, with negligible loss in overall network throughput, FFC can reduce data loss by a factor of 7--130 in well-provisioned networks, and reduce the loss of high-priority traffic to almost zero in well-utilized networks.", "citation" : "Citations (75)", "departments" : ["Yale University", "Microsoft", "Microsoft", "Microsoft", "Yale University"], "authors" : ["Hongqiang Harry Liu.....http://dblp.org/pers/hd/l/Liu:Hongqiang_Harry", "Srikanth Kandula.....http://dblp.org/pers/hd/k/Kandula:Srikanth", "Ratul Mahajan.....http://dblp.org/pers/hd/m/Mahajan:Ratul", "Ming Zhang.....http://dblp.org/pers/hd/z/Zhang_0005:Ming", "David Gelernter.....http://dblp.org/pers/hd/g/Gelernter:David"], "conf" : "sigcomm", "year" : "2014", "pages" : 12}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "fields": {"type": "array", "items": {"type": "string"}}, "abstract": {"type": "string"}, "citation": {"type": "string"}, "departments": {"type": "array", "items": {"type": "string"}}, "authors": {"type": "array", "items": {"type": "string"}}, "conf": {"type": "string"}, "year": {"type": "string"}, "pages": {"type": "integer"}}, "required": ["title", "fields", "abstract", "citation", "departments", "authors", "conf", "year", "pages"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"bowser.js": {"type": "string"}, "bowser.min.js": {"type": "string"}}, "required": ["bowser.js", "bowser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"bowser.js" : "sha512-xLlyoWB3vDeErQ0jt9eT8TxpUbyA6o+TB7ecJ/kDY9vgX5fjGZQRDfimJYw2Gl4vWMRSX1j2SZtGPeDggqC+uA==", "bowser.min.js" : "sha512-dIN/Cw/e0zXivVr2zDzpOZE24dhJsf81JVLf5xMjjGfqo4zPhrWJnfe7iw7c4WoGo3DFr0U0U2Z8ng6hBpW7rg=="}
json_instruct
{"type": "object", "properties": {"bowser.js": {"type": "string"}, "bowser.min.js": {"type": "string"}}, "required": ["bowser.js", "bowser.min.js"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Lavinia Lane", "attribute" : "Wind", "type" : "Resonator", "cmc" : 1, "racesOrTraits" : ["Student", "Class G"], "text" : "T: Recover target regalia.", "set" : "Vingolf 2 - Valkyria Chronicles", "code" : "VIN002-055", "rarity" : "C", "thumbnailImage" : "../assets/img/cards/VIN002/055.jpg", "cardImage" : "http://db.fowtcg.us/cards/vin002/055.jpg"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "attribute": {"type": "string"}, "type": {"type": "string"}, "cmc": {"type": "integer"}, "racesOrTraits": {"type": "array", "items": {"type": "string"}}, "text": {"type": "string"}, "set": {"type": "string"}, "code": {"type": "string"}, "rarity": {"type": "string"}, "thumbnailImage": {"type": "string"}, "cardImage": {"type": "string"}}, "required": ["name", "attribute", "type", "cmc", "racesOrTraits", "text", "set", "code", "rarity", "thumbnailImage", "cardImage"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"initial time": {"type": "number"}, "fourier coefficients": {"type": "array", "items": {"type": "object", "properties": {"sine": {"type": "array", "items": {"type": "number"}}, "cosine": {"type": "array", "items": {"type": "number"}}}, "required": ["sine", "cosine"]}}, "time limit": {"type": "number"}, "checkpoint size": {"type": "integer"}, "resolution": {"type": "integer"}, "print frequency": {"type": "number"}, "evolution": {"type": "array", "items": {}}}, "required": ["initial time", "fourier coefficients", "time limit", "checkpoint size", "resolution", "print frequency", "evolution"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"initial time" : 0.0, "fourier coefficients" : [{"sine" : [0.7026472083760156, 0.8542230008724407], "cosine" : [0.08627650813073551, -0.7522531832682071, -0.8118573126500639]}, {"sine" : [-1.6876746386108585, -0.5654162345050101], "cosine" : [-2.307083089871508, -0.5963438526485196, 0.22855353894606897]}, {"sine" : [-0.740388564228339, -0.9483840626397407], "cosine" : [0.2994458433548235, 0.2483327971823317, 0.6177073884639801]}, {"sine" : [-0.9430891483855223, -0.33901132807831125], "cosine" : [0.0, -2.1954850176950123, 0.851265733017144]}, {"sine" : [1.300027613172382, 2.04260665442093], "cosine" : [-0.32832536119850975, -3.215182712893056, -2.38976643177425]}, {"sine" : [0.46451126477120797, 0.016056756030170538], "cosine" : [0.973546618836707, -0.6304482765870085, 0.19623727236754585]}], "time limit" : 22.0, "checkpoint size" : 1000000000, "resolution" : 512, "print frequency" : 0.01, "evolution" : []}
json_instruct
{"type": "object", "properties": {"initial time": {"type": "number"}, "fourier coefficients": {"type": "array", "items": {"type": "object", "properties": {"sine": {"type": "array", "items": {"type": "number"}}, "cosine": {"type": "array", "items": {"type": "number"}}}, "required": ["sine", "cosine"]}}, "time limit": {"type": "number"}, "checkpoint size": {"type": "integer"}, "resolution": {"type": "integer"}, "print frequency": {"type": "number"}, "evolution": {"type": "array", "items": {}}}, "required": ["initial time", "fourier coefficients", "time limit", "checkpoint size", "resolution", "print frequency", "evolution"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"pr-status": {"type": "string"}}, "required": ["pr-status"]}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "lint", "format", "test", "prepare"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node16": {"type": "string"}, "@types/args": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "nested-builder": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node16", "@types/args", "@types/chai", "@types/mocha", "@types/node-fetch", "chai", "mocha", "nested-builder", "prettier", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"args": {"type": "string"}, "chalk": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["args", "chalk", "node-fetch"]}}, "required": ["name", "version", "description", "main", "bin", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@smashwilson/pr-status", "version" : "1.0.0", "description" : "Dashboard reporting build and review status of your open pull requests", "main" : "build/index.js", "bin" : {"pr-status" : "build/cli.js"}, "types" : "build/index.d.ts", "scripts" : {"build" : "tsc -p tsconfig.build.json", "lint" : "prettier --check lib test", "format" : "prettier --write lib test", "test" : "mocha", "prepare" : "npm run build"}, "repository" : {"type" : "git", "url" : "git+ssh://git@github.com/smashwilson/pr-status.git"}, "keywords" : [], "author" : "Ash Wilson <smashwilson@gmail.com>", "license" : "MIT", "bugs" : {"url" : "https://github.com/smashwilson/pr-status/issues"}, "homepage" : "https://github.com/smashwilson/pr-status#readme", "devDependencies" : {"@tsconfig/node16" : "^1.0.2", "@types/args" : "^5.0.0", "@types/chai" : "^4.2.1", "@types/mocha" : "^9.0.0", "@types/node-fetch" : "^2.5.12", "chai" : "^4.2.0", "mocha" : "^10.0.0", "nested-builder" : "^1.1.1", "prettier" : "^2.0.2", "ts-node" : "^10.4.0", "typescript" : "^4.0.2"}, "dependencies" : {"args" : "^5.0.1", "chalk" : "^4.1.2", "node-fetch" : "^2.6.6"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "bin": {"type": "object", "properties": {"pr-status": {"type": "string"}}, "required": ["pr-status"]}, "types": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "lint": {"type": "string"}, "format": {"type": "string"}, "test": {"type": "string"}, "prepare": {"type": "string"}}, "required": ["build", "lint", "format", "test", "prepare"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node16": {"type": "string"}, "@types/args": {"type": "string"}, "@types/chai": {"type": "string"}, "@types/mocha": {"type": "string"}, "@types/node-fetch": {"type": "string"}, "chai": {"type": "string"}, "mocha": {"type": "string"}, "nested-builder": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node16", "@types/args", "@types/chai", "@types/mocha", "@types/node-fetch", "chai", "mocha", "nested-builder", "prettier", "ts-node", "typescript"]}, "dependencies": {"type": "object", "properties": {"args": {"type": "string"}, "chalk": {"type": "string"}, "node-fetch": {"type": "string"}}, "required": ["args", "chalk", "node-fetch"]}}, "required": ["name", "version", "description", "main", "bin", "types", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "devDependencies", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "DjangoCon US 2017 - Serverless Django by Rich Jones\n\nYou\u2019ve probably heard the buzzword by now - \u201cserverless\u201d. It\u2019s a new type of application architecture where traditional web servers are replaced by ephemeral cloud services. But what does it mean for the average Django user? Hint: lower costs, more scalability, more capabilities and less ops tasks to worry about!\n\nFirst, this talk will explain what \u201cserverless\u201d really means for you, and provide an overview the advantages and disadvantages of event-driven server-less architectures.\n\nNext, we\u2019ll demonstrate how easy it is to migrate your existing Django CMS application to run on AWS Lambda by using the Zappa framework, including some real-world issues you might bump into.\n\nThen, we\u2019ll show how to implement some of the most common Django patterns as part of a server-less architecture - uploaded avatar image processing, batch and timed sending of email, and long running tasks like statistical aggregation.\n\nFinally, we\u2019ll show how to scale up your server-less application to trillions of events per year by distributing your app to dozens of data centers all around the globe, and do an ultimate cost analysis of your new system.\n\n\nhttps://2017.djangocon.us/talks/serverless-django/", "language" : "eng", "recorded" : "2017-08-14", "speakers" : ["Rich Jones"], "thumbnail_url" : "https://i.ytimg.com/vi/ixRZfVBn_A8/hqdefault.jpg", "title" : "Serverless Django", "videos" : [{"type" : "youtube", "url" : "https://www.youtube.com/watch?v=ixRZfVBn_A8"}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "language": {"type": "string"}, "recorded": {"type": "string"}, "speakers": {"type": "array", "items": {"type": "string"}}, "thumbnail_url": {"type": "string"}, "title": {"type": "string"}, "videos": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}}, "required": ["description", "language", "recorded", "speakers", "thumbnail_url", "title", "videos"], "$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": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "object", "properties": {"tagList": {"type": "array", "items": {"type": "string"}}}, "required": ["tagList"]}}, "required": ["name", "tags"]}}, "required": ["type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"data" : {"type" : "tags", "attributes" : {"name" : "test tag list", "tags" : {"tagList" : ["karate"]}}}}
json_instruct
{"type": "object", "properties": {"data": {"type": "object", "properties": {"type": {"type": "string"}, "attributes": {"type": "object", "properties": {"name": {"type": "string"}, "tags": {"type": "object", "properties": {"tagList": {"type": "array", "items": {"type": "string"}}}, "required": ["tagList"]}}, "required": ["name", "tags"]}}, "required": ["type", "attributes"]}}, "required": ["data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"word" : "equimomental", "definition" : "Having equal moments of inertia. Note: Two bodies or systems of bodies are said to be equimomental when their moments of inertia about all straight lines are equal each to each. Equimomental cone of a given rigid body, a conical surface that has any given vertex, and is described by a straight line which moves in such manner that the moment of inertia of the given rigid body about the line is in all its positions the same."}
json_instruct
{"type": "object", "properties": {"word": {"type": "string"}, "definition": {"type": "string"}}, "required": ["word", "definition"], "$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"}, "description": {"type": "string"}, "uid": {"type": "string"}, "output_path": {"type": "string"}, "jobs": {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "op_id": {"type": "string"}, "parameters": {"type": "object", "properties": {"region_id": {"type": "integer"}}, "required": ["region_id"]}, "callbacks": {"type": "object", "properties": {"success": {"type": "array", "items": {"type": "object", "properties": {"callback_id": {"type": "string"}}, "required": ["callback_id"]}}, "fail": {"type": "array", "items": {"type": "object", "properties": {"callback_id": {"type": "string"}}, "required": ["callback_id"]}}}, "required": ["success", "fail"]}}, "required": ["uid", "op_id", "parameters", "callbacks"]}}}, "required": ["name", "description", "uid", "output_path", "jobs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "result_with_pages_to_json_file", "description" : "An example of saving the raw results with a paged api to a json file.", "uid" : "009f2f29-e481-4f26-b831-73b34e133003", "output_path" : "samples/order_output/${ewo_name}", "jobs" : [{"uid" : "36493306-f9ca-4e03-9df0-90f3d0d4ab1a", "op_id" : "get_contracts_public_region_id", "parameters" : {"region_id" : 10000002}, "callbacks" : {"success" : [{"callback_id" : "response_content_to_json"}, {"callback_id" : "check_for_pages"}, {"callback_id" : "save_json_result_to_file", "kwargs" : {"file_path" : "data/public-contracts/${region_id}.json"}}], "fail" : [{"callback_id" : "response_to_esi_job"}, {"callback_id" : "log_job_failure"}]}}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "uid": {"type": "string"}, "output_path": {"type": "string"}, "jobs": {"type": "array", "items": {"type": "object", "properties": {"uid": {"type": "string"}, "op_id": {"type": "string"}, "parameters": {"type": "object", "properties": {"region_id": {"type": "integer"}}, "required": ["region_id"]}, "callbacks": {"type": "object", "properties": {"success": {"type": "array", "items": {"type": "object", "properties": {"callback_id": {"type": "string"}}, "required": ["callback_id"]}}, "fail": {"type": "array", "items": {"type": "object", "properties": {"callback_id": {"type": "string"}}, "required": ["callback_id"]}}}, "required": ["success", "fail"]}}, "required": ["uid", "op_id", "parameters", "callbacks"]}}}, "required": ["name", "description", "uid", "output_path", "jobs"], "$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": {"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" : "ACEH TAMIANG", "originalFilename" : "IMG-20180711-WA0007[1].jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 90548, "noUrut" : 1, "nama" : "SALBIAH, S.Pd.I", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "1. pas Photo 4x6.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 98546, "noUrut" : 2, "nama" : "MUHAMMAD IRWAN, SP", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "Kelik 4i.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 149416, "noUrut" : 3, "nama" : "FAUZI, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "Pas Photo Pak ARMAN.JPG", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 91504, "noUrut" : 4, "nama" : "ARMAN", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "pas photo 4x6.JPG", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 148962, "noUrut" : 5, "nama" : "MUHAMMAD SAYUTI", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "KOTA MEDAN", "originalFilename" : "Buk Rita foto.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 156308, "noUrut" : 6, "nama" : "RITA HARIYATI, BA", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "Pas Photo 4 x 6.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 129690, "noUrut" : 7, "nama" : "ARDI SETIO CAHYONO, SH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "pas photo 4x6 pak Azhar.JPG", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 128311, "noUrut" : 8, "nama" : "AZHARSYAH", "stringJenisKelamin" : "Laki-Laki"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "Kecil.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 114619, "noUrut" : 9, "nama" : "JUWANI RACHMI, S.Pd", "stringJenisKelamin" : "Perempuan"}, {"namaKab" : "ACEH TAMIANG", "originalFilename" : "FOTO.jpg", "namaPartai" : "PARTAI GERAKAN INDONESIA RAYA", "id" : 155033, "noUrut" : 10, "nama" : "EFFENDI", "stringJenisKelamin" : "Laki-Laki"}]
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#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"collections" : [{"fullName" : "System.Security.Claims.Claim", "methods" : [{"name" : "System.Security.Claims.Claim(System.String type, System.String value)", "type" : "CTOR", "count" : 992}, {"name" : "System.Security.Claims.Claim.Value", "type" : "PROP", "count" : 328}, {"name" : "System.Security.Claims.Claim.Type", "type" : "PROP", "count" : 326}, {"name" : "System.Security.Claims.Claim.Issuer", "type" : "PROP", "count" : 28}, {"name" : "System.Security.Claims.Claim(System.String type, System.String value, System.String valueType, System.String issuer)", "type" : "CTOR", "count" : 374}, {"name" : "System.Security.Claims.Claim(System.String type, System.String value, System.String valueType)", "type" : "CTOR", "count" : 24}, {"name" : "System.Security.Claims.Claim.Properties", "type" : "PROP", "count" : 2}]}]}
json_instruct
{"type": "object", "properties": {"collections": {"type": "array", "items": {"type": "object", "properties": {"fullName": {"type": "string"}, "methods": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "type": {"type": "string"}, "count": {"type": "integer"}}, "required": ["name", "type", "count"]}}}, "required": ["fullName", "methods"]}}}, "required": ["collections"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:website": {"type": "string"}, "opening_hours": {"type": "string"}, "operator": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:website", "opening_hours", "operator", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "id" : "node/6390016412", "properties" : {"amenity" : "marketplace", "contact:website" : "https://www.etten-leur.nl/Ondernemer/Alle_onderwerpen/Detailhandel_en_horeca/De_weekmarkten_van_Etten_Leur", "opening_hours" : "Fr 09:00-12:00", "operator" : "Gemeente Etten-Leur", "id" : "node/6390016412"}, "geometry" : {"type" : "Point", "coordinates" : [4.6548255, 51.5856543]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "id": {"type": "string"}, "properties": {"type": "object", "properties": {"amenity": {"type": "string"}, "contact:website": {"type": "string"}, "opening_hours": {"type": "string"}, "operator": {"type": "string"}, "id": {"type": "string"}}, "required": ["amenity", "contact:website", "opening_hours", "operator", "id"]}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}}, "required": ["type", "id", "properties", "geometry"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "twitter": {"type": "string"}, "donationUrl": {"type": "string"}}, "required": ["name", "email", "twitter", "donationUrl"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "oracle": {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "string"}}, "apex": {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "string"}}, "plugin": {"type": "object", "properties": {"internalName": {"type": "string"}, "type": {"type": "string"}, "demo": {"type": "string"}, "previewImage": {"type": "string"}}, "required": ["internalName", "type", "demo", "previewImage"]}}, "required": ["versions", "plugin"]}}, "required": ["versions", "apex"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "license", "author", "repository", "oracle"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "APEX Percent Bargraphs", "version" : "1.1", "description" : "The plug - in draws some nice percent bargraphs in APEX or in native HTML page. It was mainly created for the demo at the DOAG Webinar on 01.02.2019 - https://dlvr.it/Qwzkw9. However, it can be used at any time. Login for Demo is: user-demo / 123456@", "keywords" : ["oracle", "apex", "plugin", "region", "responsive"], "homepage" : "https://github.com/RonnyWeiss/APEX-Percent-Bargraphs", "bugs" : {"url" : "https://github.com/RonnyWeiss/APEX-Percent-Bargraphs", "email" : "wronny@gmx.de"}, "license" : "MIT", "author" : {"name" : "Ronny Wei\u00df", "email" : "wronny@gmx.de", "twitter" : "ronny_weiss_", "donationUrl" : "https://www.paypal.me/RonnyW1"}, "repository" : {"type" : "git", "url" : "https://github.com/RonnyWeiss/APEX-Percent-Bargraphs.git"}, "oracle" : {"versions" : ["12.1.0.1", "12.2.0.1", "18.4.0.0", "19.0.0.0.0"], "apex" : {"versions" : ["5.1.3", "18.1.0.00.45", "18.2.0.00.12", "19.1.0.00.15", "19.2.0.00.18", "20.1.0.00.13"], "plugin" : {"internalName" : "APEX.PERECENT.BARGRAPHS", "type" : "region", "demo" : "https://apex.oracle.com/pls/apex/f?p=103428", "previewImage" : "https://github.com/RonnyWeiss/APEX-Percent-Bargraphs/raw/master/screenshot.gif"}}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "homepage": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}, "email": {"type": "string"}}, "required": ["url", "email"]}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}, "twitter": {"type": "string"}, "donationUrl": {"type": "string"}}, "required": ["name", "email", "twitter", "donationUrl"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "oracle": {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "string"}}, "apex": {"type": "object", "properties": {"versions": {"type": "array", "items": {"type": "string"}}, "plugin": {"type": "object", "properties": {"internalName": {"type": "string"}, "type": {"type": "string"}, "demo": {"type": "string"}, "previewImage": {"type": "string"}}, "required": ["internalName", "type", "demo", "previewImage"]}}, "required": ["versions", "plugin"]}}, "required": ["versions", "apex"]}}, "required": ["name", "version", "description", "keywords", "homepage", "bugs", "license", "author", "repository", "oracle"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "string"}, "$schema": "http://json-schema.org/draft-07/schema#"}
["GMP", "action-sheet", "beaf", "blyde", "deepword", "dword", "hilbert-chart", "k2-react-components", "lego-ui", "preact-richtextarea", "preact-token-input", "react-mobile-datepicker", "rollup-plugin-stylus-compiler", "salam", "showcaser", "stacked-timelines-chart", "timelines-chart", "vue-froala", "vue-pagination", "vue-ydum", "weex-picker"]
json_instruct
{"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": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"last_check" : "2018-12-04T06:12:13Z", "pypi_version" : "18.1"}
json_instruct
{"type": "object", "properties": {"last_check": {"type": "string"}, "pypi_version": {"type": "string"}}, "required": ["last_check", "pypi_version"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"8275": {"type": "string"}, "8273": {"type": "string"}}, "required": ["8275", "8273"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"8275" : "8276", "8273" : "8274"}
json_instruct
{"type": "object", "properties": {"8275": {"type": "string"}, "8273": {"type": "string"}}, "required": ["8275", "8273"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"activiteiten_ontmoeting": {"type": "number"}, "weekend_modifier": {"type": "number"}, "persoonsvolgend_rate": {"type": "number"}, "besteedbaar_rate": {"type": "number"}, "punt_euro_rate": {"type": "integer"}}, "required": ["activiteiten_ontmoeting", "weekend_modifier", "persoonsvolgend_rate", "besteedbaar_rate", "punt_euro_rate"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"activiteiten_ontmoeting" : 0.5, "weekend_modifier" : 1.11111111, "persoonsvolgend_rate" : 861.86, "besteedbaar_rate" : 958.7538756, "punt_euro_rate" : 950}
json_instruct
{"type": "object", "properties": {"activiteiten_ontmoeting": {"type": "number"}, "weekend_modifier": {"type": "number"}, "persoonsvolgend_rate": {"type": "number"}, "besteedbaar_rate": {"type": "number"}, "punt_euro_rate": {"type": "integer"}}, "required": ["activiteiten_ontmoeting", "weekend_modifier", "persoonsvolgend_rate", "besteedbaar_rate", "punt_euro_rate"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"towns" : [{"name" : "Wattwil", "url" : "wattwil"}]}
json_instruct
{"type": "object", "properties": {"towns": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "url"]}}}, "required": ["towns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"corpus" : ["\u67f3\u4e09\u723a", "\u7b11", "\u9053", "\u4f60", "\u611b", "\u600e\u6a23", "\u756b", "\u5c31", "\u600e\u6a23", "\u756b", "\u6211", "\u4e5f", "\u4e0d", "\u6349", "\u4f60", "\u4e86", "\u4e0d\u904e", "\u4f60", "\u53ea", "\u80fd", "\u756b", "\u4eca\u5929", "\u4e00", "\u56de", "\u660e\u5929", "\u6211", "\u628a", "\u7246", "\u5168\u90e8", "\u7c89\u5237", "\u4e7e\u6de8", "\u4e86", "\u4f60", "\u53ef", "\u4e0d\u80fd", "\u518d", "\u756b", "\u5c0f\u5357\u9053", "\u8981\u662f", "\u50cf", "\u9019\u6a23", "\u597d", "\u8aaa\u8a71", "\u6211", "\u5c31", "\u4e0d", "\u756b", "\u54b1\u5011", "\u505a", "\u500b", "\u597d", "\u8857\u574a", "\u5979", "\u662f", "\u4e00", "\u53e5", "\u7121\u5fc3", "\u7684", "\u8a71", "\u4e0d\u6599", "\u67f3\u4e09\u723a", "\u807d", "\u4e86", "\u9019", "\u8a71", "\u5012", "\u5f15\u70ba", "\u662f", "\u500b", "\u7d55\u597d", "\u7684", "\u6a5f\u6703", "\u5c31", "\u7b11", "\u8457", "\u5411", "\u5979", "\u9053", "\u53ef", "\u4e0d", "\u662f", "\u54b1\u5011", "\u61c9\u8a72", "\u505a", "\u500b", "\u597d", "\u8857\u574a", "\u6211", "\u5bb6", "\u88e1", "\u6709", "\u5f48", "\u7684", "\u6709", "\u5531", "\u7684", "\u4f60", "\u82e5", "\u4e0d", "\u6015\u751f", "\u53ef\u4ee5", "\u5230", "\u6211\u5011", "\u90a3\u5152", "\u53bb", "\u73a9\u73a9"], "question" : ["\u8acb\u554f", "\u6839\u64da", "\u6b64", "\u6bb5", "\u6587\u7ae0", "\u67f3\u4e09\u723a", "\u5bb6", "\u88e1", "\u6709", "\u4ec0\u9ebc"], "answer" : [["\u5f48", "\u7684", "\u5531", "\u7684"], ["\u7df4\u5718\u5ba4"], ["KTV"], ["\u9304\u97f3\u5ba4"]]}
json_instruct
{"type": "object", "properties": {"corpus": {"type": "array", "items": {"type": "string"}}, "question": {"type": "array", "items": {"type": "string"}}, "answer": {"type": "array", "items": {"type": "array", "items": {"type": "string"}}}}, "required": ["corpus", "question", "answer"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/mission/graffiti-thewayisblocked/thewayisblocked.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/mission/graffiti-thewayisblocked/thewayisblocked.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"DeniedAlternatives" : [], "Files" : {"objects/mission/graffiti-thewayisblocked/thewayisblocked.object" : ["/slimepersonDescription"]}, "Texts" : {"Chs" : "\u773c\u89c1\u4e3a\u5b9e\u3002", "Eng" : "I'll believe it when I see it."}}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"DeniedAlternatives": {"type": "array", "items": {}}, "Files": {"type": "object", "properties": {"objects/mission/graffiti-thewayisblocked/thewayisblocked.object": {"type": "array", "items": {"type": "string"}}}, "required": ["objects/mission/graffiti-thewayisblocked/thewayisblocked.object"]}, "Texts": {"type": "object", "properties": {"Chs": {"type": "string"}, "Eng": {"type": "string"}}, "required": ["Chs", "Eng"]}}, "required": ["DeniedAlternatives", "Files", "Texts"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "originalId": {"type": "string"}, "sourceGame": {"type": "string"}, "objectType": {"type": "string"}, "properties": {"type": "object", "properties": {"price": {"type": "integer"}, "removalPrice": {"type": "integer"}, "cursor": {"type": "string"}, "height": {"type": "integer"}, "shape": {"type": "string"}, "isRotatable": {"type": "boolean"}, "isStackable": {"type": "boolean"}}, "required": ["price", "removalPrice", "cursor", "height", "shape", "isRotatable", "isStackable"]}, "images": {"type": "array", "items": {"type": "string"}}, "strings": {"type": "object", "properties": {"name": {"type": "object", "properties": {"en-GB": {"type": "string"}, "fr-FR": {"type": "string"}, "de-DE": {"type": "string"}, "es-ES": {"type": "string"}, "it-IT": {"type": "string"}, "nl-NL": {"type": "string"}, "sv-SE": {"type": "string"}, "ko-KR": {"type": "string"}, "zh-TW": {"type": "string"}, "pt-BR": {"type": "string"}, "cs-CZ": {"type": "string"}, "pl-PL": {"type": "string"}, "ru-RU": {"type": "string"}, "ja-JP": {"type": "string"}, "eo-OO": {"type": "string"}}, "required": ["en-GB", "fr-FR", "de-DE", "es-ES", "it-IT", "nl-NL", "sv-SE", "ko-KR", "zh-TW", "pt-BR", "cs-CZ", "pl-PL", "ru-RU", "ja-JP", "eo-OO"]}}, "required": ["name"]}}, "required": ["id", "authors", "version", "originalId", "sourceGame", "objectType", "properties", "images", "strings"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "rct2.tt.1920slmp", "authors" : ["Frontier Studios"], "version" : "1.0", "originalId" : "0E24FA21|1920SLMP|F4E542CD", "sourceGame" : "rct2tt", "objectType" : "scenery_small", "properties" : {"price" : 12, "removalPrice" : -9, "cursor" : "CURSOR_STATUE_DOWN", "height" : 72, "shape" : "4/4", "isRotatable" : true, "isStackable" : true}, "images" : ["$RCT2:OBJDATA/1920SLMP.DAT[0..3]"], "strings" : {"name" : {"en-GB" : "Period Street Lamps", "fr-FR" : "R\u00e9verb\u00e8res d'\u00e9poque", "de-DE" : "Antike Stra\u00dfenlaternen", "es-ES" : "Punto de farolas", "it-IT" : "Lampioni ricorrenti", "nl-NL" : "Antieke straatlantaarns", "sv-SE" : "Historiska gatlyktor", "ko-KR" : "\uae30\uac04 \uac00\ub85c\ub4f1", "zh-TW" : "\u5340\u9593\u8def\u71c8", "pt-BR" : "Postes de Luz de \u00c9poca", "cs-CZ" : "Star\u00e1 pouli\u010dn\u00ed lampa", "pl-PL" : "Stylowe lampy uliczne", "ru-RU" : "\u0423\u043b\u0438\u0447\u043d\u044b\u0435 \u0444\u043e\u043d\u0430\u0440\u0438", "ja-JP" : "1920\u6642\u4ee3\u306eStreet Lamps", "eo-OO" : "Historiaj Stratlumoj"}}}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "authors": {"type": "array", "items": {"type": "string"}}, "version": {"type": "string"}, "originalId": {"type": "string"}, "sourceGame": {"type": "string"}, "objectType": {"type": "string"}, "properties": {"type": "object", "properties": {"price": {"type": "integer"}, "removalPrice": {"type": "integer"}, "cursor": {"type": "string"}, "height": {"type": "integer"}, "shape": {"type": "string"}, "isRotatable": {"type": "boolean"}, "isStackable": {"type": "boolean"}}, "required": ["price", "removalPrice", "cursor", "height", "shape", "isRotatable", "isStackable"]}, "images": {"type": "array", "items": {"type": "string"}}, "strings": {"type": "object", "properties": {"name": {"type": "object", "properties": {"en-GB": {"type": "string"}, "fr-FR": {"type": "string"}, "de-DE": {"type": "string"}, "es-ES": {"type": "string"}, "it-IT": {"type": "string"}, "nl-NL": {"type": "string"}, "sv-SE": {"type": "string"}, "ko-KR": {"type": "string"}, "zh-TW": {"type": "string"}, "pt-BR": {"type": "string"}, "cs-CZ": {"type": "string"}, "pl-PL": {"type": "string"}, "ru-RU": {"type": "string"}, "ja-JP": {"type": "string"}, "eo-OO": {"type": "string"}}, "required": ["en-GB", "fr-FR", "de-DE", "es-ES", "it-IT", "nl-NL", "sv-SE", "ko-KR", "zh-TW", "pt-BR", "cs-CZ", "pl-PL", "ru-RU", "ja-JP", "eo-OO"]}}, "required": ["name"]}}, "required": ["id", "authors", "version", "originalId", "sourceGame", "objectType", "properties", "images", "strings"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"x_mean": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "x_std": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "energy_mean": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "energy_std": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "gradient_mean": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "gradient_std": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["x_mean", "x_std", "energy_mean", "energy_std", "gradient_mean", "gradient_std"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"x_mean" : [[[0.0]]], "x_std" : [[[1.0]]], "energy_mean" : [[-11440.478078139828, -11437.234184628272, -11438.641511039412, -11437.356142173694]], "energy_std" : [[1.323518306916458, 1.401133113496458, 1.2331086515397132, 1.3789050981518418]], "gradient_mean" : [[[[0.0]], [[0.0]], [[0.0]], [[0.0]]]], "gradient_std" : [[[[1.3235183069164582]], [[1.4011331134964582]], [[1.2331086515397134]], [[1.378905098151842]]]]}
json_instruct
{"type": "object", "properties": {"x_mean": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "x_std": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}, "energy_mean": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "energy_std": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "gradient_mean": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "gradient_std": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}}, "required": ["x_mean", "x_std", "energy_mean", "energy_std", "gradient_mean", "gradient_std"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"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" : "Bonga, Maria, Siquijor, Central Visayas (Region VII), PH", "locale" : "ph.central-visayas-region-vii.siquijor.maria.bonga", "country_id" : 177, "country_reference" : 177, "country_name" : "Philippines", "region_id" : "7", "region_reference" : "7", "region_name" : "Central Visayas (Region VII)", "province_id" : "69", "province_reference" : "69", "province_name" : "Siquijor", "city_id" : "834", "city_reference" : "1412", "city_name" : "Maria", "barangay_id" : "24169", "barangay_reference" : "36476", "barangay_name" : "Bonga"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[123.643478, 9.2078], [123.643967, 9.20181], [123.630669, 9.19917], [123.624123, 9.20382], [123.626793, 9.20711], [123.630989, 9.21198], [123.631828, 9.21318], [123.63356, 9.21507], [123.643478, 9.2078]]]]}}
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#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"prefecture": {"type": "string"}, "city": {"type": "string"}, "prefecture_kana": {"type": "string"}, "city_kana": {"type": "string"}, "code": {"type": "string"}, "code5": {"type": "string"}}, "required": ["prefecture", "city", "prefecture_kana", "city_kana", "code", "code5"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"prefecture" : "\u9577\u91ce\u770c", "city" : "\u5ca1\u8c37\u5e02", "prefecture_kana" : "\u30ca\u30ac\u30ce\u30b1\u30f3", "city_kana" : "\u30aa\u30ab\u30e4\u30b7", "code" : "202045", "code5" : "20204"}
json_instruct
{"type": "object", "properties": {"prefecture": {"type": "string"}, "city": {"type": "string"}, "prefecture_kana": {"type": "string"}, "city_kana": {"type": "string"}, "code": {"type": "string"}, "code5": {"type": "string"}}, "required": ["prefecture", "city", "prefecture_kana", "city_kana", "code", "code5"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "metodos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}, "campos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos", "campos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "ColorType", "description" : "", "parametros" : [{"nombre" : "String description", "description" : ""}]}], "metodos" : [{"nombre" : "getID", "description" : ""}, {"nombre" : "toString", "description" : ""}], "campos" : [{"nombre" : "BACKGROUND", "description" : ""}, {"nombre" : "FOCUS", "description" : ""}, {"nombre" : "FOREGROUND", "description" : ""}, {"nombre" : "MAX_COUNT", "description" : ""}, {"nombre" : "TEXT_BACKGROUND", "description" : ""}, {"nombre" : "TEXT_FOREGROUND", "description" : ""}]}
json_instruct
{"type": "object", "properties": {"description": {"type": "string"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}, "parametros": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["nombre", "description", "parametros"]}}, "metodos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}, "campos": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos", "campos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "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" : "'use strict';\n\nvar Promise = require('./core.js');\n\nmodule.exports = Promise;\n\nPromise.enableSynchronous = function () {\n Promise.prototype.isPending = function () {\n return this.getState() == 0;\n };\n\n Promise.prototype.isFulfilled = function () {\n return this.getState() == 1;\n };\n\n Promise.prototype.isRejected = function () {\n return this.getState() == 2;\n };\n\n Promise.prototype.getValue = function () {\n if (this._65 === 3) {\n return this._55.getValue();\n }\n\n if (!this.isFulfilled()) {\n throw new Error('Cannot get a value of an unfulfilled promise.');\n }\n\n return this._55;\n };\n\n Promise.prototype.getReason = function () {\n if (this._65 === 3) {\n return this._55.getReason();\n }\n\n if (!this.isRejected()) {\n throw new Error('Cannot get a rejection reason of a non-rejected promise.');\n }\n\n return this._55;\n };\n\n Promise.prototype.getState = function () {\n if (this._65 === 3) {\n return this._55.getState();\n }\n\n if (this._65 === -1 || this._65 === -2) {\n return 0;\n }\n\n return this._65;\n };\n};\n\nPromise.disableSynchronous = function () {\n Promise.prototype.isPending = undefined;\n Promise.prototype.isFulfilled = undefined;\n Promise.prototype.isRejected = undefined;\n Promise.prototype.getValue = undefined;\n Promise.prototype.getReason = undefined;\n Promise.prototype.getState = undefined;\n};", "map" : null, "metadata" : {}, "sourceType" : "script"}
json_instruct
{"type": "object", "properties": {"ast": {"type": "null"}, "code": {"type": "string"}, "map": {"type": "null"}, "metadata": {"type": "object", "properties": {}, "required": []}, "sourceType": {"type": "string"}}, "required": ["ast", "code", "map", "metadata", "sourceType"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01022925": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01022925"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Topology", "objects" : {"E01022925" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00116492", "LAD11CD" : "E07000090"}, "arcs" : [[0, 1, 2, 3]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00116493", "LAD11CD" : "E07000090"}, "arcs" : [[-1, 4]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00116494", "LAD11CD" : "E07000090"}, "arcs" : [[5, 6, 7, -3, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00116495", "LAD11CD" : "E07000090"}, "arcs" : [[-7, 9, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00116496", "LAD11CD" : "E07000090"}, "arcs" : [[-10, -6, 11]]}]}}, "arcs" : [[[8586, 1895], [-785, 202], [-1227, 966], [-347, -37], [107, -594], [-109, -58], [-295, -44], [-249, 269], [-404, -134], [54, -616]], [[5331, 1849], [-164, -49], [-127, 327]], [[5040, 2127], [-2, 988], [-479, 352], [-94, 513], [476, 573], [634, -44], [921, 2260]], [[6496, 6769], [173, -313], [1332, -547], [951, -1286], [52, -501], [196, 159], [13, -411], [243, -90], [435, -771], [108, -339], [-4, -177], [-1409, -598]], [[8586, 1895], [-683, -880], [-289, -1015], [-574, 421], [-348, 314], [-1005, -154], [8, 530], [-287, 118], [-77, 620]], [[4482, 1585], [-67, 1516], [-181, 447], [109, 292], [-876, 142], [-608, 510], [40, -240], [221, -80], [-118, -671], [624, -343], [33, -371], [-95, -785], [-145, 158], [-344, -294]], [[3075, 1866], [-604, 440], [-709, -506]], [[1762, 1800], [-1619, 2987], [-143, 944], [3778, 3314], [1752, 954], [-34, -932], [652, -1888], [348, -410]], [[5040, 2127], [-71, -385], [-487, -157]], [[3075, 1866], [-96, -472], [433, -264]], [[3412, 1130], [137, -321], [21, -349], [-176, -160], [-365, 175], [-414, -364], [-853, 1689]], [[4482, 1585], [-1043, -190], [-27, -265]]], "transform" : {"scale" : [2.7016293768259816e-06, 1.2950919751935272e-06], "translate" : [-0.953563035627835, 50.86078062134923]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01022925": {"type": "object", "properties": {"type": {"type": "string"}, "crs": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"name": {"type": "string"}}, "required": ["name"]}}, "required": ["type", "properties"]}, "geometries": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"OA11CD": {"type": "string"}, "LAD11CD": {"type": "string"}}, "required": ["OA11CD", "LAD11CD"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "required": ["type", "properties", "arcs"]}}}, "required": ["type", "crs", "geometries"]}}, "required": ["E01022925"]}, "arcs": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}}}, "transform": {"type": "object", "properties": {"scale": {"type": "array", "items": {"type": "number"}}, "translate": {"type": "array", "items": {"type": "number"}}}, "required": ["scale", "translate"]}}, "required": ["type", "objects", "arcs", "transform"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"package" : "vembrane", "downloads" : 10600, "count" : 6347}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"package": {"type": "string"}, "downloads": {"type": "integer"}, "count": {"type": "integer"}}, "required": ["package", "downloads", "count"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"userId" : 52364, "cartId" : "62556115-ba09-4a22-9989-e45c5d5f0b4f", "preferredProducts" : [3467, 389, 3836, 4608, 1789, 4028, 752], "productReviews" : [{"productId" : 796, "reviewText" : "this invoice is top-notch.", "reviewDate" : "2019-12-15T07:09:06.2740923+02:00"}, {"productId" : 4085, "reviewText" : "talk about surprise!!!", "reviewDate" : "2018-01-08T14:25:06.7915314+02:00"}, {"productId" : 4529, "reviewText" : "The box this comes in is 3 yard by 6 light-year and weights 11 megaton!!", "reviewDate" : "2019-01-13T08:39:38.2865357+02:00"}]}
json_instruct
{"type": "object", "properties": {"userId": {"type": "integer"}, "cartId": {"type": "string"}, "preferredProducts": {"type": "array", "items": {"type": "integer"}}, "productReviews": {"type": "array", "items": {"type": "object", "properties": {"productId": {"type": "integer"}, "reviewText": {"type": "string"}, "reviewDate": {"type": "string"}}, "required": ["productId", "reviewText", "reviewDate"]}}}, "required": ["userId", "cartId", "preferredProducts", "productReviews"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 2250266, "name" : "Morphtronic Staplen", "is_illegal" : false, "is_custom" : false, "text" : "? While in Attack Position: Your opponent cannot select another monster as an attack target. If this card is destroyed by battle, the monster that destroyed this card loses 300 ATK.\n? While in Defense Position: This card cannot be destroyed by battle. If this card is attacked, after damage calculation, select 1 face-up Attack Position monster your opponent controls. Change it to Defense Position and this card to Attack Position.", "images" : ["https://storage.googleapis.com/ygoprodeck.com/pics/2250266.jpg"], "type" : "Monster", "attribute" : "EARTH", "atk" : 1400, "species" : "Machine", "monster_type" : "", "is_pendulum" : false, "ability" : "", "has_effect" : true, "def" : 1000, "level" : 4, "is_tuner" : false}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "is_illegal": {"type": "boolean"}, "is_custom": {"type": "boolean"}, "text": {"type": "string"}, "images": {"type": "array", "items": {"type": "string"}}, "type": {"type": "string"}, "attribute": {"type": "string"}, "atk": {"type": "integer"}, "species": {"type": "string"}, "monster_type": {"type": "string"}, "is_pendulum": {"type": "boolean"}, "ability": {"type": "string"}, "has_effect": {"type": "boolean"}, "def": {"type": "integer"}, "level": {"type": "integer"}, "is_tuner": {"type": "boolean"}}, "required": ["id", "name", "is_illegal", "is_custom", "text", "images", "type", "attribute", "atk", "species", "monster_type", "is_pendulum", "ability", "has_effect", "def", "level", "is_tuner"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "tags", "title", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"directions" : ["Preheat grill for medium heat and lightly oil the grate.", "Stir mayonnaise, Parmesan cheese, garlic, red pepper flakes, paprika, salt, and pepper together in a large bowl. Add potatoes and onion; stir to coat completely.", "Arrange aluminum foil squares on a work surface and spray each with cooking spray. Divide potato mixture between the four squares. Fold aluminum foil over potato mixture and crimp edges together to form a secure pouch.", "Cook on the preheated grill until potatoes are tender, about 30 minutes."], "ingredients" : ["1 cup mayonnaise", "1/4 cup shredded Parmesan cheese", "3 cloves garlic, minced", "1/4 teaspoon red pepper flakes", "1/2 teaspoon paprika", "1/4 teaspoon salt", "1/4 teaspoon ground black pepper", "3 large baking potatoes, cut into 1/4-inch slices", "1 large sweet onion, sliced", "4 12x12-inch squares aluminum foil", "cooking spray"], "language" : "en-US", "source" : "allrecipes.com", "tags" : [], "title" : "Grilled Onions and Potatoes", "url" : "http://allrecipes.com/recipe/237883/grilled-onions-and-potatoes/"}
json_instruct
{"type": "object", "properties": {"directions": {"type": "array", "items": {"type": "string"}}, "ingredients": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "source": {"type": "string"}, "tags": {"type": "array", "items": {}}, "title": {"type": "string"}, "url": {"type": "string"}}, "required": ["directions", "ingredients", "language", "source", "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": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "object", "properties": {"sharedSymbols": {"type": "array", "items": {"type": "string"}}, "count": {"type": "integer"}, "type": {"type": "string"}}, "required": ["sharedSymbols", "count", "type"]}}, "required": ["dbId", "name", "children", "size", "symbols", "gallusOrth"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dbId" : "204626", "name" : "Hypusine synthesis from eIF5A-lysine", "children" : [], "size" : 1, "symbols" : ["EIF5A", "DOHH", "EIF5A", "EIF5A2", "EIF5A", "EIF5A2", "DHPS", "EIF5A2"], "gallusOrth" : {"sharedSymbols" : ["EIF5A", "DOHH", "EIF5A", "EIF5A2", "EIF5A", "EIF5A2", "DHPS", "EIF5A2"], "count" : 8, "type" : "Complete"}}
json_instruct
{"type": "object", "properties": {"dbId": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {}}, "size": {"type": "integer"}, "symbols": {"type": "array", "items": {"type": "string"}}, "gallusOrth": {"type": "object", "properties": {"sharedSymbols": {"type": "array", "items": {"type": "string"}}, "count": {"type": "integer"}, "type": {"type": "string"}}, "required": ["sharedSymbols", "count", "type"]}}, "required": ["dbId", "name", "children", "size", "symbols", "gallusOrth"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"title": {"type": "string"}, "outputUrl": {"type": "string"}, "inputUrl": {"type": "string"}, "manageUrl": {"type": "string"}, "publicKey": {"type": "string"}, "privateKey": {"type": "string"}, "deleteKey": {"type": "string"}}, "required": ["title", "outputUrl", "inputUrl", "manageUrl", "publicKey", "privateKey", "deleteKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Device Operation Log", "outputUrl" : "http://data.sparkfun.com/output/1nrAn4mpgqC4gxVQJnO4", "inputUrl" : "http://data.sparkfun.com/input/1nrAn4mpgqC4gxVQJnO4", "manageUrl" : "http://data.sparkfun.com/streams/1nrAn4mpgqC4gxVQJnO4", "publicKey" : "1nrAn4mpgqC4gxVQJnO4", "privateKey" : "0mvPmbzB7ZHd79Mlmnbd", "deleteKey" : "KVWYVNObeEsWMw3YkraW"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "outputUrl": {"type": "string"}, "inputUrl": {"type": "string"}, "manageUrl": {"type": "string"}, "publicKey": {"type": "string"}, "privateKey": {"type": "string"}, "deleteKey": {"type": "string"}}, "required": ["title", "outputUrl", "inputUrl", "manageUrl", "publicKey", "privateKey", "deleteKey"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nom" : "Montravers", "circ" : "3\u00e8me circonscription", "dpt" : "Deux-S\u00e8vres", "inscrits" : 238, "abs" : 124, "votants" : 114, "blancs" : 12, "nuls" : 4, "exp" : 98, "res" : [{"nuance" : "REM", "nom" : "M. Jean-Marie FIEVET", "voix" : 59}, {"nuance" : "LR", "nom" : "Mme V\u00e9ronique SCHAAF-GAUTHIER", "voix" : 39}]}
json_instruct
{"type": "object", "properties": {"nom": {"type": "string"}, "circ": {"type": "string"}, "dpt": {"type": "string"}, "inscrits": {"type": "integer"}, "abs": {"type": "integer"}, "votants": {"type": "integer"}, "blancs": {"type": "integer"}, "nuls": {"type": "integer"}, "exp": {"type": "integer"}, "res": {"type": "array", "items": {"type": "object", "properties": {"nuance": {"type": "string"}, "nom": {"type": "string"}, "voix": {"type": "integer"}}, "required": ["nuance", "nom", "voix"]}}}, "required": ["nom", "circ", "dpt", "inscrits", "abs", "votants", "blancs", "nuls", "exp", "res"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"dinosaur": {"type": "object", "properties": {"name": {"type": "string"}, "diet": {"type": "string"}, "period": {"type": "string"}, "weight": {"type": "integer"}, "armor": {"type": "boolean"}, "hybrid": {"type": "boolean"}}, "required": ["name", "diet", "period", "weight", "armor", "hybrid"]}}, "required": ["dinosaur"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"dinosaur" : {"name" : "Iguanodon bernissartensis", "diet" : "herbivore", "period" : "Jurassic", "weight" : 6600, "armor" : true, "hybrid" : false}}
json_instruct
{"type": "object", "properties": {"dinosaur": {"type": "object", "properties": {"name": {"type": "string"}, "diet": {"type": "string"}, "period": {"type": "string"}, "weight": {"type": "integer"}, "armor": {"type": "boolean"}, "hybrid": {"type": "boolean"}}, "required": ["name", "diet", "period", "weight", "armor", "hybrid"]}}, "required": ["dinosaur"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"date" : "2022-04-02", "total" : 7206, "delta" : 2, "version" : "1.0.1"}, {"date" : "2022-04-08", "total" : 7224, "delta" : 18, "version" : "1.0.1"}, {"date" : "2022-04-10", "total" : 7232, "delta" : 8, "version" : "1.0.1"}, {"date" : "2022-04-12", "total" : 7236, "delta" : 4, "version" : "1.0.1"}, {"date" : "2022-04-13", "total" : 7241, "delta" : 5, "version" : "1.0.1"}, {"date" : "2022-04-29", "total" : 7275, "delta" : 34, "version" : "1.0.1"}, {"date" : "2022-04-30", "total" : 7277, "delta" : 2, "version" : "1.0.1"}, {"date" : "2022-05-03", "total" : 7281, "delta" : 4, "version" : "1.0.1"}, {"date" : "2022-05-10", "total" : 7295, "delta" : 14, "version" : "1.0.1"}, {"date" : "2022-05-13", "total" : 7304, "delta" : 9, "version" : "1.0.1"}, {"date" : "2022-05-14", "total" : 7306, "delta" : 2, "version" : "1.0.1"}, {"date" : "2022-05-17", "total" : 7314, "delta" : 8, "version" : "1.0.1"}, {"date" : "2022-06-01", "total" : 7354, "delta" : 40, "version" : "1.0.1"}, {"date" : "2022-06-05", "total" : 7366, "delta" : 12, "version" : "1.0.1"}, {"date" : "2022-04-02", "total" : 3884, "delta" : 2, "version" : "1.0.5"}, {"date" : "2022-04-08", "total" : 3900, "delta" : 16, "version" : "1.0.5"}, {"date" : "2022-04-10", "total" : 3906, "delta" : 6, "version" : "1.0.5"}, {"date" : "2022-04-12", "total" : 3910, "delta" : 4, "version" : "1.0.5"}, {"date" : "2022-04-13", "total" : 3914, "delta" : 4, "version" : "1.0.5"}, {"date" : "2022-04-29", "total" : 3947, "delta" : 33, "version" : "1.0.5"}, {"date" : "2022-04-30", "total" : 3949, "delta" : 2, "version" : "1.0.5"}, {"date" : "2022-05-03", "total" : 3953, "delta" : 4, "version" : "1.0.5"}, {"date" : "2022-05-10", "total" : 3967, "delta" : 14, "version" : "1.0.5"}, {"date" : "2022-05-13", "total" : 3976, "delta" : 9, "version" : "1.0.5"}, {"date" : "2022-05-14", "total" : 3978, "delta" : 2, "version" : "1.0.5"}, {"date" : "2022-05-17", "total" : 3985, "delta" : 7, "version" : "1.0.5"}, {"date" : "2022-06-01", "total" : 4022, "delta" : 37, "version" : "1.0.5"}, {"date" : "2022-06-05", "total" : 4033, "delta" : 11, "version" : "1.0.5"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"date": {"type": "string"}, "total": {"type": "integer"}, "delta": {"type": "integer"}, "version": {"type": "string"}}, "required": ["date", "total", "delta", "version"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"timestamp" : 308, "object_list" : [{"position" : [6.77, 8.09], "id" : 51}, {"position" : [8.05, 8.83], "id" : 52}, {"position" : [12.59, 3.01], "id" : 56}, {"position" : [5.78, 3.51], "id" : 59}, {"position" : [5.63, 4.02], "id" : 60}], "frame" : 308, "size" : 5}
json_instruct
{"type": "object", "properties": {"timestamp": {"type": "integer"}, "object_list": {"type": "array", "items": {"type": "object", "properties": {"position": {"type": "array", "items": {"type": "number"}}, "id": {"type": "integer"}}, "required": ["position", "id"]}}, "frame": {"type": "integer"}, "size": {"type": "integer"}}, "required": ["timestamp", "object_list", "frame", "size"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0, 40.0, 41.0, 42.0, 43.0, 44.0, 45.0, 46.0, 47.0, 48.0, 49.0, 50.0, 51.0, 52.0, 53.0, 54.0, 55.0, 56.0, 57.0, 58.0, 59.0, 60.0, 61.0, 62.0, 63.0, 64.0, 65.0, 66.0, 67.0, 68.0, 69.0, 70.0, 71.0, 72.0, 73.0, 74.0, 75.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0, 93.0, 94.0, 95.0, 96.0, 97.0, 98.0, 99.0, 100.0], [11875328.0, 23414319.0, 35373365.0, 46538214.0, 59703433.0, 71000059.0, 81729893.0, 95838956.0, 110011756.0, 121253238.0, 139245306.0, 156941443.0, 156741879.0, 167804140.0, 180684622.0, 192180409.0, 211607631.0, 217363061.0, 267624506.0, 323242781.0, 264686333.0, 261702841.0, 278731046.0, 296569771.0, 313683969.0, 315685770.0, 317479233.0, 338347509.0, 337393332.0, 362822540.0, 372267627.0, 389464965.0, 413088924.0, 420312352.0, 424122755.0, 440266516.0, 454897560.0, 464944085.0, 470432643.0, 498980040.0, 489719367.0, 509420108.0, 522859099.0, 530255663.0, 533936504.0, 569833183.0, 565172017.0, 577855174.0, 605209586.0, 594153024.0, 625406566.0, 628811860.0, 635520287.0, 645806430.0, 655527904.0, 687906050.0, 687381509.0, 689240807.0, 700985897.0, 731715246.0, 733473679.0, 756183767.0, 763581919.0, 784939420.0, 784471630.0, 814075053.0, 813845063.0, 833844792.0, 834507833.0, 857265822.0, 858052845.0, 882521251.0, 893659843.0, 893775245.0, 912253150.0, 912443812.0, 941403511.0, 953795783.0, 954753445.0, 973233295.0, 972724288.0, 997856506.0, 1008224577.0, 1012782515.0, 1035156155.0, 1048134571.0, 1058508747.0, 1072464758.0, 1082488087.0, 1094976806.0, 1101917064.0, 1127757543.0, 1147607934.0, 1145251314.0, 1155917310.0, 1173155296.0, 1173403326.0, 1167877818.0, 1163953720.0, 1216226380.0]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "number"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema_version" : "1.2.0", "id" : "GHSA-gc2p-rgf7-p5g2", "modified" : "2022-05-01T07:01:59Z", "published" : "2022-05-01T07:01:59Z", "aliases" : ["CVE-2006-2733"], "details" : "membership.asp in Mini-Nuke 2.3 and earlier uses plaintext security codes, which allows remote attackers to register multiple times via automated scripts.", "severity" : [], "affected" : [], "references" : [{"type" : "ADVISORY", "url" : "https://nvd.nist.gov/vuln/detail/CVE-2006-2733"}, {"type" : "WEB", "url" : "http://secunia.com/advisories/20317"}, {"type" : "WEB", "url" : "http://securityreason.com/securityalert/1002"}, {"type" : "WEB", "url" : "http://www.nukedx.com/?getxpl=31"}, {"type" : "WEB", "url" : "http://www.nukedx.com/?viewdoc=31"}, {"type" : "WEB", "url" : "http://www.securityfocus.com/archive/1/435279/100/0/threaded"}], "database_specific" : {"cwe_ids" : [], "severity" : "MODERATE", "github_reviewed" : false}}
json_instruct
{"type": "object", "properties": {"schema_version": {"type": "string"}, "id": {"type": "string"}, "modified": {"type": "string"}, "published": {"type": "string"}, "aliases": {"type": "array", "items": {"type": "string"}}, "details": {"type": "string"}, "severity": {"type": "array", "items": {}}, "affected": {"type": "array", "items": {}}, "references": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}}, "database_specific": {"type": "object", "properties": {"cwe_ids": {"type": "array", "items": {}}, "severity": {"type": "string"}, "github_reviewed": {"type": "boolean"}}, "required": ["cwe_ids", "severity", "github_reviewed"]}}, "required": ["schema_version", "id", "modified", "published", "aliases", "details", "severity", "affected", "references", "database_specific"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"lat": {"type": "string"}, "lng": {"type": "string"}, "postcode": {"type": "string"}, "streets": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "distance": {"type": "integer"}}, "required": ["id", "name", "distance"]}}}, "required": ["lat", "lng", "postcode", "streets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"lat" : "-0.729133", "lng" : "52.409063", "postcode" : "NN16 9JA", "streets" : [{"id" : "24452868", "name" : "Pollard Street", "distance" : 154}, {"id" : "24452869", "name" : "Charles Street", "distance" : 79}, {"id" : "24470484", "name" : "Grafton Street", "distance" : 177}, {"id" : "24470485", "name" : "Sackville Street", "distance" : 132}, {"id" : "24470486", "name" : "Oakley Street", "distance" : 132}, {"id" : "92218848", "name" : "Malham Drive", "distance" : 751}, {"id" : "92218877", "name" : "Shaw Court", "distance" : 677}, {"id" : "92218906", "name" : "Talby Avenue", "distance" : 751}, {"id" : "92218993", "name" : "Severn Way", "distance" : 378}, {"id" : "92218998", "name" : "Avon Close", "distance" : 362}, {"id" : "92219002", "name" : "Thames Rise", "distance" : 356}, {"id" : "92219382", "name" : "The Gardens", "distance" : 109}, {"id" : "92219389", "name" : "North Field Close", "distance" : 203}, {"id" : "92219397", "name" : "Dyson Drive", "distance" : 135}, {"id" : "92219400", "name" : "Clarke Close", "distance" : 261}]}
json_instruct
{"type": "object", "properties": {"lat": {"type": "string"}, "lng": {"type": "string"}, "postcode": {"type": "string"}, "streets": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}, "distance": {"type": "integer"}}, "required": ["id", "name", "distance"]}}}, "required": ["lat", "lng", "postcode", "streets"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"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" : "Beaumont-sur-Sarthe", "dpt" : "Sarthe", "inscrits" : 1321, "abs" : 294, "votants" : 1027, "blancs" : 106, "nuls" : 29, "exp" : 892, "res" : [{"panneau" : "1", "voix" : 520}, {"panneau" : "2", "voix" : 372}]}
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#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"citations" : [{"textCitation" : "[See fsumconst on Metamath](http://us.metamath.org/mpegif/fsumconst.html)"}], "names" : ["fsumconst"], "language" : "METAMATH_SET_MM", "lookupTerms" : ["#T_cA", "#T_wcel", "#T_cfn", "#T_wa", "#T_cB", "#T_wcel", "#T_cc", "#T_wi", "#T_csu--1", "#T_vk", "#T_csu--2", "#T_cA", "#T_cB", "#T_wceq", "#T_chash", "#T_cfv", "#T_cA", "#T_cmul", "#T_cB", "#T_cA", "#T_vk", "#T_cB", "#T_vk"], "metaLanguage" : "METAMATH", "remarks" : " The sum of constant terms ( ` k ` is not free in ` A ` ). (Contributed by NM, 24-Dec-2005.) (Revised by Mario Carneiro, 24-Apr-2014.) ", "statement" : "fsumconst $p |- ( ( A e. Fin /\\ B e. CC ) -> sum_ k e. A B = ( ( # ` A ) x. B ) ) $.\n$d A k $.\n$d B k $."}
json_instruct
{"type": "object", "properties": {"citations": {"type": "array", "items": {"type": "object", "properties": {"textCitation": {"type": "string"}}, "required": ["textCitation"]}}, "names": {"type": "array", "items": {"type": "string"}}, "language": {"type": "string"}, "lookupTerms": {"type": "array", "items": {"type": "string"}}, "metaLanguage": {"type": "string"}, "remarks": {"type": "string"}, "statement": {"type": "string"}}, "required": ["citations", "names", "language", "lookupTerms", "metaLanguage", "remarks", "statement"], "$schema": "http://json-schema.org/draft-07/schema#"}