* feat: OS Release Module * docs: clearer description * chore: update shortdesc to match new description --------- Co-authored-by: xyny <60004820+xynydev@users.noreply.github.com>
13 lines
309 B
Text
13 lines
309 B
Text
import "@typespec/json-schema";
|
|
using TypeSpec.JsonSchema;
|
|
|
|
@jsonSchema("/modules/os-release-latest.json")
|
|
model OsReleaseLatest {
|
|
...OsReleaseV1;
|
|
}
|
|
|
|
@jsonSchema("/modules/os-release-v1.json")
|
|
model OsReleaseV1 {
|
|
/** The properties of the `/etc/os-release` file to set. */
|
|
properties: Record<string>;
|
|
}
|