From 107625e14062b9cc88a3d8e88238f29f568836a5 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Thu, 17 Jul 2025 13:26:15 -0400 Subject: [PATCH] fix: Forgot type property on os-release type spec --- modules/os-release/os-release.tsp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/os-release/os-release.tsp b/modules/os-release/os-release.tsp index 4cb3d0f..de3b649 100644 --- a/modules/os-release/os-release.tsp +++ b/modules/os-release/os-release.tsp @@ -8,6 +8,11 @@ model OsReleaseLatest { @jsonSchema("/modules/os-release-v1.json") model OsReleaseV1 { + /** The `os-release` module offers a way to modify and set values in the `/etc/os-release` file in your image. + * https://blue-build.org/reference/modules/os-release/ + */ + type: "os-release" | "os-release@v1" | "os-release@latest"; + /** The properties of the `/etc/os-release` file to set. */ properties: Record; }