input
stringlengths
159
2.05k
output
stringlengths
5
10.3k
task
stringclasses
1 value
schema
stringlengths
100
1.99k
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"filter[date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}}, "required": ["required", "type", "format"]}, "filter[any_date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[from_number]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[to_number]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[type]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["required", "type", "enum"]}, "order": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["required", "type", "enum", "default"]}, "page": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}, "default": {"type": "integer"}}, "required": ["required", "type", "format", "default"]}, "per_page": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["required", "type", "format", "minimum", "maximum", "default"]}}, "required": ["filter[date]", "filter[any_date]", "filter[from_number]", "filter[to_number]", "filter[type]", "order", "page", "per_page"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "object", "properties" : {"filter[date]" : {"required" : false, "type" : "string", "format" : "date"}, "filter[any_date]" : {"required" : false, "type" : "boolean"}, "filter[from_number]" : {"required" : false, "type" : "string"}, "filter[to_number]" : {"required" : false, "type" : "string"}, "filter[type]" : {"required" : false, "type" : "string", "enum" : ["voicemail", "missed", "blocked", "accepted"]}, "order" : {"required" : false, "type" : "string", "enum" : ["asc", "desc"], "default" : "desc"}, "page" : {"required" : false, "type" : "integer", "format" : "int32", "default" : 1}, "per_page" : {"required" : false, "type" : "integer", "format" : "int32", "minimum" : 0, "maximum" : 100, "default" : 25}}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "properties": {"type": "object", "properties": {"filter[date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}}, "required": ["required", "type", "format"]}, "filter[any_date]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[from_number]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[to_number]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}}, "required": ["required", "type"]}, "filter[type]": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}}, "required": ["required", "type", "enum"]}, "order": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "enum": {"type": "array", "items": {"type": "string"}}, "default": {"type": "string"}}, "required": ["required", "type", "enum", "default"]}, "page": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}, "default": {"type": "integer"}}, "required": ["required", "type", "format", "default"]}, "per_page": {"type": "object", "properties": {"required": {"type": "boolean"}, "type": {"type": "string"}, "format": {"type": "string"}, "minimum": {"type": "integer"}, "maximum": {"type": "integer"}, "default": {"type": "integer"}}, "required": ["required", "type", "format", "minimum", "maximum", "default"]}}, "required": ["filter[date]", "filter[any_date]", "filter[from_number]", "filter[to_number]", "filter[type]", "order", "page", "per_page"]}}, "required": ["type", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "VSCO Film", "description" : "Film-like presets for Lightroom and Photoshop.", "url" : "http://vsco.co/store/film"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "url": {"type": "string"}}, "required": ["name", "description", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "sideEffects": {"type": "boolean"}, "author": {"type": "string"}, "license": {"type": "string"}, "access": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@lifaon/rx-js-light": {"type": "string"}}, "required": ["@lifaon/rx-js-light"]}}, "required": ["name", "version", "description", "repository", "keywords", "sideEffects", "author", "license", "access", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@lifaon/rx-i18n", "version" : "2.1.0", "description" : "Description", "repository" : {"type" : "git", "url" : "https://github.com/lifaon74/rx-i18n"}, "keywords" : ["rx-js-light", "i18n", "reactive", "date", "currency", "formatter"], "sideEffects" : false, "author" : "Valentin Richard", "license" : "MIT", "access" : "public", "dependencies" : {"@lifaon/rx-js-light" : "2.1.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "sideEffects": {"type": "boolean"}, "author": {"type": "string"}, "license": {"type": "string"}, "access": {"type": "string"}, "dependencies": {"type": "object", "properties": {"@lifaon/rx-js-light": {"type": "string"}}, "required": ["@lifaon/rx-js-light"]}}, "required": ["name", "version", "description", "repository", "keywords", "sideEffects", "author", "license", "access", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpspec/phpspec": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["phpspec/phpspec", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Stichoza\\Skype\\": {"type": "string"}}, "required": ["Stichoza\\Skype\\"]}, "psr-4": {"type": "object", "properties": {"Stichoza\\Skype\\": {"type": "string"}}, "required": ["Stichoza\\Skype\\"]}}, "required": ["psr-0", "psr-4"]}}, "required": ["name", "description", "keywords", "license", "homepage", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "stichoza/skype-status-php", "description" : "Get Skype user's online status", "keywords" : ["skype", "status", "php", "online", "offline"], "license" : "MIT", "homepage" : "http://github.com/Stichoza/skype-status-php", "authors" : [{"name" : "Levan Velijanashvili", "email" : "[email protected]"}], "require" : {"php" : ">=5.3.29"}, "require-dev" : {"phpspec/phpspec" : "~2.0", "phpunit/phpunit" : "~3.7"}, "autoload" : {"psr-0" : {"Stichoza\\Skype\\" : "src/"}, "psr-4" : {"Stichoza\\Skype\\" : "src/Stichoza/Skype/"}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "keywords": {"type": "array", "items": {"type": "string"}}, "license": {"type": "string"}, "homepage": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "require": {"type": "object", "properties": {"php": {"type": "string"}}, "required": ["php"]}, "require-dev": {"type": "object", "properties": {"phpspec/phpspec": {"type": "string"}, "phpunit/phpunit": {"type": "string"}}, "required": ["phpspec/phpspec", "phpunit/phpunit"]}, "autoload": {"type": "object", "properties": {"psr-0": {"type": "object", "properties": {"Stichoza\\Skype\\": {"type": "string"}}, "required": ["Stichoza\\Skype\\"]}, "psr-4": {"type": "object", "properties": {"Stichoza\\Skype\\": {"type": "string"}}, "required": ["Stichoza\\Skype\\"]}}, "required": ["psr-0", "psr-4"]}}, "required": ["name", "description", "keywords", "license", "homepage", "authors", "require", "require-dev", "autoload"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "birthYear": {"type": "integer"}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {"type": "object", "properties": {"era": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["era", "id", "name"]}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "birthYear", "date", "death", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"activePlaceCount" : 0, "birth" : {"place" : {"name" : "Chemnitz, Deutschland", "placeName" : "Chemnitz", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1884}}, "birthYear" : 1884, "date" : "1884\u20131976", "death" : {"place" : {"name" : "Berlin, Deutschland", "placeName" : "Berlin", "placeType" : "inhabited_place"}, "time" : {"startYear" : 1976}}, "fc" : "Karl Schmidt-Rottluff", "gender" : "Male", "id" : 1904, "mda" : "Schmidt-Rottluff, Karl", "movements" : [{"era" : {"id" : 8, "name" : "20th century 1900-1945"}, "id" : 296, "name" : "Br\u00fccke"}, {"era" : {"id" : 8, "name" : "20th century 1900-1945"}, "id" : 305, "name" : "Expressionism"}, {"era" : {"id" : 8, "name" : "20th century 1900-1945"}, "id" : 308, "name" : "German Expressionism"}], "startLetter" : "S", "totalWorks" : 4, "url" : "http://www.tate.org.uk/art/artists/karl-schmidt-rottluff-1904"}
json_instruct
{"type": "object", "properties": {"activePlaceCount": {"type": "integer"}, "birth": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "birthYear": {"type": "integer"}, "date": {"type": "string"}, "death": {"type": "object", "properties": {"place": {"type": "object", "properties": {"name": {"type": "string"}, "placeName": {"type": "string"}, "placeType": {"type": "string"}}, "required": ["name", "placeName", "placeType"]}, "time": {"type": "object", "properties": {"startYear": {"type": "integer"}}, "required": ["startYear"]}}, "required": ["place", "time"]}, "fc": {"type": "string"}, "gender": {"type": "string"}, "id": {"type": "integer"}, "mda": {"type": "string"}, "movements": {"type": "array", "items": {"type": "object", "properties": {"era": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["era", "id", "name"]}}, "startLetter": {"type": "string"}, "totalWorks": {"type": "integer"}, "url": {"type": "string"}}, "required": ["activePlaceCount", "birth", "birthYear", "date", "death", "fc", "gender", "id", "mda", "movements", "startLetter", "totalWorks", "url"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
{".js" : "29060c6cba9b41bea345146de37c0b5c31dbcb4e.js"}
json_instruct
{"type": "object", "properties": {".js": {"type": "string"}}, "required": [".js"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"AWSTemplateFormatVersion": {"type": "string"}, "Description": {"type": "string"}, "Parameters": {"type": "object", "properties": {"env": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": ["Type"]}, "vpc": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": ["Type"]}, "zoneA": {"type": "object", "properties": {"Type": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Type", "Description"]}, "zoneB": {"type": "object", "properties": {"Type": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Type", "Description"]}}, "required": ["env", "vpc", "zoneA", "zoneB"]}, "Resources": {"type": "object", "properties": {"testSubnetZoneA": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AvailabilityZone": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}}, "required": ["AvailabilityZone", "CidrBlock", "VpcId"]}}, "required": ["Type", "Properties"]}, "testSubnetZoneB": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AvailabilityZone": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}}, "required": ["AvailabilityZone", "CidrBlock", "VpcId"]}}, "required": ["Type", "Properties"]}}, "required": ["testSubnetZoneA", "testSubnetZoneB"]}}, "required": ["AWSTemplateFormatVersion", "Description", "Parameters", "Resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"AWSTemplateFormatVersion" : "2010-09-09", "Description" : "test template for cnfassist - does nothing much", "Parameters" : {"env" : {"Type" : "String"}, "vpc" : {"Type" : "String"}, "zoneA" : {"Type" : "String", "Description" : "::CFN_ZONE_A"}, "zoneB" : {"Type" : "String", "Description" : "::CFN_ZONE_B"}}, "Resources" : {"testSubnetZoneA" : {"Type" : "AWS::EC2::Subnet", "Properties" : {"AvailabilityZone" : {"Ref" : "zoneA"}, "CidrBlock" : "10.0.10.0/24", "VpcId" : {"Ref" : "vpc"}}}, "testSubnetZoneB" : {"Type" : "AWS::EC2::Subnet", "Properties" : {"AvailabilityZone" : {"Ref" : "zoneB"}, "CidrBlock" : "10.0.11.0/24", "VpcId" : {"Ref" : "vpc"}}}}}
json_instruct
{"type": "object", "properties": {"AWSTemplateFormatVersion": {"type": "string"}, "Description": {"type": "string"}, "Parameters": {"type": "object", "properties": {"env": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": ["Type"]}, "vpc": {"type": "object", "properties": {"Type": {"type": "string"}}, "required": ["Type"]}, "zoneA": {"type": "object", "properties": {"Type": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Type", "Description"]}, "zoneB": {"type": "object", "properties": {"Type": {"type": "string"}, "Description": {"type": "string"}}, "required": ["Type", "Description"]}}, "required": ["env", "vpc", "zoneA", "zoneB"]}, "Resources": {"type": "object", "properties": {"testSubnetZoneA": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AvailabilityZone": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}}, "required": ["AvailabilityZone", "CidrBlock", "VpcId"]}}, "required": ["Type", "Properties"]}, "testSubnetZoneB": {"type": "object", "properties": {"Type": {"type": "string"}, "Properties": {"type": "object", "properties": {"AvailabilityZone": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}, "CidrBlock": {"type": "string"}, "VpcId": {"type": "object", "properties": {"Ref": {"type": "string"}}, "required": ["Ref"]}}, "required": ["AvailabilityZone", "CidrBlock", "VpcId"]}}, "required": ["Type", "Properties"]}}, "required": ["testSubnetZoneA", "testSubnetZoneB"]}}, "required": ["AWSTemplateFormatVersion", "Description", "Parameters", "Resources"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08" : [2.9193998139064925e-11, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], "arrbool" : true}
json_instruct
{"type": "object", "properties": {"DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08": {"type": "array", "items": {"type": "number"}}, "arrbool": {"type": "boolean"}}, "required": ["DTDproc_z0p0003_bw100_1.05<mwd<1.15_3e-09<mdot<3e-08", "arrbool"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "actions": {"type": "array", "items": {"type": "string"}}, "struggles": {"type": "array", "items": {"type": "string"}}, "employment_types": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "online": {"type": "boolean"}, "locations": {"type": "array", "items": {"type": "string"}}, "companies": {"type": "array", "items": {"type": "string"}}, "workers": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "array", "items": {"type": "string"}}, "latlngs": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "addresses": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "date", "sources", "actions", "struggles", "employment_types", "description", "online", "locations", "companies", "workers", "tags", "author", "latlngs", "addresses"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 489, "date" : "2021/10/20", "sources" : ["https://www.nytimes.com/2021/10/20/business/media/netflix-protest-dave-chappelle.html"], "actions" : ["protest", "strike"], "struggles" : ["discrimination", "ethics"], "employment_types" : ["white collar workers", "inhouse workers"], "description" : "Employees walked out of a Netflix building in Los Angeles to protest Dave Chappelle\u2019s special, joining supporters and activists who were already rallying. Other Netflix employees stopped working that day as a virtual walkout. #NetflixWalkOut also trended on Twitter. In response, Netflix issued a statement expressing support of the walkout while also remaining supportive of Chappelle.", "online" : true, "locations" : ["los angeles-california-usa"], "companies" : ["netflix"], "workers" : 125, "tags" : ["lgbtq", "online action", "politics"], "author" : ["wynniechan"], "latlngs" : [[34.0976547, -118.3164863]], "addresses" : ["Netflix at Sunset Bronson Studios, West Sunset Boulevard, Hollywood, Los Angeles, Los Angeles County, California, 90028-5420, United States"]}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "date": {"type": "string"}, "sources": {"type": "array", "items": {"type": "string"}}, "actions": {"type": "array", "items": {"type": "string"}}, "struggles": {"type": "array", "items": {"type": "string"}}, "employment_types": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "online": {"type": "boolean"}, "locations": {"type": "array", "items": {"type": "string"}}, "companies": {"type": "array", "items": {"type": "string"}}, "workers": {"type": "integer"}, "tags": {"type": "array", "items": {"type": "string"}}, "author": {"type": "array", "items": {"type": "string"}}, "latlngs": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}, "addresses": {"type": "array", "items": {"type": "string"}}}, "required": ["id", "date", "sources", "actions", "struggles", "employment_types", "description", "online", "locations", "companies", "workers", "tags", "author", "latlngs", "addresses"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"autorenew_service_terminate": {"type": "string"}, "autorenew_service_terminate_cancel": {"type": "string"}}, "required": ["autorenew_service_terminate", "autorenew_service_terminate_cancel"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"autorenew_service_terminate" : "Conferma", "autorenew_service_terminate_cancel" : "Annulla"}
json_instruct
{"type": "object", "properties": {"autorenew_service_terminate": {"type": "string"}, "autorenew_service_terminate_cancel": {"type": "string"}}, "required": ["autorenew_service_terminate", "autorenew_service_terminate_cancel"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "express": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["bower", "express", "serve-static"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "bayesianas", "version" : "1.0.0", "description" : "Proyecto Sistemas Expertos UAGRM", "main" : "index.js", "scripts" : {"start" : "node index.js", "postinstall" : "cd src && ../node_modules/.bin/bower install --allow-root"}, "repository" : {"type" : "git", "url" : "git+https://github.com/mauriballes/bayesianas-expertos.git"}, "keywords" : ["bayesianas"], "author" : "Mauricio Ballesteros", "license" : "MIT", "bugs" : {"url" : "https://github.com/mauriballes/bayesianas-expertos/issues"}, "homepage" : "https://github.com/mauriballes/bayesianas-expertos#readme", "dependencies" : {"bower" : "^1.8.2", "express" : "^4.16.2", "serve-static" : "^1.13.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "postinstall": {"type": "string"}}, "required": ["start", "postinstall"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"bower": {"type": "string"}, "express": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["bower", "express", "serve-static"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "type", "sizes", "purpose"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "theme_color", "background_color"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"short_name" : "Sahil Rathee || Rttss", "name" : "RTTSS Portfolio APP PWA", "icons" : [{"src" : "./logo.svg", "type" : "image/svg", "sizes" : "165x165", "purpose" : "any"}], "start_url" : ".", "display" : "standalone", "theme_color" : "#000000", "background_color" : "#ffffff"}
json_instruct
{"type": "object", "properties": {"short_name": {"type": "string"}, "name": {"type": "string"}, "icons": {"type": "array", "items": {"type": "object", "properties": {"src": {"type": "string"}, "type": {"type": "string"}, "sizes": {"type": "string"}, "purpose": {"type": "string"}}, "required": ["src", "type", "sizes", "purpose"]}}, "start_url": {"type": "string"}, "display": {"type": "string"}, "theme_color": {"type": "string"}, "background_color": {"type": "string"}}, "required": ["short_name", "name", "icons", "start_url", "display", "theme_color", "background_color"], "$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": {"server": {"type": "string"}, "client": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["server", "client", "dev", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "async-waterfall": {"type": "string"}, "bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dev": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "os": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "passport-local": {"type": "string"}, "path": {"type": "string"}}, "required": ["async", "async-waterfall", "bcryptjs", "body-parser", "cors", "dev", "dotenv", "express", "mongoose", "multer", "nodemailer", "os", "passport", "passport-jwt", "passport-local", "path"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "backend", "version" : "2.0.0", "description" : "backend for shpitto me", "main" : "server/index.js", "scripts" : {"server" : "nodemon server/index.js", "client" : "cd frontend && npm run start", "dev" : "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["peer-to-peer-shopping", "react", "node", "mongo"], "author" : "sabine gottfried, nacho merino, laith massoud, tarek alkhatib, orwa houry", "license" : "ISC", "dependencies" : {"async" : "^2.6.1", "async-waterfall" : "^0.1.5", "bcryptjs" : "^2.4.3", "body-parser" : "^1.18.2", "cors" : "^2.8.4", "dev" : "^0.1.3", "dotenv" : "^5.0.1", "express" : "^4.16.3", "mongoose" : "^5.0.11", "multer" : "^1.3.0", "nodemailer" : "^4.6.5", "os" : "^0.1.1", "passport" : "^0.4.0", "passport-jwt" : "^4.0.0", "passport-local" : "^1.0.0", "path" : "^0.12.7"}, "devDependencies" : {"concurrently" : "^3.5.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"server": {"type": "string"}, "client": {"type": "string"}, "dev": {"type": "string"}, "test": {"type": "string"}}, "required": ["server", "client", "dev", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "async-waterfall": {"type": "string"}, "bcryptjs": {"type": "string"}, "body-parser": {"type": "string"}, "cors": {"type": "string"}, "dev": {"type": "string"}, "dotenv": {"type": "string"}, "express": {"type": "string"}, "mongoose": {"type": "string"}, "multer": {"type": "string"}, "nodemailer": {"type": "string"}, "os": {"type": "string"}, "passport": {"type": "string"}, "passport-jwt": {"type": "string"}, "passport-local": {"type": "string"}, "path": {"type": "string"}}, "required": ["async", "async-waterfall", "bcryptjs", "body-parser", "cors", "dev", "dotenv", "express", "mongoose", "multer", "nodemailer", "os", "passport", "passport-jwt", "passport-local", "path"]}, "devDependencies": {"type": "object", "properties": {"concurrently": {"type": "string"}}, "required": ["concurrently"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : 1804082001, "parent" : 1804082, "name" : "LABUHAN RATU EMPAT", "latitude" : null, "longitude" : null, "postal" : [34375], "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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": "number"}, "min_score": {"type": "number"}, "AP": {"type": "number"}, "AP50": {"type": "number"}, "AP75": {"type": "number"}, "APs": {"type": "number"}, "APm": {"type": "number"}, "APl": {"type": "number"}}, "required": ["quality", "model", "elapsed", "tp", "fp", "precision", "recall", "f1", "min_score", "AP", "AP50", "AP75", "APs", "APm", "APl"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"quality" : 26, "model" : "R101", "elapsed" : 670.0123343467712, "tp" : 42856, "fp" : 363572, "precision" : 0.10544549096026848, "recall" : 1.1794688317049677, "f1" : 0.19358437809844092, "min_score" : 0.05000061169266701, "AP" : 32.262312215677944, "AP50" : 50.108849349474674, "AP75" : 34.10273257558467, "APs" : 15.376029584741161, "APm" : 35.65956191805681, "APl" : 43.74828598547148}
json_instruct
{"type": "object", "properties": {"quality": {"type": "integer"}, "model": {"type": "string"}, "elapsed": {"type": "number"}, "tp": {"type": "integer"}, "fp": {"type": "integer"}, "precision": {"type": "number"}, "recall": {"type": "number"}, "f1": {"type": "number"}, "min_score": {"type": "number"}, "AP": {"type": "number"}, "AP50": {"type": "number"}, "AP75": {"type": "number"}, "APs": {"type": "number"}, "APm": {"type": "number"}, "APl": {"type": "number"}}, "required": ["quality", "model", "elapsed", "tp", "fp", "precision", "recall", "f1", "min_score", "AP", "AP50", "AP75", "APs", "APm", "APl"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1975, 7], [1977, 5], [1978, 7], [1979, 6], [1980, 12], [1981, 10], [1982, 9], [1983, 8], [1984, 12], [1985, 23], [1986, 14], [1987, 17], [1988, 14], [1989, 22], [1990, 15], [1991, 12], [1992, 9], [1993, 8], [1994, 5], [1995, 12], [1997, 5], [1999, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"type": {"type": "string"}, "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"]}, "properties": {"type": "object", "properties": {"geography": {"type": "string"}, "geometry": {"type": "string"}, "reference": {"type": "string"}, "organisation": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geography", "geometry", "reference", "organisation", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[-2.00607, 50.656066], [-2.00606, 50.655896], [-2.006826, 50.655599], [-2.00727, 50.656232], [-2.006742, 50.656322], [-2.006489, 50.656399], [-2.00607, 50.656066]]]]}, "properties" : {"geography" : "conservation-area:7", "geometry" : "MULTIPOLYGON (((-2.006070 50.656066,-2.006060 50.655896,-2.006826 50.655599,-2.007270 50.656232,-2.006742 50.656322,-2.006489 50.656399,-2.006070 50.656066)))", "reference" : "7", "organisation" : "local-authority-eng:PUR", "name" : "Dorset Heaths (Purbeck & Wareham) & Studland Dunes", "slug" : "/conservation-area/local-authority-eng/PUR/7", "entity" : 473548, "entry-date" : "2020-09-11"}}
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": "array", "items": {"type": "number"}}}}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"geography": {"type": "string"}, "geometry": {"type": "string"}, "reference": {"type": "string"}, "organisation": {"type": "string"}, "name": {"type": "string"}, "slug": {"type": "string"}, "entity": {"type": "integer"}, "entry-date": {"type": "string"}}, "required": ["geography", "geometry", "reference", "organisation", "name", "slug", "entity", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$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" : "1110061018", "district_id" : "1110061", "name" : "GEUDONG GEUDONG"}
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": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"definition" : "Apple chlorotic leaf spot virus isolate JB, complete genome.", "virus_id" : "54a508b1", "isolate_id" : "3e36ijd3", "_id" : "KC935956", "host" : "Pyrus bretschneideri cv. Jingbai (pear)"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"definition": {"type": "string"}, "virus_id": {"type": "string"}, "isolate_id": {"type": "string"}, "_id": {"type": "string"}, "host": {"type": "string"}}, "required": ["definition", "virus_id", "isolate_id", "_id", "host"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"video": {"type": "string"}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "releasedate": {"type": "integer"}, "thumbnail": {"type": "string"}}, "required": ["video", "season", "episode", "title", "description", "releasedate", "thumbnail"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"video" : "//cdn.unusann.us/01/292.mp4", "season" : 1, "episode" : 292, "title" : "Was 2020 a Bad Year for Unus Annus?", "description" : "", "releasedate" : 1598814000000, "thumbnail" : "//cdn.unusann.us/thumbnails/01/292.webp"}
json_instruct
{"type": "object", "properties": {"video": {"type": "string"}, "season": {"type": "integer"}, "episode": {"type": "integer"}, "title": {"type": "string"}, "description": {"type": "string"}, "releasedate": {"type": "integer"}, "thumbnail": {"type": "string"}}, "required": ["video", "season", "episode", "title", "description", "releasedate", "thumbnail"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "integer"}}, "pts": {"type": "integer"}, "ptsCount": {"type": "integer"}, "_constructor": {"type": "string"}}, "required": ["messages", "pts", "ptsCount", "_constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"messages" : [0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "pts" : 0, "ptsCount" : 0, "_constructor" : "updateReadMessagesContents#68c13933"}
json_instruct
{"type": "object", "properties": {"messages": {"type": "array", "items": {"type": "integer"}}, "pts": {"type": "integer"}, "ptsCount": {"type": "integer"}, "_constructor": {"type": "string"}}, "required": ["messages", "pts", "ptsCount", "_constructor"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"title" : "Reply MMS using Twilio", "type" : "server"}
json_instruct
{"type": "object", "properties": {"title": {"type": "string"}, "type": {"type": "string"}}, "required": ["title", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"191709026113945600": {"type": "string"}, "425037168914726923": {"type": "string"}, "229682106882719745": {"type": "string"}, "455200191545344000": {"type": "string"}, "284102283027939328": {"type": "string"}, "311689136496967703": {"type": "string"}, "216708683290247168": {"type": "string"}, "222715877533941761": {"type": "string"}, "288799940468146178": {"type": "string"}, "484826652157935648": {"type": "string"}, "288585278724112386": {"type": "string"}, "341992792463245312": {"type": "string"}, "425581560025186304": {"type": "string"}, "157588494460518400": {"type": "string"}}, "required": ["191709026113945600", "425037168914726923", "229682106882719745", "455200191545344000", "284102283027939328", "311689136496967703", "216708683290247168", "222715877533941761", "288799940468146178", "484826652157935648", "288585278724112386", "341992792463245312", "425581560025186304", "157588494460518400"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"191709026113945600" : "4:5:22:OD04IzMyMDA:24:XShadowWizardX:26:1919857", "425037168914726923" : "4:4:22:UGVwcGVyMzYwIzE1MDg:24:Pepper360:26:5197164", "229682106882719745" : "4:4:22:T2N0ZXJhY3QjMzA2Nw:24:Octeract:26:2004270", "455200191545344000" : "4:3:22:UGFya3kjNDM3Mw:24:Parky4373:26:6429626", "284102283027939328" : "4:3:22:QVg3NTIwIzgwMjM:24:AX7520:26:1046730", "311689136496967703" : "4:3:22:RHlzYmVsaWVmIzM0NDA:24: Dysbelief :26:5414397", "216708683290247168" : "4:3:22:Sm91Y2EjOTQwOA:24:Jouca:26:7026949", "222715877533941761" : "4:3:22:TGV2aWF4IzM4Mzc:24:Leviax:26:457567", "288799940468146178" : "4:2:22:Q3JlYXRvclRheSMwOTgy:24:CreatorTay:26:362577", "484826652157935648" : "4:2:22:RHVEZTM3WXQjMzQ5MQ:24:DuDe37Yt:26:8476217", "288585278724112386" : "4:2:22:SXR6TGlnaHRuaW5nR0QjOTU3OQ:24:ItzLightningGD:26:6730874", "341992792463245312" : "4:2:22:4p2kTWljaGVsbGXinaQjOTE5MQ:24:ItzMichele:26:700718", "425581560025186304" : "4:2:22:TWlzc3RpZSDimaEjNjM4NA:24:Misstie:26:7532428", "157588494460518400" : "4:2:22:dW5ubiMxMDkx:24:unnn:26:97973"}
json_instruct
{"type": "object", "properties": {"191709026113945600": {"type": "string"}, "425037168914726923": {"type": "string"}, "229682106882719745": {"type": "string"}, "455200191545344000": {"type": "string"}, "284102283027939328": {"type": "string"}, "311689136496967703": {"type": "string"}, "216708683290247168": {"type": "string"}, "222715877533941761": {"type": "string"}, "288799940468146178": {"type": "string"}, "484826652157935648": {"type": "string"}, "288585278724112386": {"type": "string"}, "341992792463245312": {"type": "string"}, "425581560025186304": {"type": "string"}, "157588494460518400": {"type": "string"}}, "required": ["191709026113945600", "425037168914726923", "229682106882719745", "455200191545344000", "284102283027939328", "311689136496967703", "216708683290247168", "222715877533941761", "288799940468146178", "484826652157935648", "288585278724112386", "341992792463245312", "425581560025186304", "157588494460518400"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"created_by": {"type": "string"}, "formats": {"type": "object", "properties": {"txt": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "string"}}, "required": ["path", "filename", "content_type"]}, "original": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "string"}}, "required": ["path", "filename", "content_type"]}}, "required": ["txt", "original"]}}, "required": ["created_by", "formats"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"created_by" : "a.person", "formats" : {"txt" : {"path" : "app/12345/v001/converted.txt", "filename" : "converted.txt", "content_type" : "text/plain"}, "original" : {"path" : "app/12345/v001/original", "filename" : "original", "content_type" : "application/msword"}}}
json_instruct
{"type": "object", "properties": {"created_by": {"type": "string"}, "formats": {"type": "object", "properties": {"txt": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "string"}}, "required": ["path", "filename", "content_type"]}, "original": {"type": "object", "properties": {"path": {"type": "string"}, "filename": {"type": "string"}, "content_type": {"type": "string"}}, "required": ["path", "filename", "content_type"]}}, "required": ["txt", "original"]}}, "required": ["created_by", "formats"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Hippocrates University", "alt_name" : "Universidad Hip\u00f3crates", "country" : "Mexico", "state" : null, "address" : {"street" : "Av. Andr\u00e9s de Urdaneta No. 360, y M. L\u00f3pez de Legazpi No. 15, Fracc. Hornos", "city" : "Acapulco de Ju\u00e1rez", "province" : "Guerrero", "postal_code" : "39350"}, "contact" : {"telephone" : "+52(744) 485-79-91", "website" : "http://www.uhipocrates.edu.mx", "email" : "[email protected]", "fax" : "+52(744) 485-33-67"}, "funding" : "Private", "languages" : null, "academic_year" : null, "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "null"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "string"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "string"}, "languages": {"type": "null"}, "academic_year": {"type": "null"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$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"}, "code": {"type": "string"}, "ldc": {"type": "array", "items": {}}, "constructores": {"type": "array", "items": {"type": "object", "properties": {"nombre": {"type": "string"}, "description": {"type": "string"}}, "required": ["nombre", "description"]}}, "metodos": {"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"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"description" : "", "code" : "", "ldc" : [], "constructores" : [{"nombre" : "Formatter", "description" : ""}], "metodos" : [{"nombre" : "format", "description" : "", "parametros" : [{"nombre" : "LogRecord record", "description" : ""}]}, {"nombre" : "formatMessage", "description" : "", "parametros" : [{"nombre" : "LogRecord record", "description" : ""}]}, {"nombre" : "getHead", "description" : "", "parametros" : [{"nombre" : "Handler h", "description" : ""}]}, {"nombre" : "getTail", "description" : "", "parametros" : [{"nombre" : "Handler h", "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"}}, "required": ["nombre", "description"]}}, "metodos": {"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"]}}}, "required": ["description", "code", "ldc", "constructores", "metodos"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "techreborn:block/machines/energy/lsu_storage"}}}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"feedstocks" : ["r-tsclust"]}
json_instruct
{"type": "object", "properties": {"feedstocks": {"type": "array", "items": {"type": "string"}}}, "required": ["feedstocks"], "$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"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPath": {"type": "string"}, "releasenote": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "url", "license", "tags", "description", "version", "classPath", "releasenote", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "unit2", "url" : "https://github.com/njuneau/Unit2", "license" : "BSD", "tags" : ["utility", "test"], "description" : "A modification of Haxe's original unit testing framework", "version" : "1.0.0-beta.1", "classPath" : "src/main/haxe", "releasenote" : "Initial release", "contributors" : ["njuneau"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "url": {"type": "string"}, "license": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "description": {"type": "string"}, "version": {"type": "string"}, "classPath": {"type": "string"}, "releasenote": {"type": "string"}, "contributors": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "url", "license", "tags", "description", "version", "classPath", "releasenote", "contributors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"prefix": {"type": "string"}, "roles": {"type": "string"}}, "required": ["prefix", "roles"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"prefix" : "sysinfo", "roles" : ""}
json_instruct
{"type": "object", "properties": {"prefix": {"type": "string"}, "roles": {"type": "string"}}, "required": ["prefix", "roles"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[1, 2, 4, 5]
json_instruct
{"type": "array", "items": {"type": "integer"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031106": {"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": ["E01031106"]}, "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" : {"E01031106" : {"type" : "GeometryCollection", "crs" : {"type" : "name", "properties" : {"name" : "urn:ogc:def:crs:OGC:1.3:CRS84"}}, "geometries" : [{"type" : "Polygon", "properties" : {"OA11CD" : "E00158559", "LAD11CD" : "E07000219"}, "arcs" : [[0, 1, 2]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158560", "LAD11CD" : "E07000219"}, "arcs" : [[-3, 3, 4, 5]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158561", "LAD11CD" : "E07000219"}, "arcs" : [[-5, 6, 7, 8]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158578", "LAD11CD" : "E07000219"}, "arcs" : [[9, -8, 10]]}, {"type" : "Polygon", "properties" : {"OA11CD" : "E00158580", "LAD11CD" : "E07000219"}, "arcs" : [[11, -11, -7, -4, -2]]}]}}, "arcs" : [[[5064, 0], [-1152, 680], [-1868, 2113]], [[2044, 2793], [200, 298], [774, 151], [174, 685], [830, -254]], [[4022, 3673], [85, -2444], [249, -129], [-165, -261], [703, -126], [170, -713]], [[4022, 3673], [15, 375], [705, 39], [296, 585]], [[5038, 4672], [713, -339], [1077, 641]], [[6828, 4974], [-31, -495], [199, -4293], [-1932, -186]], [[5038, 4672], [-318, 374], [-850, 110]], [[3870, 5156], [522, 456], [1722, -200], [404, 289], [-231, 500], [-651, -12], [-552, 403], [-229, 799], [1526, 1481], [-90, 356]], [[6291, 9228], [228, 764], [1236, -468], [-849, -3368], [595, 190], [465, 683], [1092, -1084], [865, -312], [76, -368], [-3171, -291]], [[3494, 4980], [-482, 797], [71, 1730], [362, 823], [627, 362], [-225, 973], [342, 334], [714, -740], [1388, -31]], [[3870, 5156], [-376, -176]], [[2044, 2793], [-898, 946], [-1146, 1058], [3494, 183]]], "transform" : {"scale" : [1.751513129279422e-06, 9.401712124877331e-07], "translate" : [-1.501085419523599, 52.47451627371157]}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "objects": {"type": "object", "properties": {"E01031106": {"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": ["E01031106"]}, "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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"code" : "TRSAT1", "lang" : "en", "description" : null, "name" : "Biofuels", "type" : "Merkmal"}
json_instruct
{"type": "object", "properties": {"code": {"type": "string"}, "lang": {"type": "string"}, "description": {"type": "null"}, "name": {"type": "string"}, "type": {"type": "string"}}, "required": ["code", "lang", "description", "name", "type"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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": {"name": {"type": "string"}, "start-date": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "point": {"type": "string"}, "listed-building-grade": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["name", "start-date", "listed-building", "documentation-url", "point", "listed-building-grade", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "Feature", "geometry" : {"type" : "Point", "coordinates" : [1.312263, 52.094385]}, "properties" : {"name" : "7,9, THEATRE STREET", "start-date" : "1971-12-20", "listed-building" : "1031000", "documentation-url" : "https://historicengland.org.uk/listing/the-list/list-entry/1031000", "point" : "POINT (1.312263 52.094385)", "listed-building-grade" : "II", "slug" : "/listed-building/1031000", "entry-date" : "2021-05-28"}}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "number"}}}, "required": ["type", "coordinates"]}, "properties": {"type": "object", "properties": {"name": {"type": "string"}, "start-date": {"type": "string"}, "listed-building": {"type": "string"}, "documentation-url": {"type": "string"}, "point": {"type": "string"}, "listed-building-grade": {"type": "string"}, "slug": {"type": "string"}, "entry-date": {"type": "string"}}, "required": ["name", "start-date", "listed-building", "documentation-url", "point", "listed-building-grade", "slug", "entry-date"]}}, "required": ["type", "geometry", "properties"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : 40789, "cartId" : "24688b01-b6a0-4f08-bd37-53b2282cb161", "preferredProducts" : [3670, 2623], "productReviews" : [{"productId" : 4162, "reviewText" : "I saw one of these in Grenada and I bought one.", "reviewDate" : "2019-04-18T19:44:17.8780664+03: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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"examine" : "A shield made in the Elemental Workshop.", "bonuses" : [0, 0, 0, 0, 0, 0, 0, 0, 9, 0, 30, 0, 0, 0, 0, 0, 0, 0], "realPrice" : 7814}
json_instruct
{"type": "object", "properties": {"examine": {"type": "string"}, "bonuses": {"type": "array", "items": {"type": "integer"}}, "realPrice": {"type": "integer"}}, "required": ["examine", "bonuses", "realPrice"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "mocha": {"type": "string"}, "mongoose": {"type": "string"}, "should": {"type": "string"}, "sqlite3": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-polyfill", "babel-preset-stage-3", "mocha", "mongoose", "should", "sqlite3"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "hapi": {"type": "string"}, "pluralize": {"type": "string"}}, "required": ["async", "hapi", "pluralize"]}, "presets": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "presets"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "happy-crud", "version" : "0.0.5", "description" : "Happy Crud", "main" : "index.js", "scripts" : {"test" : "babel-node --presets stage-3 ./node_modules/.bin/_mocha tests"}, "author" : "Mohammad Anwari <[email protected]> (http://aksi.mdamt.net/)", "license" : "MIT", "devDependencies" : {"babel" : "^6.5.2", "babel-cli" : "^6.8.0", "babel-core" : "^6.8.0", "babel-polyfill" : "^6.8.0", "babel-preset-stage-3" : "^6.5.0", "mocha" : "^2.4.5", "mongoose" : "^4.4.4", "should" : "^8.2.2", "sqlite3" : "^3.1.1"}, "dependencies" : {"async" : "^2.0.0-rc.5", "hapi" : "^13.0.0", "pluralize" : "^1.2.1"}, "presets" : ["stage-3"]}
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"]}, "author": {"type": "string"}, "license": {"type": "string"}, "devDependencies": {"type": "object", "properties": {"babel": {"type": "string"}, "babel-cli": {"type": "string"}, "babel-core": {"type": "string"}, "babel-polyfill": {"type": "string"}, "babel-preset-stage-3": {"type": "string"}, "mocha": {"type": "string"}, "mongoose": {"type": "string"}, "should": {"type": "string"}, "sqlite3": {"type": "string"}}, "required": ["babel", "babel-cli", "babel-core", "babel-polyfill", "babel-preset-stage-3", "mocha", "mongoose", "should", "sqlite3"]}, "dependencies": {"type": "object", "properties": {"async": {"type": "string"}, "hapi": {"type": "string"}, "pluralize": {"type": "string"}}, "required": ["async", "hapi", "pluralize"]}, "presets": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "main", "scripts", "author", "license", "devDependencies", "dependencies", "presets"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {"type": "number"}}}, "required": ["loss_data", "train_accs", "dev_accs", "test_accs"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"loss_data" : [2.7591552734375, 1.9589648246765137, 1.8323928117752075, 1.555020809173584, 1.2336394786834717, 0.9803222417831421, 0.7635008692741394, 0.6481443643569946, 0.5270059704780579, 0.4024350047111511, 0.3598270118236542, 0.338234543800354, 0.265807569026947, 0.22028501331806183, 0.1884813755750656, 0.1373661905527115, 0.13163867592811584, 0.1051555797457695, 0.10267260670661926, 0.08780347555875778], "train_accs" : [0.695040899795501, 0.999573960463531], "dev_accs" : [0.5477164280845263, 0.9993183367416496], "test_accs" : [0.0, 0.0003893070334804049]}
json_instruct
{"type": "object", "properties": {"loss_data": {"type": "array", "items": {"type": "number"}}, "train_accs": {"type": "array", "items": {"type": "number"}}, "dev_accs": {"type": "array", "items": {"type": "number"}}, "test_accs": {"type": "array", "items": {"type": "number"}}}, "required": ["loss_data", "train_accs", "dev_accs", "test_accs"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"prepare_queue": {"type": "object", "properties": {"installed": {"type": "array", "items": {}}, "uninstalled": {"type": "array", "items": {}}}, "required": ["installed", "uninstalled"]}, "config_munge": {"type": "object", "properties": {"files": {"type": "object", "properties": {}, "required": []}}, "required": ["files"]}, "installed_plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-camera": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-screen-orientation": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-file": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-wkwebview-ionic-xhr": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-camera", "cordova-plugin-screen-orientation", "cordova-plugin-file", "cordova-plugin-wkwebview-ionic-xhr"]}, "dependent_plugins": {"type": "object", "properties": {"cordova-plugin-ionic-webview": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}}, "required": ["cordova-plugin-ionic-webview"]}}, "required": ["prepare_queue", "config_munge", "installed_plugins", "dependent_plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"prepare_queue" : {"installed" : [], "uninstalled" : []}, "config_munge" : {"files" : {}}, "installed_plugins" : {"cordova-plugin-whitelist" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-camera" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-screen-orientation" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-file" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}, "cordova-plugin-wkwebview-ionic-xhr" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}}, "dependent_plugins" : {"cordova-plugin-ionic-webview" : {"PACKAGE_NAME" : "com.das2408.gulplinux"}}}
json_instruct
{"type": "object", "properties": {"prepare_queue": {"type": "object", "properties": {"installed": {"type": "array", "items": {}}, "uninstalled": {"type": "array", "items": {}}}, "required": ["installed", "uninstalled"]}, "config_munge": {"type": "object", "properties": {"files": {"type": "object", "properties": {}, "required": []}}, "required": ["files"]}, "installed_plugins": {"type": "object", "properties": {"cordova-plugin-whitelist": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-camera": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-screen-orientation": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-file": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}, "cordova-plugin-wkwebview-ionic-xhr": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}}, "required": ["cordova-plugin-whitelist", "cordova-plugin-camera", "cordova-plugin-screen-orientation", "cordova-plugin-file", "cordova-plugin-wkwebview-ionic-xhr"]}, "dependent_plugins": {"type": "object", "properties": {"cordova-plugin-ionic-webview": {"type": "object", "properties": {"PACKAGE_NAME": {"type": "string"}}, "required": ["PACKAGE_NAME"]}}, "required": ["cordova-plugin-ionic-webview"]}}, "required": ["prepare_queue", "config_munge", "installed_plugins", "dependent_plugins"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "form-data": {"type": "string"}}, "required": ["axios", "form-data"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tennis-court", "version" : "1.0.0", "description" : "A robot will query available tennis courts", "main" : "index.js", "repository" : "https://github.com/RAIN-JIANGRAN/tennis-court.git", "author" : "rain", "license" : "MIT", "private" : false, "dependencies" : {"axios" : "^0.21.0", "form-data" : "^3.0.0"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "repository": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "private": {"type": "boolean"}, "dependencies": {"type": "object", "properties": {"axios": {"type": "string"}, "form-data": {"type": "string"}}, "required": ["axios", "form-data"]}}, "required": ["name", "version", "description", "main", "repository", "author", "license", "private", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : 85905295, "type" : "Feature", "properties" : {"src:alt_label" : "quattroshapes_pg", "src:geom" : "quattroshapes_pg", "wof:geomhash" : "7bf4832b03155ac79b57c5c56868f10c", "wof:id" : 85905295, "wof:repo" : "whosonfirst-data-admin-se"}, "bbox" : [17.808322, 59.458075, 17.808322, 59.458075], "geometry" : {"coordinates" : [17.808322, 59.458075], "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#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "description", "qualityRules"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 1061059, "name" : "CWE-502 - Deserialization of Untrusted Data", "href" : "CARL/technical-criteria/1061059", "description" : "The application deserializes untrusted data without sufficiently verifying that the resulting data will be valid.", "qualityRules" : {"name" : "Quality Rules in numeric ID order", "href" : "CARL/technical-criteria/1061059/quality-rules"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}, "href": {"type": "string"}, "description": {"type": "string"}, "qualityRules": {"type": "object", "properties": {"name": {"type": "string"}, "href": {"type": "string"}}, "required": ["name", "href"]}}, "required": ["id", "name", "href", "description", "qualityRules"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.68b64559.chunk.css": {"type": "string"}, "static/js/2.45792aff.chunk.js": {"type": "string"}, "static/js/2.45792aff.chunk.js.map": {"type": "string"}, "static/js/3.2175cde8.chunk.js": {"type": "string"}, "static/js/3.2175cde8.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.68b64559.chunk.css.map": {"type": "string"}, "static/css/main.3674d497.chunk.css.map": {"type": "string"}, "static/js/2.45792aff.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/dchan.35747f56.png": {"type": "string"}, "static/media/faucet.992ecb17.svg": {"type": "string"}, "static/media/polygon.d46e750b.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.68b64559.chunk.css", "static/js/2.45792aff.chunk.js", "static/js/2.45792aff.chunk.js.map", "static/js/3.2175cde8.chunk.js", "static/js/3.2175cde8.chunk.js.map", "index.html", "static/css/2.68b64559.chunk.css.map", "static/css/main.3674d497.chunk.css.map", "static/js/2.45792aff.chunk.js.LICENSE.txt", "static/media/dchan.35747f56.png", "static/media/faucet.992ecb17.svg", "static/media/polygon.d46e750b.svg"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"files" : {"main.css" : "/static/css/main.3674d497.chunk.css", "main.js" : "/static/js/main.92fab6e9.chunk.js", "main.js.map" : "/static/js/main.92fab6e9.chunk.js.map", "runtime-main.js" : "/static/js/runtime-main.b22bc9f5.js", "runtime-main.js.map" : "/static/js/runtime-main.b22bc9f5.js.map", "static/css/2.68b64559.chunk.css" : "/static/css/2.68b64559.chunk.css", "static/js/2.45792aff.chunk.js" : "/static/js/2.45792aff.chunk.js", "static/js/2.45792aff.chunk.js.map" : "/static/js/2.45792aff.chunk.js.map", "static/js/3.2175cde8.chunk.js" : "/static/js/3.2175cde8.chunk.js", "static/js/3.2175cde8.chunk.js.map" : "/static/js/3.2175cde8.chunk.js.map", "index.html" : "/index.html", "static/css/2.68b64559.chunk.css.map" : "/static/css/2.68b64559.chunk.css.map", "static/css/main.3674d497.chunk.css.map" : "/static/css/main.3674d497.chunk.css.map", "static/js/2.45792aff.chunk.js.LICENSE.txt" : "/static/js/2.45792aff.chunk.js.LICENSE.txt", "static/media/dchan.35747f56.png" : "/static/media/dchan.35747f56.png", "static/media/faucet.992ecb17.svg" : "/static/media/faucet.992ecb17.svg", "static/media/polygon.d46e750b.svg" : "/static/media/polygon.d46e750b.svg"}, "entrypoints" : ["static/js/runtime-main.b22bc9f5.js", "static/css/2.68b64559.chunk.css", "static/js/2.45792aff.chunk.js", "static/css/main.3674d497.chunk.css", "static/js/main.92fab6e9.chunk.js"]}
json_instruct
{"type": "object", "properties": {"files": {"type": "object", "properties": {"main.css": {"type": "string"}, "main.js": {"type": "string"}, "main.js.map": {"type": "string"}, "runtime-main.js": {"type": "string"}, "runtime-main.js.map": {"type": "string"}, "static/css/2.68b64559.chunk.css": {"type": "string"}, "static/js/2.45792aff.chunk.js": {"type": "string"}, "static/js/2.45792aff.chunk.js.map": {"type": "string"}, "static/js/3.2175cde8.chunk.js": {"type": "string"}, "static/js/3.2175cde8.chunk.js.map": {"type": "string"}, "index.html": {"type": "string"}, "static/css/2.68b64559.chunk.css.map": {"type": "string"}, "static/css/main.3674d497.chunk.css.map": {"type": "string"}, "static/js/2.45792aff.chunk.js.LICENSE.txt": {"type": "string"}, "static/media/dchan.35747f56.png": {"type": "string"}, "static/media/faucet.992ecb17.svg": {"type": "string"}, "static/media/polygon.d46e750b.svg": {"type": "string"}}, "required": ["main.css", "main.js", "main.js.map", "runtime-main.js", "runtime-main.js.map", "static/css/2.68b64559.chunk.css", "static/js/2.45792aff.chunk.js", "static/js/2.45792aff.chunk.js.map", "static/js/3.2175cde8.chunk.js", "static/js/3.2175cde8.chunk.js.map", "index.html", "static/css/2.68b64559.chunk.css.map", "static/css/main.3674d497.chunk.css.map", "static/js/2.45792aff.chunk.js.LICENSE.txt", "static/media/dchan.35747f56.png", "static/media/faucet.992ecb17.svg", "static/media/polygon.d46e750b.svg"]}, "entrypoints": {"type": "array", "items": {"type": "string"}}}, "required": ["files", "entrypoints"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "strategy": {"type": "object", "properties": {"name": {"type": "string"}, "params": {"type": "object", "properties": {"symbol": {"type": "string"}, "stax": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}}, "required": ["address", "decimals"]}, "masterchef": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}}, "required": ["address", "decimals"]}, "stakingchef": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}, "weightage": {"type": "string"}}, "required": ["address", "decimals", "weightage"]}, "pools": {"type": "array", "items": {"type": "object", "properties": {"poolId": {"type": "string"}, "weightage": {"type": "string"}}, "required": ["poolId", "weightage"]}}}, "required": ["symbol", "stax", "masterchef", "stakingchef", "pools"]}}, "required": ["name", "params"]}, "network": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "snapshot": {"type": "integer"}}, "required": ["name", "strategy", "network", "addresses", "snapshot"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"name" : "stablexswap", "strategy" : {"name" : "stablexswap", "params" : {"symbol" : "SXSWAP", "stax" : {"address" : "0x0da6ed8b13214ff28e9ca979dd37439e8a88f6c4", "decimals" : "18"}, "masterchef" : {"address" : "0xc80991f9106e26e43bf1c07c764829a85f294c71", "decimals" : "18"}, "stakingchef" : {"address" : "0x0c0c475e32212b748c328e451ab3862ffe07369e", "decimals" : "18", "weightage" : "8"}, "pools" : [{"poolId" : "0", "weightage" : "25"}, {"poolId" : "4", "weightage" : "4"}]}}, "network" : "56", "addresses" : ["0xd8fa0957b8e3c3b07210a9b1c14da07572be3a69", "0xecae266b38fa64ddb443ab1db44602ff61ff2f3b", "0xa3E56A7d3C97681D443dE712e3d397D8d8D8A077", "0x3232d9fbb5f1937c90361c6bee938e0b8f98c71d"], "snapshot" : 9242933}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "strategy": {"type": "object", "properties": {"name": {"type": "string"}, "params": {"type": "object", "properties": {"symbol": {"type": "string"}, "stax": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}}, "required": ["address", "decimals"]}, "masterchef": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}}, "required": ["address", "decimals"]}, "stakingchef": {"type": "object", "properties": {"address": {"type": "string"}, "decimals": {"type": "string"}, "weightage": {"type": "string"}}, "required": ["address", "decimals", "weightage"]}, "pools": {"type": "array", "items": {"type": "object", "properties": {"poolId": {"type": "string"}, "weightage": {"type": "string"}}, "required": ["poolId", "weightage"]}}}, "required": ["symbol", "stax", "masterchef", "stakingchef", "pools"]}}, "required": ["name", "params"]}, "network": {"type": "string"}, "addresses": {"type": "array", "items": {"type": "string"}}, "snapshot": {"type": "integer"}}, "required": ["name", "strategy", "network", "addresses", "snapshot"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [784.691, 406.847, 1, 764.678, 672.489, 1, 510.727, 710.829, 1, 315.346, 1117, 1, 2.41227, -1.83786, 0, 1036.56, 651.019, 1, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 704.066, 323.574, 1, 877.359, 334.195, 1, 612.541, 366.638, 1, 957.213, 377.317, 1, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0, 2.41227, -1.83786, 0], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
[{"id" : "340304200201", "text" : "\u77f3\u5df7\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200202", "text" : "\u8bb8\u5e84\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200203", "text" : "\u738b\u5c97\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200204", "text" : "\u9ec4\u5c71\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200205", "text" : "\u4e5d\u9f99\u96c6\u6751\u6c11\u59d4\u5458\u4f1a"}, {"id" : "340304200206", "text" : "\u5c71\u9999\u6751\u6c11\u59d4\u5458\u4f1a"}]
json_instruct
{"type": "array", "items": {"type": "object", "properties": {"id": {"type": "string"}, "text": {"type": "string"}}, "required": ["id", "text"]}, "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "wood_overhaul:block/mahogany_fence_gate"}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}}, "required": ["parent"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node12": {"type": "string"}, "@types/node": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node12", "@types/node", "prettier", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "tslox", "version" : "1.0.0", "description" : "", "main" : "index.js", "dependencies" : {}, "devDependencies" : {"@tsconfig/node12" : "^1.0.9", "@types/node" : "^12.20.25", "prettier" : "2.4.1", "ts-node" : "^10.2.1", "typescript" : "^4.4.3"}, "scripts" : {"build" : "tsc", "test" : "echo \"Error: no test specified\" && exit 1"}, "author" : "", "license" : "ISC"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "dependencies": {"type": "object", "properties": {}, "required": []}, "devDependencies": {"type": "object", "properties": {"@tsconfig/node12": {"type": "string"}, "@types/node": {"type": "string"}, "prettier": {"type": "string"}, "ts-node": {"type": "string"}, "typescript": {"type": "string"}}, "required": ["@tsconfig/node12", "@types/node", "prettier", "ts-node", "typescript"]}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "test"]}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "dependencies", "devDependencies", "scripts", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[1975, 5], [1979, 7], [1985, 8], [1988, 9], [1991, 10], [1992, 7], [1993, 10], [1994, 12], [1995, 15], [1996, 18], [1997, 10], [1998, 8], [1999, 10], [2000, 8], [2001, 18], [2002, 12], [2003, 15], [2004, 9], [2005, 7], [2006, 17], [2007, 7], [2008, 11], [2009, 9], [2010, 7], [2011, 7], [2012, 6], [2013, 10], [2014, 8]]
json_instruct
{"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"version" : 1.2, "people" : [{"pose_keypoints_2d" : [133.052, 140.595, 1, 143.555, 153.413, 1, 132.203, 153.937, 1, 124.063, 177.316, 1, 126.129, 191.755, 1, 158.641, 166.004, 1, 164.849, 172.413, 1, 186.155, 189.916, 1, 128.219, 202.067, 1, 127.297, 242.184, 1, 130.833, 288.938, 1, 143.773, 205.132, 1, 140.185, 247.841, 1, 140.783, 265.755, 1, 132.091, 137.63, 1, 136.875, 136.752, 1, 461.442, 134.458, 0, 144.538, 136.868, 1], "face_keypoints_2d" : [], "hand_left_keypoints_2d" : [], "hand_right_keypoints_2d" : [], "pose_keypoints_3d" : [], "face_keypoints_3d" : [], "hand_left_keypoints_3d" : [], "hand_right_keypoints_3d" : []}]}
json_instruct
{"type": "object", "properties": {"version": {"type": "number"}, "people": {"type": "array", "items": {"type": "object", "properties": {"pose_keypoints_2d": {"type": "array", "items": {"type": "number"}}, "face_keypoints_2d": {"type": "array", "items": {}}, "hand_left_keypoints_2d": {"type": "array", "items": {}}, "hand_right_keypoints_2d": {"type": "array", "items": {}}, "pose_keypoints_3d": {"type": "array", "items": {}}, "face_keypoints_3d": {"type": "array", "items": {}}, "hand_left_keypoints_3d": {"type": "array", "items": {}}, "hand_right_keypoints_3d": {"type": "array", "items": {}}}, "required": ["pose_keypoints_2d", "face_keypoints_2d", "hand_left_keypoints_2d", "hand_right_keypoints_2d", "pose_keypoints_3d", "face_keypoints_3d", "hand_left_keypoints_3d", "hand_right_keypoints_3d"]}}}, "required": ["version", "people"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"GkeHub": {"type": "object", "properties": {"clients": {"type": "object", "properties": {"grpc": {"type": "object", "properties": {"libraryClient": {"type": "string"}, "rpcs": {"type": "object", "properties": {"ListMemberships": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "GetMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "CreateMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "DeleteMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "UpdateMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "GenerateConnectManifest": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "InitializeHub": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}}, "required": ["ListMemberships", "GetMembership", "CreateMembership", "DeleteMembership", "UpdateMembership", "GenerateConnectManifest", "InitializeHub"]}}, "required": ["libraryClient", "rpcs"]}}, "required": ["grpc"]}}, "required": ["clients"]}}, "required": ["GkeHub"]}}, "required": ["schema", "comment", "language", "protoPackage", "libraryPackage", "services"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"schema" : "1.0", "comment" : "This file maps proto services/RPCs to the corresponding library clients/methods", "language" : "ruby", "protoPackage" : "google.cloud.gkehub.v1alpha2", "libraryPackage" : "::Google::Cloud::GkeHub::V1alpha2", "services" : {"GkeHub" : {"clients" : {"grpc" : {"libraryClient" : "::Google::Cloud::GkeHub::V1alpha2::GkeHub::Client", "rpcs" : {"ListMemberships" : {"methods" : ["list_memberships"]}, "GetMembership" : {"methods" : ["get_membership"]}, "CreateMembership" : {"methods" : ["create_membership"]}, "DeleteMembership" : {"methods" : ["delete_membership"]}, "UpdateMembership" : {"methods" : ["update_membership"]}, "GenerateConnectManifest" : {"methods" : ["generate_connect_manifest"]}, "InitializeHub" : {"methods" : ["initialize_hub"]}}}}}}}
json_instruct
{"type": "object", "properties": {"schema": {"type": "string"}, "comment": {"type": "string"}, "language": {"type": "string"}, "protoPackage": {"type": "string"}, "libraryPackage": {"type": "string"}, "services": {"type": "object", "properties": {"GkeHub": {"type": "object", "properties": {"clients": {"type": "object", "properties": {"grpc": {"type": "object", "properties": {"libraryClient": {"type": "string"}, "rpcs": {"type": "object", "properties": {"ListMemberships": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "GetMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "CreateMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "DeleteMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "UpdateMembership": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "GenerateConnectManifest": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}, "InitializeHub": {"type": "object", "properties": {"methods": {"type": "array", "items": {"type": "string"}}}, "required": ["methods"]}}, "required": ["ListMemberships", "GetMembership", "CreateMembership", "DeleteMembership", "UpdateMembership", "GenerateConnectManifest", "InitializeHub"]}}, "required": ["libraryClient", "rpcs"]}}, "required": ["grpc"]}}, "required": ["clients"]}}, "required": ["GkeHub"]}}, "required": ["schema", "comment", "language", "protoPackage", "libraryPackage", "services"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"nom": {"type": "string"}, "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" : "Maupas", "circ" : "2\u00e8me circonscription", "dpt" : "Gers", "inscrits" : 136, "abs" : 58, "votants" : 78, "blancs" : 4, "nuls" : 3, "exp" : 71, "res" : [{"nuance" : "SOC", "nom" : "Mme Gis\u00e8le BI\u00c9MOURET", "voix" : 46}, {"nuance" : "REM", "nom" : "M. Christopher SOCCIO", "voix" : 25}]}
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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "freelunch_sade_3_cube", "package" : "freelunch", "strategy" : "freelunch_sade_3", "traceback" : "Black took 216 function evals when instructed to use 211"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "package": {"type": "string"}, "strategy": {"type": "string"}, "traceback": {"type": "string"}}, "required": ["name", "package", "strategy", "traceback"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"contract" : "0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed", "tool" : "oyente", "start" : 1563282938.0305908, "end" : 1563282964.8070626, "duration" : 26.776471853256226, "analysis" : [{"errors" : [], "file" : "/unique_contracts/0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed.sol", "name" : "Owned", "evm_code_coverage" : "99.7%", "integer_underflow" : false, "integer_overflow" : false, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : false, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}, {"errors" : [{"line" : 366, "column" : 36, "level" : "Warning", "message" : "Integer Underflow."}, {"line" : 366, "column" : 36, "level" : "Warning", "message" : "Integer Overflow."}], "file" : "/unique_contracts/0xc049e9ca2980b586ccfca7f4f2d87ea62f4a73ed.sol", "name" : "ZeroFilters", "evm_code_coverage" : "41.2%", "integer_underflow" : true, "integer_overflow" : true, "parity_multisig_bug_2" : false, "callstack_depth_attack_vulnerability" : false, "transaction-ordering_dependence_tod" : false, "timestamp_dependency" : false, "re-entrancy_vulnerability" : false}]}
json_instruct
{"type": "object", "properties": {"contract": {"type": "string"}, "tool": {"type": "string"}, "start": {"type": "number"}, "end": {"type": "number"}, "duration": {"type": "number"}, "analysis": {"type": "array", "items": {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "file": {"type": "string"}, "name": {"type": "string"}, "evm_code_coverage": {"type": "string"}, "integer_underflow": {"type": "boolean"}, "integer_overflow": {"type": "boolean"}, "parity_multisig_bug_2": {"type": "boolean"}, "callstack_depth_attack_vulnerability": {"type": "boolean"}, "transaction-ordering_dependence_tod": {"type": "boolean"}, "timestamp_dependency": {"type": "boolean"}, "re-entrancy_vulnerability": {"type": "boolean"}}, "required": ["errors", "file", "name", "evm_code_coverage", "integer_underflow", "integer_overflow", "parity_multisig_bug_2", "callstack_depth_attack_vulnerability", "transaction-ordering_dependence_tod", "timestamp_dependency", "re-entrancy_vulnerability"]}}}, "required": ["contract", "tool", "start", "end", "duration", "analysis"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"viewBox" : "0 0 1024 1024", "font" : "file-icons", "code" : "ea6d", "ref" : "proselint", "path" : "M0 0h1024v1024H0V0m146 359v300q-1 70-10 82t-62 17v31h229v-32q-66-3-71.5-21t-7.5-77V298q0-18 3.5-21.5T263 273q68 0 97 39.5t26 90.5q-2 43-20.5 76T272 528q-8 2-8 13.5t9 14.5q84-1 142.5-40.5T473 398q-1-58-25-93-25-35-74.5-52T250 235q-75-1-176 8v31q63 2 66.5 19t5.5 66m525 290l-1-281q1-74 10-85t63-15v-32H516v32q48 3 62.5 11t13.5 87v291q0 71-9.5 84T516 757v32h397q9-16 22-64.5t15-54.5q1-8-12-12.5t-18 2.5q-34 68-52.5 78T770 748q-64 0-82-15t-17-84z"}
json_instruct
{"type": "object", "properties": {"viewBox": {"type": "string"}, "font": {"type": "string"}, "code": {"type": "string"}, "ref": {"type": "string"}, "path": {"type": "string"}}, "required": ["viewBox", "font", "code", "ref", "path"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required": ["method", "path", "handler", "config"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"routes" : [{"method" : "GET", "path" : "/mailing-lists", "handler" : "mailing-list.find", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/mailing-lists/count", "handler" : "mailing-list.count", "config" : {"policies" : []}}, {"method" : "GET", "path" : "/mailing-lists/:id", "handler" : "mailing-list.findOne", "config" : {"policies" : []}}, {"method" : "POST", "path" : "/mailing-lists", "handler" : "mailing-list.create", "config" : {"policies" : []}}, {"method" : "PUT", "path" : "/mailing-lists/:id", "handler" : "mailing-list.update", "config" : {"policies" : []}}, {"method" : "DELETE", "path" : "/mailing-lists/:id", "handler" : "mailing-list.delete", "config" : {"policies" : []}}]}
json_instruct
{"type": "object", "properties": {"routes": {"type": "array", "items": {"type": "object", "properties": {"method": {"type": "string"}, "path": {"type": "string"}, "handler": {"type": "string"}, "config": {"type": "object", "properties": {"policies": {"type": "array", "items": {}}}, "required": ["policies"]}}, "required": ["method", "path", "handler", "config"]}}}, "required": ["routes"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"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" : [[[152.25, 32.333333333333336], [152.25, 32.416666666666664], [152.375, 32.416666666666664], [152.375, 32.333333333333336], [152.25, 32.333333333333336]]]}, "properties" : {"code" : 485242, "url" : "http://madefor.github.io/0410/api/v1/485242.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/485242.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#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"expireTime" : 9007200878802485000, "key" : "/static/122adc74118ec5572e7f2f089eaa9d60/1aeda/soar.webp", "val" : "bb8933c6d4acf5677a5eca2c9528bc9f"}
json_instruct
{"type": "object", "properties": {"expireTime": {"type": "integer"}, "key": {"type": "string"}, "val": {"type": "string"}}, "required": ["expireTime", "key", "val"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "dependencies": {"type": "object", "properties": {"@cloudflare/kv-asset-handler": {"type": "string"}, "miniflare": {"type": "string"}}, "required": ["@cloudflare/kv-asset-handler", "miniflare"]}}, "required": ["private", "name", "type", "version", "description", "main", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"private" : true, "name" : "@project/site-worker", "type" : "module", "version" : "1.0.0", "description" : "The worker that hosts the site", "main" : "index.js", "author" : "Mike Cann <[email protected]>", "license" : "MIT", "scripts" : {"deploy" : "wrangler publish"}, "dependencies" : {"@cloudflare/kv-asset-handler" : "~0.1.2", "miniflare" : "^1.3.3"}}
json_instruct
{"type": "object", "properties": {"private": {"type": "boolean"}, "name": {"type": "string"}, "type": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "author": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "dependencies": {"type": "object", "properties": {"@cloudflare/kv-asset-handler": {"type": "string"}, "miniflare": {"type": "string"}}, "required": ["@cloudflare/kv-asset-handler", "miniflare"]}}, "required": ["private", "name", "type", "version", "description", "main", "author", "license", "scripts", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"0": {"type": "object", "properties": {"shardId": {"type": "integer"}, "payload": {"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "integer"}, "op": {"type": "integer"}, "d": {"type": "object", "properties": {"member": {"type": "object", "properties": {"user": {"type": "object", "properties": {"username": {"type": "string"}, "public_flags": {"type": "integer"}, "id": {"type": "string"}, "discriminator": {"type": "string"}, "avatar": {"type": "string"}}, "required": ["username", "public_flags", "id", "discriminator", "avatar"]}, "roles": {"type": "array", "items": {"type": "string"}}, "premium_since": {"type": "null"}, "pending": {"type": "boolean"}, "nick": {"type": "string"}, "mute": {"type": "boolean"}, "joined_at": {"type": "string"}, "is_pending": {"type": "boolean"}, "hoisted_role": {"type": "string"}, "deaf": {"type": "boolean"}, "avatar": {"type": "null"}}, "required": ["user", "roles", "premium_since", "pending", "nick", "mute", "joined_at", "is_pending", "hoisted_role", "deaf", "avatar"]}, "user_id": {"type": "string"}, "suppress": {"type": "boolean"}, "session_id": {"type": "string"}, "self_video": {"type": "boolean"}, "self_mute": {"type": "boolean"}, "self_deaf": {"type": "boolean"}, "request_to_speak_timestamp": {"type": "null"}, "mute": {"type": "boolean"}, "guild_id": {"type": "string"}, "deaf": {"type": "boolean"}, "channel_id": {"type": "string"}}, "required": ["member", "user_id", "suppress", "session_id", "self_video", "self_mute", "self_deaf", "request_to_speak_timestamp", "mute", "guild_id", "deaf", "channel_id"]}}, "required": ["t", "s", "op", "d"]}}, "required": ["shardId", "payload"]}, "id": {"type": "string"}}, "required": ["0", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"0" : {"shardId" : 3, "payload" : {"t" : "VOICE_STATE_UPDATE", "s" : 1092, "op" : 0, "d" : {"member" : {"user" : {"username" : "XszeNjtf", "public_flags" : 128, "id" : "404537717470659319", "discriminator" : "4703", "avatar" : "eae5905ad2d18d7c8deca20478b088b5"}, "roles" : ["996085338236768111", "612414854725718368", "836592177876938278", "464625539708419437", "681876536182651237", "548315801702603357", "297806239595278666", "383282394112459218", "590215204261269245", "795979543557683283", "277718675780513386", "397272347776614221", "932394564573250482", "366030173031572689"], "premium_since" : null, "pending" : false, "nick" : "xbvwq", "mute" : false, "joined_at" : "2021-10-10T08:16:23.260Z", "is_pending" : false, "hoisted_role" : "648715111589929784", "deaf" : false, "avatar" : null}, "user_id" : "707811682135949263", "suppress" : false, "session_id" : "e2r5777w4n49sd4t717k8rjolz72ip8q", "self_video" : false, "self_mute" : false, "self_deaf" : false, "request_to_speak_timestamp" : null, "mute" : false, "guild_id" : "578892945999202804", "deaf" : false, "channel_id" : "424321141946146429"}}}, "id" : "9693"}
json_instruct
{"type": "object", "properties": {"0": {"type": "object", "properties": {"shardId": {"type": "integer"}, "payload": {"type": "object", "properties": {"t": {"type": "string"}, "s": {"type": "integer"}, "op": {"type": "integer"}, "d": {"type": "object", "properties": {"member": {"type": "object", "properties": {"user": {"type": "object", "properties": {"username": {"type": "string"}, "public_flags": {"type": "integer"}, "id": {"type": "string"}, "discriminator": {"type": "string"}, "avatar": {"type": "string"}}, "required": ["username", "public_flags", "id", "discriminator", "avatar"]}, "roles": {"type": "array", "items": {"type": "string"}}, "premium_since": {"type": "null"}, "pending": {"type": "boolean"}, "nick": {"type": "string"}, "mute": {"type": "boolean"}, "joined_at": {"type": "string"}, "is_pending": {"type": "boolean"}, "hoisted_role": {"type": "string"}, "deaf": {"type": "boolean"}, "avatar": {"type": "null"}}, "required": ["user", "roles", "premium_since", "pending", "nick", "mute", "joined_at", "is_pending", "hoisted_role", "deaf", "avatar"]}, "user_id": {"type": "string"}, "suppress": {"type": "boolean"}, "session_id": {"type": "string"}, "self_video": {"type": "boolean"}, "self_mute": {"type": "boolean"}, "self_deaf": {"type": "boolean"}, "request_to_speak_timestamp": {"type": "null"}, "mute": {"type": "boolean"}, "guild_id": {"type": "string"}, "deaf": {"type": "boolean"}, "channel_id": {"type": "string"}}, "required": ["member", "user_id", "suppress", "session_id", "self_video", "self_mute", "self_deaf", "request_to_speak_timestamp", "mute", "guild_id", "deaf", "channel_id"]}}, "required": ["t", "s", "op", "d"]}}, "required": ["shardId", "payload"]}, "id": {"type": "string"}}, "required": ["0", "id"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"cSpell.ignoreWords" : ["compact", "create", "formulario", "formularios", "return", "view"]}
json_instruct
{"type": "object", "properties": {"cSpell.ignoreWords": {"type": "array", "items": {"type": "string"}}}, "required": ["cSpell.ignoreWords"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
[2.0, 7.0, 4.0, 5.0, 2.0, 1.0, 1.0, 1.0, 2.0, 2.0]
json_instruct
{"type": "array", "items": {"type": "number"}, "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "package": {"type": "string"}}, "required": ["start", "package"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}}, "required": ["react", "react-dom", "react-redux", "redux"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "css-loader", "eslint", "eslint-loader", "eslint-plugin-react", "extract-text-webpack-plugin", "html-webpack-plugin", "node-sass", "sass-loader", "style-loader", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "chat-redux", "version" : "1.0.0", "description" : "Basic chat with redux and react", "main" : "index.html", "scripts" : {"start" : "webpack-dev-server --progress --colors", "package" : "webpack"}, "keywords" : ["redux", "react", "js", "chat"], "author" : "jruchaud", "license" : "AGPL-3.0", "dependencies" : {"react" : "^0.14.7", "react-dom" : "^0.14.7", "react-redux" : "^4.4.1", "redux" : "^3.3.1"}, "devDependencies" : {"babel-core" : "^6.7.2", "babel-loader" : "^6.2.4", "babel-preset-es2015" : "^6.6.0", "babel-preset-react" : "^6.5.0", "css-loader" : "^0.23.1", "eslint" : "^2.4.0", "eslint-loader" : "^1.3.0", "eslint-plugin-react" : "^4.2.3", "extract-text-webpack-plugin" : "^1.0.1", "html-webpack-plugin" : "^2.10.0", "node-sass" : "^3.4.2", "sass-loader" : "^3.2.0", "style-loader" : "^0.13.0", "webpack" : "^1.12.14", "webpack-dev-server" : "^1.14.1"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "package": {"type": "string"}}, "required": ["start", "package"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"react": {"type": "string"}, "react-dom": {"type": "string"}, "react-redux": {"type": "string"}, "redux": {"type": "string"}}, "required": ["react", "react-dom", "react-redux", "redux"]}, "devDependencies": {"type": "object", "properties": {"babel-core": {"type": "string"}, "babel-loader": {"type": "string"}, "babel-preset-es2015": {"type": "string"}, "babel-preset-react": {"type": "string"}, "css-loader": {"type": "string"}, "eslint": {"type": "string"}, "eslint-loader": {"type": "string"}, "eslint-plugin-react": {"type": "string"}, "extract-text-webpack-plugin": {"type": "string"}, "html-webpack-plugin": {"type": "string"}, "node-sass": {"type": "string"}, "sass-loader": {"type": "string"}, "style-loader": {"type": "string"}, "webpack": {"type": "string"}, "webpack-dev-server": {"type": "string"}}, "required": ["babel-core", "babel-loader", "babel-preset-es2015", "babel-preset-react", "css-loader", "eslint", "eslint-loader", "eslint-plugin-react", "extract-text-webpack-plugin", "html-webpack-plugin", "node-sass", "sass-loader", "style-loader", "webpack", "webpack-dev-server"]}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"state": {"type": "string"}, "countyFips": {"type": "string"}, "transactionType": {"type": "string"}, "policyType": {"type": "string"}, "primaryRateName": {"type": "string"}, "recordingDocuments": {"type": "array", "items": {"type": "object", "properties": {"documentType": {"type": "string"}}, "required": ["documentType"]}}}, "required": ["state", "countyFips", "transactionType", "policyType", "primaryRateName", "recordingDocuments"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"state" : "string", "countyFips" : "string", "transactionType" : "string", "policyType" : "string", "primaryRateName" : "string", "recordingDocuments" : [{"documentType" : "string"}, {"documentType" : "string"}]}
json_instruct
{"type": "object", "properties": {"state": {"type": "string"}, "countyFips": {"type": "string"}, "transactionType": {"type": "string"}, "policyType": {"type": "string"}, "primaryRateName": {"type": "string"}, "recordingDocuments": {"type": "array", "items": {"type": "object", "properties": {"documentType": {"type": "string"}}, "required": ["documentType"]}}}, "required": ["state", "countyFips", "transactionType", "policyType", "primaryRateName", "recordingDocuments"], "$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"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "orchestra/testbench": {"type": "string"}}, "required": ["phpunit/phpunit", "orchestra/testbench"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"O2oneLabs\\KnetPaymentGateway\\": {"type": "string"}}, "required": ["O2oneLabs\\KnetPaymentGateway\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "require", "require-dev", "license", "authors", "minimum-stability", "prefer-stable", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "o2one/knet-payment-gateway", "description" : "This package is provides an expressive, fluent interface to Knet's payment services.", "require" : {"php" : "^7.3", "illuminate/support" : "5.6.*|5.7.*|5.8.*|^6.0|^7.0|^8.0"}, "require-dev" : {"phpunit/phpunit" : "^9.3.9", "orchestra/testbench" : "^6.0.0"}, "license" : "MIT", "authors" : [{"name" : "Sanu", "email" : "[email protected]"}], "minimum-stability" : "dev", "prefer-stable" : true, "autoload" : {"psr-4" : {"O2oneLabs\\KnetPaymentGateway\\" : "src/"}}, "extra" : {"laravel" : {"providers" : ["O2oneLabs\\KnetPaymentGateway\\KnetServiceProvider"]}}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "require": {"type": "object", "properties": {"php": {"type": "string"}, "illuminate/support": {"type": "string"}}, "required": ["php", "illuminate/support"]}, "require-dev": {"type": "object", "properties": {"phpunit/phpunit": {"type": "string"}, "orchestra/testbench": {"type": "string"}}, "required": ["phpunit/phpunit", "orchestra/testbench"]}, "license": {"type": "string"}, "authors": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "email": {"type": "string"}}, "required": ["name", "email"]}}, "minimum-stability": {"type": "string"}, "prefer-stable": {"type": "boolean"}, "autoload": {"type": "object", "properties": {"psr-4": {"type": "object", "properties": {"O2oneLabs\\KnetPaymentGateway\\": {"type": "string"}}, "required": ["O2oneLabs\\KnetPaymentGateway\\"]}}, "required": ["psr-4"]}, "extra": {"type": "object", "properties": {"laravel": {"type": "object", "properties": {"providers": {"type": "array", "items": {"type": "string"}}}, "required": ["providers"]}}, "required": ["laravel"]}}, "required": ["name", "description", "require", "require-dev", "license", "authors", "minimum-stability", "prefer-stable", "autoload", "extra"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : 64314, "info" : {"name" : "Doodle Icons Firefox", "description" : "Doodle Icons for Firefox", "additionalInfo" : null, "format" : "uso", "category" : "tumblr", "createdAt" : "2012-04-18T20:31:18.000Z", "updatedAt" : "2012-04-18T20:31:18.000Z", "license" : "NO-REDISTRIBUTION", "author" : {"id" : 137864, "name" : "vongolacloud18"}}, "stats" : {"installs" : {"total" : 152, "weekly" : 0}}, "screenshots" : {"main" : {"name" : "64314-after.png", "archived" : false}}, "discussions" : {"stats" : {"discussionsCount" : 0, "commentsCount" : 0}, "data" : []}, "style" : {"css" : "@-moz-document url-prefix(\"http://www.tumblr.com\"), url-prefix('https://www.tumblr.com') {\r\n/* Code repaired by admin. See http://forum.userstyles.org/discussion/37591/attempting-to-mass-fix-broken-tumblr-dash-icon-styles */\n.new_post {\n\tbackground: #ffffff url('http://i46.tinypic.com/257oe84.jpg') center center no-repeat !important;\n}\r\n.new_post_label{ padding-top:73px !important;}\r\n.new_post_label_icon{background-image:none !important}\r\n\r\n}"}}
json_instruct
{"type": "object", "properties": {"id": {"type": "integer"}, "info": {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "additionalInfo": {"type": "null"}, "format": {"type": "string"}, "category": {"type": "string"}, "createdAt": {"type": "string"}, "updatedAt": {"type": "string"}, "license": {"type": "string"}, "author": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "required": ["name", "description", "additionalInfo", "format", "category", "createdAt", "updatedAt", "license", "author"]}, "stats": {"type": "object", "properties": {"installs": {"type": "object", "properties": {"total": {"type": "integer"}, "weekly": {"type": "integer"}}, "required": ["total", "weekly"]}}, "required": ["installs"]}, "screenshots": {"type": "object", "properties": {"main": {"type": "object", "properties": {"name": {"type": "string"}, "archived": {"type": "boolean"}}, "required": ["name", "archived"]}}, "required": ["main"]}, "discussions": {"type": "object", "properties": {"stats": {"type": "object", "properties": {"discussionsCount": {"type": "integer"}, "commentsCount": {"type": "integer"}}, "required": ["discussionsCount", "commentsCount"]}, "data": {"type": "array", "items": {}}}, "required": ["stats", "data"]}, "style": {"type": "object", "properties": {"css": {"type": "string"}}, "required": ["css"]}}, "required": ["id", "info", "stats", "screenshots", "discussions", "style"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "category": {"type": "integer"}}, "required": ["name", "value", "itemStyle", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "value": {"type": "number"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"nodes" : [{"name" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8\n300699.SZ", "value" : 3587200000.0, "itemStyle" : {"color" : "red"}, "category" : 0}, {"name" : "\u5a01\u6d77\u826f\u7f8e\u7cbe\u5bc6\u673a\u68b0\u6709\u9650\u516c\u53f8", "value" : 14.55, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "\u5a01\u6d77\u5149\u5a01\u6237\u5916\u88c5\u5907\u6709\u9650\u516c\u53f8", "value" : 9.79, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "\u5a01\u6d77\u5e02\u5357\u90ca\u70ed\u7535\u6709\u9650\u516c\u53f8", "value" : 1092.05, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "\u5a01\u6d77\u5149\u5a01\u96c6\u56e2\u6709\u9650\u8d23\u4efb\u516c\u53f8", "value" : 354.46, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}, {"name" : "\u9648\u6654\u5982", "value" : 67.0, "itemStyle" : {"color" : "blue", "borderType" : "dotted"}, "category" : 1}], "links" : [{"source" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u5a01\u6d77\u826f\u7f8e\u7cbe\u5bc6\u673a\u68b0\u6709\u9650\u516c\u53f8", "value" : 4.056088314005352e-09}, {"source" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u5a01\u6d77\u5149\u5a01\u6237\u5916\u88c5\u5907\u6709\u9650\u516c\u53f8", "value" : 2.7291480820695806e-09}, {"source" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u5a01\u6d77\u5e02\u5357\u90ca\u70ed\u7535\u6709\u9650\u516c\u53f8", "value" : 3.0442963871543266e-07}, {"source" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u5a01\u6d77\u5149\u5a01\u96c6\u56e2\u6709\u9650\u8d23\u4efb\u516c\u53f8", "value" : 9.881244424620874e-08}, {"source" : "\u5a01\u6d77\u5149\u5a01\u590d\u5408\u6750\u6599\u80a1\u4efd\u6709\u9650\u516c\u53f8", "target" : "\u9648\u6654\u5982", "value" : 1.867752007136485e-08}]}
json_instruct
{"type": "object", "properties": {"nodes": {"type": "array", "items": {"type": "object", "properties": {"name": {"type": "string"}, "value": {"type": "number"}, "itemStyle": {"type": "object", "properties": {"color": {"type": "string"}}, "required": ["color"]}, "category": {"type": "integer"}}, "required": ["name", "value", "itemStyle", "category"]}}, "links": {"type": "array", "items": {"type": "object", "properties": {"source": {"type": "string"}, "target": {"type": "string"}, "value": {"type": "number"}}, "required": ["source", "target", "value"]}}}, "required": ["nodes", "links"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"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" : [[[145.75, 41.416666666666664], [145.75, 41.5], [145.875, 41.5], [145.875, 41.416666666666664], [145.75, 41.416666666666664]]]}, "properties" : {"code" : 624516, "url" : "http://madefor.github.io/0410/api/v1/624516.geojson", "view" : "https://github.com/madefor/0410/blob/gh-pages/api/v1/624516.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": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "integer"}, "feels_like": {"type": "number"}, "temp_min": {"type": "integer"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"coord" : {"lon" : -91.53, "lat" : 41.66}, "weather" : [{"id" : 800, "main" : "Clear", "description" : "clear sky", "icon" : "01n"}], "base" : "stations", "main" : {"temp" : -9, "feels_like" : -13.18, "temp_min" : -9, "temp_max" : -9, "pressure" : 1028, "humidity" : 85}, "visibility" : 10000, "wind" : {"speed" : 1.5, "deg" : 270}, "clouds" : {"all" : 1}, "dt" : 1606911396, "sys" : {"type" : 1, "id" : 4541, "country" : "US", "sunrise" : 1606914922, "sunset" : 1606948594}, "timezone" : -21600, "id" : 4862034, "name" : "Iowa City", "cod" : 200}
json_instruct
{"type": "object", "properties": {"coord": {"type": "object", "properties": {"lon": {"type": "number"}, "lat": {"type": "number"}}, "required": ["lon", "lat"]}, "weather": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "main": {"type": "string"}, "description": {"type": "string"}, "icon": {"type": "string"}}, "required": ["id", "main", "description", "icon"]}}, "base": {"type": "string"}, "main": {"type": "object", "properties": {"temp": {"type": "integer"}, "feels_like": {"type": "number"}, "temp_min": {"type": "integer"}, "temp_max": {"type": "integer"}, "pressure": {"type": "integer"}, "humidity": {"type": "integer"}}, "required": ["temp", "feels_like", "temp_min", "temp_max", "pressure", "humidity"]}, "visibility": {"type": "integer"}, "wind": {"type": "object", "properties": {"speed": {"type": "number"}, "deg": {"type": "integer"}}, "required": ["speed", "deg"]}, "clouds": {"type": "object", "properties": {"all": {"type": "integer"}}, "required": ["all"]}, "dt": {"type": "integer"}, "sys": {"type": "object", "properties": {"type": {"type": "integer"}, "id": {"type": "integer"}, "country": {"type": "string"}, "sunrise": {"type": "integer"}, "sunset": {"type": "integer"}}, "required": ["type", "id", "country", "sunrise", "sunset"]}, "timezone": {"type": "integer"}, "id": {"type": "integer"}, "name": {"type": "string"}, "cod": {"type": "integer"}}, "required": ["coord", "weather", "base", "main", "visibility", "wind", "clouds", "dt", "sys", "timezone", "id", "name", "cod"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"MRRm_new" : 0.25066180534466836, "MRm_new" : 371.2443008693933, "HITS@1m_new" : 0.1738154586109682, "HITS@3m_new" : 0.2699108659969643, "HITS@10m_new" : 0.408038946597185}
json_instruct
{"type": "object", "properties": {"MRRm_new": {"type": "number"}, "MRm_new": {"type": "number"}, "HITS@1m_new": {"type": "number"}, "HITS@3m_new": {"type": "number"}, "HITS@10m_new": {"type": "number"}}, "required": ["MRRm_new", "MRm_new", "HITS@1m_new", "HITS@3m_new", "HITS@10m_new"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"test": {"type": "string"}}, "required": ["test"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mailgun-es6": {"type": "string"}}, "required": ["mailgun-es6"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "parse-server-advanced-mailgun-adapter", "version" : "1.0.3", "description" : "An advanced mailgun adapter for parse sever with templating options.", "main" : "index.js", "scripts" : {"test" : "echo \"Error: no test specified\" && exit 1"}, "repository" : {"type" : "git", "url" : "git+https://github.com/duffek/parse-server-advanced-mailgun-adapter.git"}, "keywords" : ["parse", "parse-server", "email-adapter"], "author" : "David Nelson", "license" : "MIT", "bugs" : {"url" : "https://github.com/duffek/parse-server-advanced-mailgun-adapter/issues"}, "homepage" : "https://github.com/duffek/parse-server-advanced-mailgun-adapter#readme", "dependencies" : {"mailgun-es6" : "^1.1.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"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "dependencies": {"type": "object", "properties": {"mailgun-es6": {"type": "string"}}, "required": ["mailgun-es6"]}}, "required": ["name", "version", "description", "main", "scripts", "repository", "keywords", "author", "license", "bugs", "homepage", "dependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "event_class__name": {"type": "string"}, "preference": {"type": "integer"}, "patterns": {"type": "array", "items": {"type": "object", "properties": {"key_re": {"type": "string"}, "value_re": {"type": "string"}}, "required": ["key_re", "value_re"]}}}, "required": ["name", "$collection", "uuid", "description", "event_class__name", "preference", "patterns"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Cisco | IOS | Config | Config Synced #1 (SYSLOG)", "$collection" : "fm.eventclassificationrules", "uuid" : "f914a6d6-9ab5-4304-bd72-66ed2f66c13b", "description" : "%C4K_REDUNDANCY-5-CONFIGSYNC: The startup-config has been successfully synchronized to the standby supervisor", "event_class__name" : "Config | Config Synced", "preference" : 1000, "patterns" : [{"key_re" : "^source$", "value_re" : "^syslog$"}, {"key_re" : "^profile$", "value_re" : "^Cisco\\.IOS$"}, {"key_re" : "^message$", "value_re" : "%C4K_REDUNDANCY-5-CONFIGSYNC: The startup-config has been successfully synchronized to the standby supervisor"}]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "$collection": {"type": "string"}, "uuid": {"type": "string"}, "description": {"type": "string"}, "event_class__name": {"type": "string"}, "preference": {"type": "integer"}, "patterns": {"type": "array", "items": {"type": "object", "properties": {"key_re": {"type": "string"}, "value_re": {"type": "string"}}, "required": ["key_re", "value_re"]}}}, "required": ["name", "$collection", "uuid", "description", "event_class__name", "preference", "patterns"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "string"}, "top": {"type": "string"}, "down": {"type": "string"}}, "required": ["particle", "side", "top", "down"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"parent" : "forgottenfruits:base/farmland_special", "textures" : {"particle" : "forgottenfruits:block/special/nether_farmland/nether_farmland_top", "side" : "forgottenfruits:block/special/nether_farmland/nether_farmland_side", "top" : "forgottenfruits:block/special/nether_farmland/nether_farmland_top", "down" : "forgottenfruits:block/special/nether_farmland/nether_farmland_bottom"}}
json_instruct
{"type": "object", "properties": {"parent": {"type": "string"}, "textures": {"type": "object", "properties": {"particle": {"type": "string"}, "side": {"type": "string"}, "top": {"type": "string"}, "down": {"type": "string"}}, "required": ["particle", "side", "top", "down"]}}, "required": ["parent", "textures"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"type" : "FeatureCollection", "features" : [{"geometry" : {"type" : "Polygon", "coordinates" : [[[-73.543471, 41.376258], [-73.542495, 41.38946], [-73.540251, 41.389517], [-73.530466, 41.392686], [-73.526131, 41.392484], [-73.520679, 41.390479], [-73.506048, 41.389376], [-73.491425, 41.385784], [-73.48539, 41.383508], [-73.477179, 41.384525], [-73.475575, 41.383397], [-73.473392, 41.377741], [-73.475352, 41.370816], [-73.469541, 41.372846], [-73.468965, 41.374102], [-73.466344, 41.375461], [-73.46367, 41.379455], [-73.459167, 41.377619], [-73.456609, 41.378931], [-73.454338, 41.381367], [-73.452013, 41.380309], [-73.446424, 41.380896], [-73.44522, 41.381934], [-73.445989, 41.385248], [-73.441851, 41.387503], [-73.44001, 41.387671], [-73.437815, 41.385248], [-73.435266, 41.380222], [-73.432646, 41.378476], [-73.435021, 41.372399], [-73.42433, 41.335289], [-73.470357, 41.326948], [-73.485401, 41.356617], [-73.501573, 41.361995], [-73.506444, 41.377409], [-73.543619, 41.375094], [-73.543471, 41.376258]]]}, "type" : "Feature", "properties" : {"cartodb_id" : 13400}}]}
json_instruct
{"type": "object", "properties": {"type": {"type": "string"}, "features": {"type": "array", "items": {"type": "object", "properties": {"geometry": {"type": "object", "properties": {"type": {"type": "string"}, "coordinates": {"type": "array", "items": {"type": "array", "items": {"type": "array", "items": {"type": "number"}}}}}, "required": ["type", "coordinates"]}, "type": {"type": "string"}, "properties": {"type": "object", "properties": {"cartodb_id": {"type": "integer"}}, "required": ["cartodb_id"]}}, "required": ["geometry", "type", "properties"]}}}, "required": ["type", "features"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate a valid JSON object that conforms to the following schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "dependencies": {"type": "object", "properties": {"babel-plugin-styled-components": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-image": {"type": "string"}, "gatsby-plugin-postcss": {"type": "string"}, "gatsby-plugin-sharp": {"type": "string"}, "gatsby-plugin-styled-components": {"type": "string"}, "gatsby-source-contentful": {"type": "string"}, "gatsby-transformer-sharp": {"type": "string"}, "gh-pages": {"type": "string"}, "postcss": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-icons": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["babel-plugin-styled-components", "gatsby", "gatsby-image", "gatsby-plugin-postcss", "gatsby-plugin-sharp", "gatsby-plugin-styled-components", "gatsby-source-contentful", "gatsby-transformer-sharp", "gh-pages", "postcss", "react", "react-dom", "react-icons", "styled-components"]}, "devDependencies": {"type": "object", "properties": {"tailwindcss": {"type": "string"}}, "required": ["tailwindcss"]}}, "required": ["name", "version", "description", "main", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "ecommerce", "version" : "1.0.0", "description" : "Sample E-commerce website", "main" : "index.js", "license" : "MIT", "scripts" : {"deploy" : "gatsby build --prefix-paths && gh-pages -d public"}, "dependencies" : {"babel-plugin-styled-components" : "^1.12.0", "gatsby" : "^2.31.1", "gatsby-image" : "^2.10.0", "gatsby-plugin-postcss" : "^3.6.0", "gatsby-plugin-sharp" : "^2.13.4", "gatsby-plugin-styled-components" : "^3.9.0", "gatsby-source-contentful" : "^4.5.3", "gatsby-transformer-sharp" : "^2.11.0", "gh-pages" : "^3.1.0", "postcss" : "^8.2.4", "react" : "^17.0.1", "react-dom" : "^17.0.1", "react-icons" : "^4.2.0", "styled-components" : "^5.2.1"}, "devDependencies" : {"tailwindcss" : "^2.0.2"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"deploy": {"type": "string"}}, "required": ["deploy"]}, "dependencies": {"type": "object", "properties": {"babel-plugin-styled-components": {"type": "string"}, "gatsby": {"type": "string"}, "gatsby-image": {"type": "string"}, "gatsby-plugin-postcss": {"type": "string"}, "gatsby-plugin-sharp": {"type": "string"}, "gatsby-plugin-styled-components": {"type": "string"}, "gatsby-source-contentful": {"type": "string"}, "gatsby-transformer-sharp": {"type": "string"}, "gh-pages": {"type": "string"}, "postcss": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}, "react-icons": {"type": "string"}, "styled-components": {"type": "string"}}, "required": ["babel-plugin-styled-components", "gatsby", "gatsby-image", "gatsby-plugin-postcss", "gatsby-plugin-sharp", "gatsby-plugin-styled-components", "gatsby-source-contentful", "gatsby-transformer-sharp", "gh-pages", "postcss", "react", "react-dom", "react-icons", "styled-components"]}, "devDependencies": {"type": "object", "properties": {"tailwindcss": {"type": "string"}}, "required": ["tailwindcss"]}}, "required": ["name", "version", "description", "main", "license", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "array", "items": {"type": "array", "items": {"type": "integer"}}, "$schema": "http://json-schema.org/draft-07/schema#"}
[[2000, 5], [2001, 7], [2002, 7], [2006, 6], [2007, 6], [2010, 5], [2011, 5], [2013, 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": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}}, "required": ["default_icon", "default_title"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["manifest_version", "name", "description", "version", "permissions", "browser_action", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"manifest_version" : 2, "name" : "YouFocus", "description" : "Blocks all Youtube videos without the education tag", "version" : "1.0", "permissions" : ["tabs", "webRequest", "webRequestBlocking", "*://*.youtube.com/*"], "browser_action" : {"default_icon" : "icon.png", "default_title" : "YouFocus"}, "background" : {"scripts" : ["background.js"]}, "content_scripts" : [{"matches" : ["*://*.youtube.com/*"], "js" : ["content.js"]}]}
json_instruct
{"type": "object", "properties": {"manifest_version": {"type": "integer"}, "name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "permissions": {"type": "array", "items": {"type": "string"}}, "browser_action": {"type": "object", "properties": {"default_icon": {"type": "string"}, "default_title": {"type": "string"}}, "required": ["default_icon", "default_title"]}, "background": {"type": "object", "properties": {"scripts": {"type": "array", "items": {"type": "string"}}}, "required": ["scripts"]}, "content_scripts": {"type": "array", "items": {"type": "object", "properties": {"matches": {"type": "array", "items": {"type": "string"}}, "js": {"type": "array", "items": {"type": "string"}}}, "required": ["matches", "js"]}}}, "required": ["manifest_version", "name", "description", "version", "permissions", "browser_action", "background", "content_scripts"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "attributes": {"type": "object", "properties": {"NX_class": {"type": "string"}}, "required": ["NX_class"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"module": {"type": "string"}, "config": {"type": "object", "properties": {"topic": {"type": "string"}, "source": {"type": "string"}}, "required": ["topic", "source"]}}, "required": ["module", "config"]}}}, "required": ["type", "name", "children"]}}}, "required": ["type", "name", "attributes", "children"]}}}, "required": ["children"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"children" : [{"type" : "group", "name" : "entry-01", "attributes" : {"NX_class" : "NXentry"}, "children" : [{"type" : "group", "name" : "axis_position", "children" : [{"module" : "f142", "config" : {"topic" : "Ymir_motion", "source" : "SES-SCAN:MC-MCU-001:m2.RBV"}}]}]}]}
json_instruct
{"type": "object", "properties": {"children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "attributes": {"type": "object", "properties": {"NX_class": {"type": "string"}}, "required": ["NX_class"]}, "children": {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string"}, "name": {"type": "string"}, "children": {"type": "array", "items": {"type": "object", "properties": {"module": {"type": "string"}, "config": {"type": "object", "properties": {"topic": {"type": "string"}, "source": {"type": "string"}}, "required": ["topic", "source"]}}, "required": ["module", "config"]}}}, "required": ["type", "name", "children"]}}}, "required": ["type", "name", "attributes", "children"]}}}, "required": ["children"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "null"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "Catholic University of Louvain", "alt_name" : "Universit\u00e9 catholique de Louvain (UCL)", "country" : "Belgium", "state" : "French Community", "address" : {"street" : "Place de l'Universit\u00e9, 1", "city" : "Louvain-la-Neuve", "province" : null, "postal_code" : "1348"}, "contact" : {"telephone" : "+32(10) 47-21-11", "website" : "http://www.uclouvain.be", "email" : "[email protected]", "fax" : "+32(10) 47-29-99"}, "funding" : null, "languages" : null, "academic_year" : "September to July (September-February; February-July)", "accrediting_agency" : null}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "alt_name": {"type": "string"}, "country": {"type": "string"}, "state": {"type": "string"}, "address": {"type": "object", "properties": {"street": {"type": "string"}, "city": {"type": "string"}, "province": {"type": "null"}, "postal_code": {"type": "string"}}, "required": ["street", "city", "province", "postal_code"]}, "contact": {"type": "object", "properties": {"telephone": {"type": "string"}, "website": {"type": "string"}, "email": {"type": "string"}, "fax": {"type": "string"}}, "required": ["telephone", "website", "email", "fax"]}, "funding": {"type": "null"}, "languages": {"type": "null"}, "academic_year": {"type": "string"}, "accrediting_agency": {"type": "null"}}, "required": ["name", "alt_name", "country", "state", "address", "contact", "funding", "languages", "academic_year", "accrediting_agency"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"web" : [{"value" : ["\u795e\u4f51", "\u6709\u798f", "\u5e78\u798f\u7684"], "key" : "Blessed"}, {"value" : ["\u795d\u798f\u4e4b\u9524", "\u795e\u5723\u4e4b\u69cc", "\u795d\u798f\u4e4b\u69cc"], "key" : "Blessed Hammer"}, {"value" : ["\u795d\u798f\u4e4b\u9524", "\u795d\u613f\u4e4b\u9524", "\u795d\u798f\u5f94\u9524"], "key" : "Blessed Hummer"}], "query" : "blessed", "translation" : ["\u795d\u798f"], "errorCode" : "0", "dict" : {"url" : "yddict://m.youdao.com/dict?le=eng&q=blessed"}, "webdict" : {"url" : "http://m.youdao.com/dict?le=eng&q=blessed"}, "basic" : {"us-phonetic" : "'bl\u025bs\u026ad", "phonetic" : "'bles\u026ad; blest", "uk-phonetic" : "'bles\u026ad; blest", "explains" : ["v. \u795d\u798f\uff08bless\u7684\u8fc7\u53bb\u5206\u8bcd\uff09", "adj. \u5e78\u798f\u7684\uff1b\u53d7\u795d\u798f\u7684\uff1b\u795e\u5723\u7684"]}, "l" : "EN2zh-CHS"}
json_instruct
{"type": "object", "properties": {"web": {"type": "array", "items": {"type": "object", "properties": {"value": {"type": "array", "items": {"type": "string"}}, "key": {"type": "string"}}, "required": ["value", "key"]}}, "query": {"type": "string"}, "translation": {"type": "array", "items": {"type": "string"}}, "errorCode": {"type": "string"}, "dict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "webdict": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "basic": {"type": "object", "properties": {"us-phonetic": {"type": "string"}, "phonetic": {"type": "string"}, "uk-phonetic": {"type": "string"}, "explains": {"type": "array", "items": {"type": "string"}}}, "required": ["us-phonetic", "phonetic", "uk-phonetic", "explains"]}, "l": {"type": "string"}}, "required": ["web", "query", "translation", "errorCode", "dict", "webdict", "basic", "l"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"_id" : "55ee5e98a80ba0020d2518b0", "index" : 2679, "guid" : "605e19e0-8cb8-4df7-b759-0763d892db01", "isActive" : true, "balance" : "$65,370.17", "picture" : "http://placehold.it/32x32", "age" : 29, "eyeColor" : "gray", "name" : "Neva Reid", "gender" : "female", "company" : "EXOTERIC", "email" : "[email protected]", "phone" : "+1 (814) 475-2575", "address" : "358 Woodhull Street, Wedgewood, Puerto Rico, 1243", "about" : "Sunt deserunt ex cillum quis laboris pariatur est duis ad aute adipisicing ea occaecat. Eu ad consequat fugiat et irure magna ullamco velit qui sunt laborum occaecat pariatur. Ex incididunt non ea elit fugiat et quis Lorem sunt est reprehenderit aliqua. Cupidatat aliqua nostrud consequat amet aliqua ut enim adipisicing eu deserunt. Reprehenderit consectetur officia enim ex et duis culpa laborum. Culpa ut nulla tempor mollit laboris nostrud pariatur sint Lorem fugiat ut incididunt. Tempor magna magna elit sunt minim.\r\n", "registered" : "2015-01-07T06:31:38 -07:00", "tags" : ["incididunt", "aliquip", "quis", "elit", "magna", "dolore", "commodo"], "friends" : [{"id" : 0, "name" : "Sherri Kline"}, {"id" : 1, "name" : "Patel Gomez"}, {"id" : 2, "name" : "Workman Clements"}], "greeting" : "Hello, Neva Reid! You have 4 unread messages.", "favoriteFruit" : "strawberry", "location" : {"latitude" : -28.648944, "longitude" : -24.727198}, "docFormat" : "json", "triples" : [{"triple" : {"subject" : "/sample-data/data-2679.json", "predicate" : "http://www.w3.org/2000/01/rdf-schema#label", "object" : "Neva Reid"}}, {"triple" : {"subject" : "/sample-data/data-2679.json", "predicate" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#type", "object" : "http://xmlns.com/foaf/0.1/Person"}}, {"triple" : {"subject" : "/sample-data/data-2679.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-1563.json"}}, {"triple" : {"subject" : "/sample-data/data-2679.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-2165.json"}}, {"triple" : {"subject" : "/sample-data/data-2679.json", "predicate" : "http://xmlns.com/foaf/0.1/knows", "object" : "/sample-data/data-731.json"}}]}
json_instruct
{"type": "object", "properties": {"_id": {"type": "string"}, "index": {"type": "integer"}, "guid": {"type": "string"}, "isActive": {"type": "boolean"}, "balance": {"type": "string"}, "picture": {"type": "string"}, "age": {"type": "integer"}, "eyeColor": {"type": "string"}, "name": {"type": "string"}, "gender": {"type": "string"}, "company": {"type": "string"}, "email": {"type": "string"}, "phone": {"type": "string"}, "address": {"type": "string"}, "about": {"type": "string"}, "registered": {"type": "string"}, "tags": {"type": "array", "items": {"type": "string"}}, "friends": {"type": "array", "items": {"type": "object", "properties": {"id": {"type": "integer"}, "name": {"type": "string"}}, "required": ["id", "name"]}}, "greeting": {"type": "string"}, "favoriteFruit": {"type": "string"}, "location": {"type": "object", "properties": {"latitude": {"type": "number"}, "longitude": {"type": "number"}}, "required": ["latitude", "longitude"]}, "docFormat": {"type": "string"}, "triples": {"type": "array", "items": {"type": "object", "properties": {"triple": {"type": "object", "properties": {"subject": {"type": "string"}, "predicate": {"type": "string"}, "object": {"type": "string"}}, "required": ["subject", "predicate", "object"]}}, "required": ["triple"]}}}, "required": ["_id", "index", "guid", "isActive", "balance", "picture", "age", "eyeColor", "name", "gender", "company", "email", "phone", "address", "about", "registered", "tags", "friends", "greeting", "favoriteFruit", "location", "docFormat", "triples"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"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/redseanet/Documents/project/node_modules/react-native-gesture-handler/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png", "source" : "/Users/redseanet/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/bb245290f5756e5b0aa9615131fe11a5/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_copy_mtrl_am_alpha.png"}, {"merged" : "/Users/redseanet/Documents/project/node_modules/react-native-gesture-handler/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png", "source" : "/Users/redseanet/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/bb245290f5756e5b0aa9615131fe11a5/res/drawable-ldrtl-xxxhdpi-v17/abc_ic_menu_cut_mtrl_alpha.png"}, {"merged" : "/Users/redseanet/Documents/project/node_modules/react-native-gesture-handler/android/build/intermediates/res/merged/release/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png", "source" : "/Users/redseanet/.gradle/caches/transforms-1/files-1.1/appcompat-v7-28.0.0.aar/bb245290f5756e5b0aa9615131fe11a5/res/drawable-ldrtl-xxxhdpi-v17/abc_spinner_mtrl_am_alpha.9.png"}]
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#"}
The schema below describes a JSON structure. Generate a valid example: {"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "binding": {"type": "object", "properties": {"strength": {"type": "string"}, "description": {"type": "string"}, "valueSetReference": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["strength", "description", "valueSetReference"]}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["path", "short", "definition", "min", "max", "type", "binding", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"resourceType" : "DataElement", "id" : "Person.link.assurance", "meta" : {"lastUpdated" : "2015-10-24T07:41:03.495+11:00"}, "url" : "http://hl7.org/fhir/DataElement/Person.link.assurance", "status" : "draft", "experimental" : true, "stringency" : "fully-specified", "element" : [{"path" : "Person.link.assurance", "short" : "level1 | level2 | level3 | level4", "definition" : "Level of assurance that this link is actually associated with the target resource.", "min" : 0, "max" : "1", "type" : [{"code" : "code"}], "binding" : {"strength" : "required", "description" : "The level of confidence that this link represents the same actual person, based on NIST Authentication Levels.", "valueSetReference" : {"reference" : "http://hl7.org/fhir/ValueSet/identity-assuranceLevel"}}, "mapping" : [{"identity" : "rim", "map" : "priorityNumber?"}]}]}
json_instruct
{"type": "object", "properties": {"resourceType": {"type": "string"}, "id": {"type": "string"}, "meta": {"type": "object", "properties": {"lastUpdated": {"type": "string"}}, "required": ["lastUpdated"]}, "url": {"type": "string"}, "status": {"type": "string"}, "experimental": {"type": "boolean"}, "stringency": {"type": "string"}, "element": {"type": "array", "items": {"type": "object", "properties": {"path": {"type": "string"}, "short": {"type": "string"}, "definition": {"type": "string"}, "min": {"type": "integer"}, "max": {"type": "string"}, "type": {"type": "array", "items": {"type": "object", "properties": {"code": {"type": "string"}}, "required": ["code"]}}, "binding": {"type": "object", "properties": {"strength": {"type": "string"}, "description": {"type": "string"}, "valueSetReference": {"type": "object", "properties": {"reference": {"type": "string"}}, "required": ["reference"]}}, "required": ["strength", "description", "valueSetReference"]}, "mapping": {"type": "array", "items": {"type": "object", "properties": {"identity": {"type": "string"}, "map": {"type": "string"}}, "required": ["identity", "map"]}}}, "required": ["path", "short", "definition", "min", "max", "type", "binding", "mapping"]}}}, "required": ["resourceType", "id", "meta", "url", "status", "experimental", "stringency", "element"], "$schema": "http://json-schema.org/draft-07/schema#"}
Based on the schema below, produce a valid JSON object: {"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" : "thermal:block/slag_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": {"token_type": {"type": "string"}, "access_token": {"type": "string"}, "expires_in": {"type": "string"}}, "required": ["token_type", "access_token", "expires_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"token_type" : "bearer", "access_token" : "a_sample_access_token", "expires_in" : "expires_in"}
json_instruct
{"type": "object", "properties": {"token_type": {"type": "string"}, "access_token": {"type": "string"}, "expires_in": {"type": "string"}}, "required": ["token_type", "access_token", "expires_in"], "$schema": "http://json-schema.org/draft-07/schema#"}
The schema below describes a JSON structure. Generate a valid example: {"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" : "Boulaur", "dpt" : "Gers", "inscrits" : 143, "abs" : 15, "votants" : 128, "blancs" : 20, "nuls" : 5, "exp" : 103, "res" : [{"panneau" : "1", "voix" : 56}, {"panneau" : "2", "voix" : 47}]}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"courseCode" : "CH5242R", "courseCredit" : "5", "description" : "This module examines one or two important historiographical works from traditional or contemporary China. Significant chapters of the texts will be selected for intensive reading and close analysis. Contemporary scholarship and sinological writings on the works will also be examined. This course is offered to graduate students with adequate knowledge of the history of China. This module is taught in Chinese.", "faculty" : "Arts and Social Science", "title" : "Selected Texts in Chinese Hist"}
json_instruct
{"type": "object", "properties": {"courseCode": {"type": "string"}, "courseCredit": {"type": "string"}, "description": {"type": "string"}, "faculty": {"type": "string"}, "title": {"type": "string"}}, "required": ["courseCode", "courseCredit", "description", "faculty", "title"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible 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" : "Barangay 641, Manila, Metropolitan Manila, National Capital Region, PH", "locale" : "ph.national-capital-region.metropolitan-manila.manila.barangay-641", "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" : "814", "city_reference" : "955", "city_name" : "Manila", "barangay_id" : "23394", "barangay_reference" : "25020", "barangay_name" : "Barangay 641"}, "geometry" : {"type" : "MultiPolygon", "coordinates" : [[[[120.991676, 14.597771], [120.992088, 14.59739], [120.991913, 14.597331], [120.990509, 14.59724], [120.989708, 14.59718], [120.988731, 14.597172], [120.988487, 14.59716], [120.988258, 14.597135], [120.988113, 14.597421], [120.988022, 14.59761], [120.987976, 14.59776], [120.987968, 14.59792], [120.987991, 14.598141], [120.988029, 14.598381], [120.988113, 14.59862], [120.988251, 14.59883], [120.988426, 14.599101], [120.988419, 14.599351], [120.988419, 14.59962], [120.988426, 14.599791], [120.988487, 14.600051], [120.988602, 14.60037], [120.98867, 14.60066], [120.988876, 14.600481], [120.98909, 14.600281], [120.989922, 14.59949], [120.990257, 14.59914], [120.990486, 14.598922], [120.990936, 14.598471], [120.991676, 14.597771]]]]}}
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#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"\uc758\uc548\uc811\uc218\uc815\ubcf4" : {"\uc758\uc548\ubc88\ud638" : ["040533"], "\uc81c\uc548\uc77c\uc790" : [""], "\uc81c\uc548\uc790" : ["\uc5c4\uc0c1\uc12d\uc758\uc6d0\uc67812\uc778"], "\ubb38\uc11c" : ["\uc758\uc548\uc6d0\ubb38"], "\uc81c\uc548\ud68c\uae30" : ["\uc81c4\ub300(1958~1960)\uc81c29\ud68c"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4" : {"\uc0c1\uc815\uc77c" : [""], "\uc758\uacb0\uc77c" : ["1958-06-23"], "\ud68c\uc758\uba85" : ["\uc81c29\ud68c\uc81c9\ucc28"], "\ud68c\uc758\uacb0\uacfc" : ["\ubd80\uacb0"], "\ud68c\uc758\ub85d" : [""]}, "parsed_date" : "2021-02-17"}
json_instruct
{"type": "object", "properties": {"\uc758\uc548\uc811\uc218\uc815\ubcf4": {"type": "object", "properties": {"\uc758\uc548\ubc88\ud638": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc77c\uc790": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\uc790": {"type": "array", "items": {"type": "string"}}, "\ubb38\uc11c": {"type": "array", "items": {"type": "string"}}, "\uc81c\uc548\ud68c\uae30": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc758\uc548\ubc88\ud638", "\uc81c\uc548\uc77c\uc790", "\uc81c\uc548\uc790", "\ubb38\uc11c", "\uc81c\uc548\ud68c\uae30"]}, "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4": {"type": "object", "properties": {"\uc0c1\uc815\uc77c": {"type": "array", "items": {"type": "string"}}, "\uc758\uacb0\uc77c": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uba85": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\uacb0\uacfc": {"type": "array", "items": {"type": "string"}}, "\ud68c\uc758\ub85d": {"type": "array", "items": {"type": "string"}}}, "required": ["\uc0c1\uc815\uc77c", "\uc758\uacb0\uc77c", "\ud68c\uc758\uba85", "\ud68c\uc758\uacb0\uacfc", "\ud68c\uc758\ub85d"]}, "parsed_date": {"type": "string"}}, "required": ["\uc758\uc548\uc811\uc218\uc815\ubcf4", "\ubcf8\ud68c\uc758 \uc2ec\uc758\uc815\ubcf4", "parsed_date"], "$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" : "3601282001", "id_kecamatan" : "360128", "name" : "Banjarmasin"}, {"id" : "3601282002", "id_kecamatan" : "360128", "name" : "Carita"}, {"id" : "3601282003", "id_kecamatan" : "360128", "name" : "Sukarame"}, {"id" : "3601282004", "id_kecamatan" : "360128", "name" : "Sukanegara"}, {"id" : "3601282005", "id_kecamatan" : "360128", "name" : "Cinoyong"}, {"id" : "3601282006", "id_kecamatan" : "360128", "name" : "Pejamben"}, {"id" : "3601282007", "id_kecamatan" : "360128", "name" : "Sukajadi"}, {"id" : "3601282008", "id_kecamatan" : "360128", "name" : "Kawoyang"}, {"id" : "3601282009", "id_kecamatan" : "360128", "name" : "Tembong"}, {"id" : "3601282010", "id_kecamatan" : "360128", "name" : "Sindanglaut"}]}
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#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["serve", "build", "lint"]}, "dependencies": {"type": "object", "properties": {"ant-design-vue": {"type": "string"}, "axios": {"type": "string"}, "babel-eslint": {"type": "string"}, "cpf-check": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "moment": {"type": "string"}, "panzoom": {"type": "string"}, "register-service-worker": {"type": "string"}, "string-mask": {"type": "string"}, "vue": {"type": "string"}, "vue-drag-drop": {"type": "string"}, "vue-resize-directive": {"type": "string"}, "vue-router": {"type": "string"}, "vue-svg-pan-zoom": {"type": "string"}, "vue-the-mask": {"type": "string"}, "vuedraggable": {"type": "string"}}, "required": ["ant-design-vue", "axios", "babel-eslint", "cpf-check", "eslint", "eslint-plugin-vue", "moment", "panzoom", "register-service-worker", "string-mask", "vue", "vue-drag-drop", "vue-resize-directive", "vue-router", "vue-svg-pan-zoom", "vue-the-mask", "vuedraggable"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-eslint": {"type": "string"}, "@vue/cli-plugin-pwa": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "@vue/eslint-config-airbnb": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-plugin-pwa", "@vue/cli-service", "@vue/eslint-config-airbnb", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "frontend", "version" : "0.1.0", "private" : true, "scripts" : {"serve" : "vue-cli-service serve", "build" : "vue-cli-service build", "lint" : "vue-cli-service lint"}, "dependencies" : {"ant-design-vue" : "^1.1.6", "axios" : "^0.18.0", "babel-eslint" : "^10.0.1", "cpf-check" : "^2.0.4", "eslint" : "^5.7.0", "eslint-plugin-vue" : "^4.7.1", "moment" : "^2.22.2", "panzoom" : "^7.0.2", "register-service-worker" : "^1.0.0", "string-mask" : "^0.3.0", "vue" : "^2.5.17", "vue-drag-drop" : "^1.1.4", "vue-resize-directive" : "^1.1.4", "vue-router" : "^3.0.1", "vue-svg-pan-zoom" : "^0.1.0", "vue-the-mask" : "^0.11.1", "vuedraggable" : "^2.16.0"}, "devDependencies" : {"@vue/cli-plugin-babel" : "^3.0.5", "@vue/cli-plugin-eslint" : "^3.0.5", "@vue/cli-plugin-pwa" : "^3.0.5", "@vue/cli-service" : "^3.0.5", "@vue/eslint-config-airbnb" : "^3.0.5", "vue-template-compiler" : "^2.5.17"}}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "private": {"type": "boolean"}, "scripts": {"type": "object", "properties": {"serve": {"type": "string"}, "build": {"type": "string"}, "lint": {"type": "string"}}, "required": ["serve", "build", "lint"]}, "dependencies": {"type": "object", "properties": {"ant-design-vue": {"type": "string"}, "axios": {"type": "string"}, "babel-eslint": {"type": "string"}, "cpf-check": {"type": "string"}, "eslint": {"type": "string"}, "eslint-plugin-vue": {"type": "string"}, "moment": {"type": "string"}, "panzoom": {"type": "string"}, "register-service-worker": {"type": "string"}, "string-mask": {"type": "string"}, "vue": {"type": "string"}, "vue-drag-drop": {"type": "string"}, "vue-resize-directive": {"type": "string"}, "vue-router": {"type": "string"}, "vue-svg-pan-zoom": {"type": "string"}, "vue-the-mask": {"type": "string"}, "vuedraggable": {"type": "string"}}, "required": ["ant-design-vue", "axios", "babel-eslint", "cpf-check", "eslint", "eslint-plugin-vue", "moment", "panzoom", "register-service-worker", "string-mask", "vue", "vue-drag-drop", "vue-resize-directive", "vue-router", "vue-svg-pan-zoom", "vue-the-mask", "vuedraggable"]}, "devDependencies": {"type": "object", "properties": {"@vue/cli-plugin-babel": {"type": "string"}, "@vue/cli-plugin-eslint": {"type": "string"}, "@vue/cli-plugin-pwa": {"type": "string"}, "@vue/cli-service": {"type": "string"}, "@vue/eslint-config-airbnb": {"type": "string"}, "vue-template-compiler": {"type": "string"}}, "required": ["@vue/cli-plugin-babel", "@vue/cli-plugin-eslint", "@vue/cli-plugin-pwa", "@vue/cli-service", "@vue/eslint-config-airbnb", "vue-template-compiler"]}}, "required": ["name", "version", "private", "scripts", "dependencies", "devDependencies"], "$schema": "http://json-schema.org/draft-07/schema#"}
Following the schema specification below, generate a valid JSON instance: {"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "1005", "provinceId" : "33", "regencyId" : "07", "districtId" : "11", "name" : "Andongsili"}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "provinceId": {"type": "string"}, "regencyId": {"type": "string"}, "districtId": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "provinceId", "regencyId", "districtId", "name"], "$schema": "http://json-schema.org/draft-07/schema#"}
Generate sample JSON data that conforms to the following schema definition: {"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "string"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "string"}, "provenance": {"type": "string"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"id" : "18122975", "tms:id" : "10095", "accession_number" : "1901-39-3366", "title" : "Drawing, \"Two Circular and Octagonal Painting for Ceiling: Deeds of Alexander the Great\", ca. 1795", "url" : "http://collection.cooperhewitt.org/objects/18122975/", "department_id" : "35347493", "period_id" : "35417089", "media_id" : "35410949", "type_id" : "35237093", "date" : "ca. 1795", "year_start" : null, "year_end" : null, "year_acquired" : "1901", "decade" : null, "woe:country" : "23424853", "medium" : "Pen and brown ink, brush and brown wash over traces of graphite on cream laid paper", "markings" : null, "signed" : null, "inscribed" : "Inscribed: Alessandro taglia il nodo/ Gordiano; vittoria delle armi; vittoria del mondo", "provenance" : "Giovanni Piancastelli, Rome", "dimensions" : "10.6 x 25.6 cm (4 3/16 x 10 1/16 in.)", "creditline" : "Museum purchase through gift of various donors", "description" : "Alexander swings his sword to cut Gordian knot, wound around shaft of chariot. Flanking with two Victories facing each other, left one carries panoply, right one globe.", "justification" : null, "type" : {"id" : "35237093", "name" : "Drawing"}, "images" : [], "participants" : [{"person_id" : "18042405", "role_id" : "35236655", "person_name" : "Felice Giani", "role_name" : "Designer", "person_url" : "http://collection.cooperhewitt.org/people/18042405/", "role_url" : "http://collection.cooperhewitt.org/roles/35236655/"}], "tombstone" : {"epitaph" : "Drawing, \"Two Circular and Octagonal Painting for Ceiling: Deeds of Alexander the Great\", ca. 1795.\nca. 1795. Pen and brown ink, brush and brown wash over traces of graphite on cream laid paper. Museum purchase through gift of various donors. 1901-39-3366."}, "colors" : []}
json_instruct
{"type": "object", "properties": {"id": {"type": "string"}, "tms:id": {"type": "string"}, "accession_number": {"type": "string"}, "title": {"type": "string"}, "url": {"type": "string"}, "department_id": {"type": "string"}, "period_id": {"type": "string"}, "media_id": {"type": "string"}, "type_id": {"type": "string"}, "date": {"type": "string"}, "year_start": {"type": "null"}, "year_end": {"type": "null"}, "year_acquired": {"type": "string"}, "decade": {"type": "null"}, "woe:country": {"type": "string"}, "medium": {"type": "string"}, "markings": {"type": "null"}, "signed": {"type": "null"}, "inscribed": {"type": "string"}, "provenance": {"type": "string"}, "dimensions": {"type": "string"}, "creditline": {"type": "string"}, "description": {"type": "string"}, "justification": {"type": "null"}, "type": {"type": "object", "properties": {"id": {"type": "string"}, "name": {"type": "string"}}, "required": ["id", "name"]}, "images": {"type": "array", "items": {}}, "participants": {"type": "array", "items": {"type": "object", "properties": {"person_id": {"type": "string"}, "role_id": {"type": "string"}, "person_name": {"type": "string"}, "role_name": {"type": "string"}, "person_url": {"type": "string"}, "role_url": {"type": "string"}}, "required": ["person_id", "role_id", "person_name", "role_name", "person_url", "role_url"]}}, "tombstone": {"type": "object", "properties": {"epitaph": {"type": "string"}}, "required": ["epitaph"]}, "colors": {"type": "array", "items": {}}}, "required": ["id", "tms:id", "accession_number", "title", "url", "department_id", "period_id", "media_id", "type_id", "date", "year_start", "year_end", "year_acquired", "decade", "woe:country", "medium", "markings", "signed", "inscribed", "provenance", "dimensions", "creditline", "description", "justification", "type", "images", "participants", "tombstone", "colors"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"hash" : "0x4fc27b779f4ea1fe934bbf8062f4f93fe10369865de55a8cc19ed2e62cf961f3", "parentHash" : "0x9badac0aa87171bc460548688492f99547cca3ea948961e6590014ece66ec10d", "number" : 50097, "timestamp" : 1438983875, "nonce" : "0xf70fb7d5ee73d76e", "difficulty" : 1509751226147, "gasLimit" : {"_hex" : "0x4fc32"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0xa50ec0D39fa913E62f1Bae7074E6F36caA71855b", "extraData" : "0x", "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#"}
Generate sample JSON data that conforms to the following schema definition: {"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" : "0xfaff92b9f35f7520ed3d9c4e72dd0af2a48ee3ad9b4219b6e0202ac657c8bcdb", "parentHash" : "0xb8c700b132c1ebe917c8ceef36e313a40012b5d096d28c10a807dfff4a37e29b", "number" : 75807, "timestamp" : 1439409603, "nonce" : "0x631209a0e4d1a645", "difficulty" : 2224439660696, "gasLimit" : {"_hex" : "0x2fefd5"}, "gasUsed" : {"_hex" : "0x0"}, "miner" : "0x123843545FB525C8E134c9A5F15ADA6865cc3848", "extraData" : "0x476574682f76312e302e312f77696e646f77732f676f312e342e32", "transactions" : []}
json_instruct
{"type": "object", "properties": {"hash": {"type": "string"}, "parentHash": {"type": "string"}, "number": {"type": "integer"}, "timestamp": {"type": "integer"}, "nonce": {"type": "string"}, "difficulty": {"type": "integer"}, "gasLimit": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "gasUsed": {"type": "object", "properties": {"_hex": {"type": "string"}}, "required": ["_hex"]}, "miner": {"type": "string"}, "extraData": {"type": "string"}, "transactions": {"type": "array", "items": {}}}, "required": ["hash", "parentHash", "number", "timestamp", "nonce", "difficulty", "gasLimit", "gasUsed", "miner", "extraData", "transactions"], "$schema": "http://json-schema.org/draft-07/schema#"}
Using the following JSON schema, generate a compatible JSON instance: {"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "id_v1": {"type": "string"}, "owner": {"type": "object", "properties": {"rid": {"type": "string"}, "rtype": {"type": "string"}}, "required": ["rid", "rtype"]}, "temperature": {"type": "object", "properties": {"temperature": {"type": "number"}, "temperature_valid": {"type": "boolean"}}, "required": ["temperature", "temperature_valid"]}, "type": {"type": "string"}}, "required": ["enabled", "id", "id_v1", "owner", "temperature", "type"]}}}, "required": ["errors", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"errors" : [], "data" : [{"enabled" : true, "id" : "84d4f11f-9ac3-4090-84dd-da8c98324faa", "id_v1" : "idv1/66", "owner" : {"rid" : "754acb08-1e9f-4946-aa4a-ee7b604c7354", "rtype" : "device"}, "temperature" : {"temperature" : 21.940000534057617, "temperature_valid" : true}, "type" : "temperature"}, {"enabled" : true, "id" : "f38996ee-4111-4c69-8d65-e7dd2c50f149", "id_v1" : "idv1/67", "owner" : {"rid" : "89264700-c386-4284-97e8-1b4a6746966b", "rtype" : "device"}, "temperature" : {"temperature" : 21.729999542236328, "temperature_valid" : true}, "type" : "temperature"}]}
json_instruct
{"type": "object", "properties": {"errors": {"type": "array", "items": {}}, "data": {"type": "array", "items": {"type": "object", "properties": {"enabled": {"type": "boolean"}, "id": {"type": "string"}, "id_v1": {"type": "string"}, "owner": {"type": "object", "properties": {"rid": {"type": "string"}, "rtype": {"type": "string"}}, "required": ["rid", "rtype"]}, "temperature": {"type": "object", "properties": {"temperature": {"type": "number"}, "temperature_valid": {"type": "boolean"}}, "required": ["temperature", "temperature_valid"]}, "type": {"type": "string"}}, "required": ["enabled", "id", "id_v1", "owner", "temperature", "type"]}}}, "required": ["errors", "data"], "$schema": "http://json-schema.org/draft-07/schema#"}
Construct a JSON document that adheres to this schema specification: {"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "questionable", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"builtin" : {"__set__" : true, "elements" : ["__future__", "__main__", "argparse", "bisect", "code", "collections", "csv", "datetime", "distutils", "doctest", "fcntl", "filecmp", "glob", "importlib", "inspect", "io", "itertools", "logging", "os", "pdb", "pickle", "pprint", "re", "shlex", "shutil", "socket", "sys", "tempfile", "textwrap", "time", "traceback", "types", "unittest"]}, "questionable" : {"__set__" : true, "elements" : ["cPickle", "cycler", "ggplot", "ipdb", "matplotlib", "numpy", "psycopg2", "pyomo", "pyutilib", "rpy2", "scipy", "switch_model"]}, "relative" : {"__set__" : true, "elements" : ["examples_test", "manager", "solve", "solve_scenarios", "test", "util", "utilities", "version"]}, "required" : {"__set__" : true, "elements" : ["pandas", "pyomo", "pyutilib", "rhosetter", "setuptools", "switch_model", "testfixtures"]}}
json_instruct
{"type": "object", "properties": {"builtin": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "questionable": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "relative": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}, "required": {"type": "object", "properties": {"__set__": {"type": "boolean"}, "elements": {"type": "array", "items": {"type": "string"}}}, "required": ["__set__", "elements"]}}, "required": ["builtin", "questionable", "relative", "required"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create a JSON structure that matches this schema definition: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "aes-example", "version" : "1.0.0", "description" : "this is an example of using node's crypto module to perform an aes encryption + decryption", "main" : "index.js", "scripts" : {"start" : "node .", "test" : "echo \"Error: no test specified\" && exit 1"}, "keywords" : ["crypto", "aes"], "author" : "wilson", "license" : "MIT"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "main": {"type": "string"}, "scripts": {"type": "object", "properties": {"start": {"type": "string"}, "test": {"type": "string"}}, "required": ["start", "test"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}}, "required": ["name", "version", "description", "main", "scripts", "keywords", "author", "license"], "$schema": "http://json-schema.org/draft-07/schema#"}
Please provide a valid JSON object following this schema: {"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"goweb": {"type": "string"}}, "required": ["goweb"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"connect": {"type": "string"}, "connect-history-api-fallback": {"type": "string"}, "debug": {"type": "string"}, "http-proxy-middleware": {"type": "string"}, "minimist": {"type": "string"}, "serve-index": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["connect", "connect-history-api-fallback", "debug", "http-proxy-middleware", "minimist", "serve-index", "serve-static"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "bin", "keywords", "author", "license", "dependencies", "repository", "bugs", "homepage", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "goweb", "version" : "1.0.1", "description" : "Run static file server goweb", "bin" : {"goweb" : "./bin/gogo"}, "keywords" : ["Static", "file", "server", "Assets"], "author" : "Gavin Xu", "license" : "MIT", "dependencies" : {"connect" : "^3.6.6", "connect-history-api-fallback" : "^1.2.0", "debug" : "^2.2.0", "http-proxy-middleware" : "^0.19.1", "minimist" : "^1.2.0", "serve-index" : "^1.9.1", "serve-static" : "^1.13.2"}, "repository" : {"type" : "git", "url" : "git://github.com/easijs/goweb.git"}, "bugs" : {"url" : "https://github.com/easijs/goweb/issues"}, "homepage" : "https://github.com/easijs/goweb", "files" : ["bin", "keys"]}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "version": {"type": "string"}, "description": {"type": "string"}, "bin": {"type": "object", "properties": {"goweb": {"type": "string"}}, "required": ["goweb"]}, "keywords": {"type": "array", "items": {"type": "string"}}, "author": {"type": "string"}, "license": {"type": "string"}, "dependencies": {"type": "object", "properties": {"connect": {"type": "string"}, "connect-history-api-fallback": {"type": "string"}, "debug": {"type": "string"}, "http-proxy-middleware": {"type": "string"}, "minimist": {"type": "string"}, "serve-index": {"type": "string"}, "serve-static": {"type": "string"}}, "required": ["connect", "connect-history-api-fallback", "debug", "http-proxy-middleware", "minimist", "serve-index", "serve-static"]}, "repository": {"type": "object", "properties": {"type": {"type": "string"}, "url": {"type": "string"}}, "required": ["type", "url"]}, "bugs": {"type": "object", "properties": {"url": {"type": "string"}}, "required": ["url"]}, "homepage": {"type": "string"}, "files": {"type": "array", "items": {"type": "string"}}}, "required": ["name", "version", "description", "bin", "keywords", "author", "license", "dependencies", "repository", "bugs", "homepage", "files"], "$schema": "http://json-schema.org/draft-07/schema#"}
Create an example JSON object that satisfies this schema: {"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}, "compile": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "clean", "compile", "prepublishOnly", "test"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "dependencies": {"type": "object", "properties": {"@workhard/react-core": {"type": "string"}, "@workhard/react-utils": {"type": "string"}, "react-bootstrap": {"type": "string"}, "recharts": {"type": "string"}}, "required": ["@workhard/react-core", "@workhard/react-utils", "react-bootstrap", "recharts"]}, "files": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-bootstrap": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@types/react", "@types/react-bootstrap", "react", "react-dom"]}, "gitHead": {"type": "string"}}, "required": ["name", "description", "version", "main", "types", "license", "scripts", "peerDependencies", "dependencies", "files", "devDependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}
{"name" : "@workhard/react-components", "description" : "Component library", "version" : "0.1.3", "main" : "dist/index", "types" : "dist/index", "license" : "GPL-3.0", "scripts" : {"build" : "yarn run clean && yarn run compile", "clean" : "rimraf -rf ./dist", "compile" : "tsc -p tsconfig.build.json", "prepublishOnly" : "yarn run build", "test" : "yarn run build"}, "peerDependencies" : {"react" : "~17.0.0"}, "dependencies" : {"@workhard/react-core" : "^0.1.3", "@workhard/react-utils" : "^0.1.3", "react-bootstrap" : "^1.4.3", "recharts" : "^2.0.9"}, "files" : ["dist"], "devDependencies" : {"@types/react" : "~17.0.0", "@types/react-bootstrap" : "^0.32.25", "react" : "~17.0.0", "react-dom" : "~17.0.0"}, "gitHead" : "426ee5e0a1eebb510c790c57c8f64c645226eb97"}
json_instruct
{"type": "object", "properties": {"name": {"type": "string"}, "description": {"type": "string"}, "version": {"type": "string"}, "main": {"type": "string"}, "types": {"type": "string"}, "license": {"type": "string"}, "scripts": {"type": "object", "properties": {"build": {"type": "string"}, "clean": {"type": "string"}, "compile": {"type": "string"}, "prepublishOnly": {"type": "string"}, "test": {"type": "string"}}, "required": ["build", "clean", "compile", "prepublishOnly", "test"]}, "peerDependencies": {"type": "object", "properties": {"react": {"type": "string"}}, "required": ["react"]}, "dependencies": {"type": "object", "properties": {"@workhard/react-core": {"type": "string"}, "@workhard/react-utils": {"type": "string"}, "react-bootstrap": {"type": "string"}, "recharts": {"type": "string"}}, "required": ["@workhard/react-core", "@workhard/react-utils", "react-bootstrap", "recharts"]}, "files": {"type": "array", "items": {"type": "string"}}, "devDependencies": {"type": "object", "properties": {"@types/react": {"type": "string"}, "@types/react-bootstrap": {"type": "string"}, "react": {"type": "string"}, "react-dom": {"type": "string"}}, "required": ["@types/react", "@types/react-bootstrap", "react", "react-dom"]}, "gitHead": {"type": "string"}}, "required": ["name", "description", "version", "main", "types", "license", "scripts", "peerDependencies", "dependencies", "files", "devDependencies", "gitHead"], "$schema": "http://json-schema.org/draft-07/schema#"}