Skip to content

Commit 767d4bf

Browse files
committed
fix(schema): Update JSON schema URI protocol
Corrects the schema definition URI to use HTTP, ensuring proper resolution.
1 parent cb544ed commit 767d4bf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/GitVersion.Schema/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030

3131
var builder = new JsonSchemaBuilder();
32-
const string jsonSchemaUri = "https://json-schema.org/draft-07/schema#";
32+
const string jsonSchemaUri = "http://json-schema.org/draft-07/schema#";
3333
builder.Schema(jsonSchemaUri);
3434
builder.Id($"https://gitversion.net/schemas/{schemaVersion}/GitVersion.configuration.json");
3535
builder.Title($"GitVersion Configuration ({schemaVersion})");

0 commit comments

Comments
 (0)