-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update keywords and schema for hover provider tools
Co-Authored-By: mabagoury <wnajsksos@gmail.com>
- Loading branch information
1 parent
3df05e7
commit cafff20
Showing
86 changed files
with
1,179 additions
and
304 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
const id = "https://json-schema.org/keyword/draft-04/exclusiveMaximum"; | ||
const compile = (schema) => schema.value; | ||
const interpret = () => true; | ||
const description = "Modifies the maximum keyword to succeed if the numberic instance is less than, but not equal to, the given number"; | ||
|
||
export default { id, compile, interpret }; | ||
export default { id, compile, interpret, description }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
const id = "https://json-schema.org/keyword/draft-04/exclusiveMinimum"; | ||
const compile = (schema) => schema.value; | ||
const interpret = () => true; | ||
const description = "Modifies the minimum keyword to succeed if the numberic instance is greater than, but not equal to, the given number"; | ||
|
||
export default { id, compile, interpret }; | ||
export default { id, compile, interpret, description }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
export default { id: "https://json-schema.org/keyword/draft-04/id" }; | ||
export default { | ||
id: "https://json-schema.org/keyword/draft-04/id", | ||
description: "This keyword declares an identifier for the schema resource or a local anchor." | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
export default { id: "https://json-schema.org/keyword/draft-04/ref" }; | ||
export default { | ||
id: "https://json-schema.org/keyword/draft-04/ref", | ||
description: "This keyword is used to reference a statically identified schema." | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.