This repository contains the common blueprint JSON Schema and Go types for Image Builder / osbuild customization configuration.
On-line validator and converter available!
WORK IN PROGRESS
- UBP aka Unified Blueprint: The new structure in this repo available in
pkg/ubp. - BP aka Blueprint: The (legacy) blueprint as it exists in osbuild/blueprint, is user-facing in osbuild-composer, and is documented on osbuild.org
- CRC Blueprint: The blueprint as it exists in image-builder-crc, is user-facing in the service API, and is documented on osbuild.org. This is very close but sometimes slightly different from the Blueprint.
- Images Blueprint: The format and code that currently exists in osbuild/images in
pkg/ubp, which slightly differs from BP in that it was more aggressive in dropping deprecated options (like SSHKey).
All schema source files are in oas/ directory, each component resides in its own YAML file in oas/components. Make sure to create component for each object that is supposed to be a Go type (struct). There is a README in the oas/ directory with some tips on how to write OAS3 schemas.
blueprint-oas3.yaml- OpenAPI 3.0 schema, the blueprint document is at#/components/schemas/blueprintblueprint-oas3.json- the same schema but in JSON formatblueprint-oas3-ext.json- the schema with additional "extensions" which would confuse Go code generator but are useful for validation purposes, they are defined inoas/extensions
All the mentioned files are generated using make schema
Go code is generated from blueprint-oas3.json via oapi-codegen using make schema.
All the code resides in pkg/ubp except embedded schemas from above which are in the top-level directory for technical reasons (Go embedding limitations). Direct access to schema files is not required for any scenario, so only import the former package.
All schema default values specified via default field must also have a proper handling via UnmarshalJSON and MarshalJSON and a test in default_values_test.go. Only those default values that are independent of operating system, version or architecture can be defined this way. For the dependent default values, use schema description to explain what they are.
A simple CLI tool for schema bundling, schema validation or conversion is part of this library:
go run github.com/osbuild/blueprint-schema/cmd/image-builder-blueprint/ -h
The usage is self-explanatory:
Usage of image-builder-blueprint:
-export-json
convert document into legacy JSON
-export-toml
convert document into legacy TOML
-input string
input JSON or YAML file (defaults to standard input, detects format)
-print-json-extended-schema
print embedded schema to standard output and exit
-print-json-schema
print embedded schema to standard output and exit
-print-yaml-schema
print embedded schema to standard output and exit
-validate
validate input document (detects JSON or YAML format)
Example validation:
go run github.com/osbuild/blueprint-schema/cmd/image-builder-blueprint/ -validate -input testdata/all-fields.in.yaml
The return value is non-zero when validation fails and error is printed on the standard error. Example export:
go run github.com/osbuild/blueprint-schema/cmd/image-builder-blueprint/ -export-toml -input testdata/valid-kernel.in.yaml
Output (TOML):
name = "Blueprint example: kernel"
version = "408.5848.48376"
[customizations]
[customizations.kernel]
name = "kernel-debug-6.11.5-300"
append = "nosmt=force crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M"Blueprint types have only JSON Go struct tags because mixing them with other tags like YAML will create inconsistencies, specifically for some Go types (date, time). To prevent that, loading from YAML is done via converting to JSON first. There are several helper functions available in the package which take/return the Blueprint type:
- ReadYAML
- WriteYAML
- ReadJSON
- WriteJSON
- MarshalYAML
- UnmarshalYAML
- MarshalJSON
- UnmarshalJSON
- UnmarshalAny
The UnmarshalAny function performs detection of any of the following formats:
- UBP YAML
- UBP JSON
- BP TOML
- BP JSON
It case BP format is detected, it automatically converts the data structure to UBP. The function returns the following:
- UBP (original or converted data)
- BP (original BP data or nil if no conversion was necessary)
- error (wrapped errors)
- error (wrapped warnings if conversion ran into something)
When fatal parsing error occurs, wrapped errors are prefixed with YAML, JSON or TOML respectively and some of them will be false positives because the implementation tries to load the buffer via all three unmarshalers. Conversion warnings shall be always ignored, they are only informative.
Example:
package main
import "github.com/osbuild/blueprint-schema/pkg/parse"
func main() {
blueprint, err := parse.ReadYAML(os.Stdin)
}To validate JSON or YAML buffers, use CompileBundledSchema function alongside with:
ValidateYAMLValidateJSONValidateAny- detects YAML/JSON and performs validation
All functions use oapi-codegen OpenAPI validator.
package main
import "github.com/osbuild/blueprint-schema/pkg/parse"
func main() {
schema = parse.CompileBundledSchema()
err = schema.ValidateYAML(context.Background(), buffer)
}Default values need to be handled via UnmarshalJSON method with a temporary custom type:
func (dr *DNFRepoUsage) UnmarshalJSON(data []byte) error {
type tmpType DNFRepoUsage
tmp := tmpType(*dr)
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
if tmp.Configure == nil {
tmp.Configure = ptr.To(true)
}
if tmp.Install == nil {
tmp.Install = ptr.To(true)
}
*dr = DNFRepoUsage(tmp)
return nil
}Note pointer receiver, for MarshalJSON a value receiver must be used in order to prevent modifying:
func (dr DNFRepoUsage) MarshalJSON() ([]byte, error) {
type tmpType DNFRepoUsage
tmp := tmpType(dr)
if tmp.Configure != nil && *tmp.Configure {
tmp.Configure = nil
}
if tmp.Install != nil && *tmp.Install {
tmp.Install = nil
}
return json.Marshal(tmp)
}For Go 1.24+ IsZero should be used as well:
func (dr DNFRepoUsage) IsZero() bool {
return (dr.Configure == nil || *dr.Configure) && (dr.Install == nil || *dr.Install)
}Conversion from/to TOML has some limitations:
- File system node
Modecannot be marshaled to octal number since the underlying JSON format does not support that despite YAML can do it.
Various advanced validation rules do not work well with Go code generator, therefore these are kept separate in oas/extensions directory and are only applied to blueprint-oas3-ext.json bundled schema. This schema must be only used for validation purposes and not for code generation.
To run tests against fixtures: make test and to regenerate fixtures: make write-fixtures
For every filename.in.xxx where xxx can be yaml, toml or json the test suite will load the file via UnmarshalAny and convert it either UBP>BP or BP>UBP and stores the result as filename.out1.txt. Then it performs conversion back and stores filename.out2.txt. And finally, it performs semantic UBP struct diff between filename.in.xxx and filename.out2.txt. If there are no differences, no out.diff file is ever created. These diff files are not subject of testing, make test will not error out if difference is different because diff-of-diff is hardly readable.
Additionally, every filename.in.yaml input file can have filename.validator.out.txt output if OpenAPI Schema validator returned any error. The output is compared when make test is executed for any difference. Example:
example.in.yaml: UBP input fileexample.out1.txt:UBP>BPconverted TOML fileexample.out2.txt:BP>UBPconverted YAML fileexample.validator.out.diff: validator errors or does not exist if none (only for UBP input files)example.out.diff: semantic difference betweenin.yamlandout2.txtor does not exist if none
A file named 0_log.txt is created during fixture writing, it contains some statistics pulled out of the autodetection code in UnmarshalAny.