[PATCH v2 2/9] bitbake-setup.schema.json: Add examples property
Rob Woolley <[email protected]>
| Newsgroups | org.openembedded.lists.bitbake-devel |
|---|---|
| Message-ID | <[email protected]> |
This resolves the jsonschema linting error:
Set a non-empty examples array at the top level of the schema
to illustrate the expected data (top_level_examples)
This example intentionally only references bitbake as a minimal
example that focuses on the tool itself.
Signed-off-by: Rob Woolley <[email protected]>
---
setup-schema/bitbake-setup.schema.json | 27 ++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/setup-schema/bitbake-setup.schema.json b/setup-schema/bitbake-setup.schema.json
index d340c9785..3324546de 100644
--- a/setup-schema/bitbake-setup.schema.json
+++ b/setup-schema/bitbake-setup.schema.json
@@ -1,6 +1,33 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Schema for bitbake-setup configuration files",
+ "examples" : [
+ {
+ "description": "Example bitbake-setup configuration file",
+ "sources": {
+ "bitbake": {
+ "git-remote": {
+ "remotes": {
+ "origin": {
+ "uri": "https://git.openembedded.org/bitbake"
+ }
+ },
+ "branch": "master",
+ "rev": "master"
+ },
+ "path": "bitbake"
+ }
+ },
+ "bitbake-setup": {
+ "configurations": [
+ {
+ "bb-layers": ["openembedded-core/meta","meta-yocto/meta-yocto-bsp","meta-yocto/meta-poky"]
+ }
+ ]
+ },
+ "version": "1.0"
+ }
+ ],
"title": "bitbake-setup configuration file",
"type": "object",
"required": [
--
2.49.0