Some checks failed
Docs CI / lint-and-preview (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Notify Smoke Test / Notify Unit Tests (push) Has been cancelled
Notify Smoke Test / Notifier Service Tests (push) Has been cancelled
Notify Smoke Test / Notification Smoke Test (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
49 lines
1.7 KiB
C#
49 lines
1.7 KiB
C#
using System.Collections.Immutable;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using NJsonSchema;
|
|
using NJsonSchema.Generation;
|
|
using NJsonSchema.Generation.SystemTextJson;
|
|
using Newtonsoft.Json;
|
|
using StellaOps.Scheduler.Models;
|
|
|
|
var output = args.Length switch
|
|
{
|
|
0 => Path.GetFullPath(Path.Combine(AppContext.BaseDirectory, "..", "..", "..", "docs", "schemas")),
|
|
1 => Path.GetFullPath(args[0]),
|
|
_ => throw new ArgumentException("Usage: dotnet run --project src/Tools/PolicySchemaExporter -- [outputDirectory]")
|
|
};
|
|
|
|
Directory.CreateDirectory(output);
|
|
|
|
var generatorSettings = new SystemTextJsonSchemaGeneratorSettings
|
|
{
|
|
SchemaType = SchemaType.JsonSchema,
|
|
DefaultReferenceTypeNullHandling = ReferenceTypeNullHandling.NotNull,
|
|
SerializerOptions = new JsonSerializerOptions
|
|
{
|
|
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
|
|
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull,
|
|
},
|
|
};
|
|
|
|
var generator = new JsonSchemaGenerator(generatorSettings);
|
|
|
|
var exports = ImmutableArray.Create(
|
|
(FileName: "policy-run-request.schema.json", Type: typeof(PolicyRunRequest)),
|
|
(FileName: "policy-run-status.schema.json", Type: typeof(PolicyRunStatus)),
|
|
(FileName: "policy-diff-summary.schema.json", Type: typeof(PolicyDiffSummary)),
|
|
(FileName: "policy-explain-trace.schema.json", Type: typeof(PolicyExplainTrace))
|
|
);
|
|
|
|
foreach (var export in exports)
|
|
{
|
|
var schema = generator.Generate(export.Type);
|
|
schema.Title = export.Type.Name;
|
|
schema.AllowAdditionalProperties = false;
|
|
|
|
var outputPath = Path.Combine(output, export.FileName);
|
|
await File.WriteAllTextAsync(outputPath, schema.ToJson(Formatting.Indented) + Environment.NewLine);
|
|
Console.WriteLine($"Wrote {outputPath}");
|
|
}
|