Skip to content

Commit ce17b57

Browse files
committed
Fix the $schema in jsonschema files
The $schema property was updated by mistake in search/replace of draft to v0.1.0-draft. Fixing the schema now. Signed-off-by: Andrea Frittoli <[email protected]>
1 parent 749b7c6 commit ce17b57

33 files changed

+33
-33
lines changed

schemas/artifactpackaged.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/artifact-packaged-event",
44
"properties": {
55
"context": {

schemas/artifactpublished.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/artifact-published-event",
44
"properties": {
55
"context": {

schemas/branchcreated.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/branch-created-event",
44
"properties": {
55
"context": {

schemas/branchdeleted.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/branch-deleted-event",
44
"properties": {
55
"context": {

schemas/buildfinished.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/build-finished-event",
44
"properties": {
55
"context": {

schemas/buildqueued.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/build-queued-event",
44
"properties": {
55
"context": {

schemas/buildstarted.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/build-started-event",
44
"properties": {
55
"context": {

schemas/changeabandoned.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/change-abandoned-event",
44
"properties": {
55
"context": {

schemas/changecreated.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/change-created-event",
44
"properties": {
55
"context": {

schemas/changemerged.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://json-schema.org/0.1.0-draft/2020-12/schema",
2+
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://cdevents.dev/0.1.0-draft/schema/change-merged-event",
44
"properties": {
55
"context": {

0 commit comments

Comments
 (0)