Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed BOM character. Changed schema URL. Fixed array schema #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions add_sensortag/add_sensortag.input.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"SensorTag" : {
"type": "array"
"type": "array",
"items": {
"type":"string"
}
}
},
"required": [
"SensorTag"
],
"type": "object"
}
}
2 changes: 1 addition & 1 deletion add_sensortag/add_sensortag.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"SensorTag" : {
"type": "string"
Expand Down
6 changes: 3 additions & 3 deletions disable_service/disable_service.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Name": {
"type": "string"
Expand All @@ -9,4 +9,4 @@
"Name"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions disable_service/disable_service.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Name": {
"type": "string"
Expand All @@ -17,4 +17,4 @@
"StartType"
],
"type": "object"
}
}
2 changes: 1 addition & 1 deletion find_file/find_file.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema":"https://json-schema.org/draft/2020-12/schema",
"$schema":"https://json-schema.org/draft-07/schema",
"properties": {
"Path": {
"type": "string"
Expand Down
6 changes: 3 additions & 3 deletions find_file/find_file.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties":{
"Id": {
"type": "integer"
Expand All @@ -17,4 +17,4 @@
"Output"
],
"type":"object"
}
}
6 changes: 3 additions & 3 deletions get_baseboard/get_baseboard.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_baseboard/get_baseboard.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Manufacturer": {
"type": "string"
Expand All @@ -21,4 +21,4 @@
"SerialNumber"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_bios/get_bios.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_bios/get_bios.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Manufacturer": {
"type": "string"
Expand All @@ -21,4 +21,4 @@
"Version"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_current_user/get_current_user.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_current_user/get_current_user.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"SessionId": {
"type": "integer"
Expand All @@ -13,4 +13,4 @@
"UserName"
],
"type": "object"
}
}
2 changes: 1 addition & 1 deletion get_fileinfo/get_fileinfo.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"File" : {
"type": "string",
Expand Down
4 changes: 2 additions & 2 deletions get_fileinfo/get_fileinfo.output.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"CompanyName": {
Expand Down Expand Up @@ -49,4 +49,4 @@
"Sha256"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_geolocation/get_geolocation.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_geolocation/get_geolocation.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"status": {
"type": "string"
Expand Down Expand Up @@ -62,4 +62,4 @@
"query"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_last_boot/get_last_boot.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_last_boot/get_last_boot.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"LastBootUpTime": {
"type": "integer"
Expand All @@ -9,4 +9,4 @@
"LastBootUpTime"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_processor/get_processor.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
4 changes: 2 additions & 2 deletions get_processor/get_processor.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"ProcessorId": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion get_sensortag/get_sensortag.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
2 changes: 1 addition & 1 deletion get_sensortag/get_sensortag.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"SensorTag" : {
"type": "string"
Expand Down
6 changes: 3 additions & 3 deletions get_service/get_service.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Name": {
"type": "string"
Expand All @@ -9,4 +9,4 @@
"Name"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_service/get_service.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"ProcessId": {
"type": "integer"
Expand All @@ -17,4 +17,4 @@
"PathName"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_temp_file/get_temp_file.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"Username": {
"type": "string"
Expand All @@ -12,4 +12,4 @@
}
},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_temp_file/get_temp_file.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties":{
"Id": {
"type": "integer"
Expand All @@ -17,4 +17,4 @@
"Output"
],
"type":"object"
}
}
6 changes: 3 additions & 3 deletions get_tpm/get_tpm.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_tpm/get_tpm.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"TpmPresent": {
"type": "boolean"
Expand Down Expand Up @@ -77,4 +77,4 @@
"SelfTest"
],
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_windows_key/get_windows_key.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
6 changes: 3 additions & 3 deletions get_windows_key/get_windows_key.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"OA3xOriginalProductKey": {
"type": "string"
Expand All @@ -9,4 +9,4 @@
"OA3xOriginalProductKey"
],
"type": "object"
}
}
2 changes: 1 addition & 1 deletion list_application/list_application.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
2 changes: 1 addition & 1 deletion list_application/list_application.output.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {
"DisplayName": {
"type": "string"
Expand Down
6 changes: 3 additions & 3 deletions list_arp/list_arp.input.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
{
"$schema": "https://json-schema.org/draft-07/schema",
"properties": {},
"type": "object"
}
}
Loading