diff options
| author | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-03-31 01:30:36 +0200 |
|---|---|---|
| committer | Lizzy Fleckenstein <lizzy@vlhl.dev> | 2026-03-31 01:30:36 +0200 |
| commit | 8e2ff15dbd3fe70fe2b52397b1eaba3fe2d7a5e8 (patch) | |
| tree | 925fa596210d1a1f01e00e0743a643f4552e7a7a /tools/Vulkan-Tools/vulkaninfo/json_validation_process.md | |
| parent | 1f17b4df127bd280e50d93a46ae93df704adc2b0 (diff) | |
| parent | 90bf5bc4fd8bea0d300f6564af256a51a34124b8 (diff) | |
| download | usermoji-8e2ff15dbd3fe70fe2b52397b1eaba3fe2d7a5e8.tar.xz | |
add tools/Vulkan-Tools
Diffstat (limited to 'tools/Vulkan-Tools/vulkaninfo/json_validation_process.md')
| -rw-r--r-- | tools/Vulkan-Tools/vulkaninfo/json_validation_process.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tools/Vulkan-Tools/vulkaninfo/json_validation_process.md b/tools/Vulkan-Tools/vulkaninfo/json_validation_process.md new file mode 100644 index 00000000..32df4f6f --- /dev/null +++ b/tools/Vulkan-Tools/vulkaninfo/json_validation_process.md @@ -0,0 +1,24 @@ +# Validating [vulkaninfo](https://github.com/KhronosGroup/Vulkan-Tools/tree/main/vulkaninfo) JSON output + +The format of vulkaninfo's JSON output is designed to be used as input for the +[Vulkan Profiles](https://github.com/KhronosGroup/Vulkan-Profiles) +solution. + +The Vulkan Profiles JSON schema specifies exactly how the JSON must be structured. +The schemas may be found at [here](https://schema.khronos.org/vulkan/). +Select the latest schema that `vulkaninfo` was designed to be used with, or simply take the latest available schema. + +## Steps to validate JSON data against the Vulkan Profiles schema + +1. Generate the text to be tested using `vulkaninfo --json` which creates a `.json` file automatically. +1. Download the [Vulkan Profiles schema](https://schema.khronos.org/vulkan/) to another file. +1. For each of the on-line JSON validator tools listed below: + 1. Paste the schema and and sample text into the `schema` and `data` fields. + 1. Depending on the tool, it may validate automatically, or require clicking a `validate` button. + 1. Ensure the tool reports no errors. + +## List of recommended JSON validator tools + +* https://www.jsonschemavalidator.net/ +* https://jsonschemalint.com/#/version/draft-04/markup/json +* https://json-schema-validator.herokuapp.com/index.jsp |
