Skip to content

Commit eca1fa7

Browse files
authored
fix: revert use HTTPS on $schema urls to avoid mixed content
This reverts commit 73cef7a.
1 parent e4a9173 commit eca1fa7

File tree

8 files changed

+133
-133
lines changed

8 files changed

+133
-133
lines changed

schemas/1.0.0.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "AsyncAPI 1.0 schema.",
33
"id": "http://asyncapi.hitchhq.com/v1/schema.json#",
4-
"$schema": "https://json-schema.org/draft-04/schema#",
4+
"$schema": "http://json-schema.org/draft-04/schema#",
55
"type": "object",
66
"required": [
77
"asyncapi",
@@ -306,58 +306,58 @@
306306
"type": "string"
307307
},
308308
"title": {
309-
"$ref": "https://json-schema.org/draft-04/schema#/properties/title"
309+
"$ref": "http://json-schema.org/draft-04/schema#/properties/title"
310310
},
311311
"description": {
312-
"$ref": "https://json-schema.org/draft-04/schema#/properties/description"
312+
"$ref": "http://json-schema.org/draft-04/schema#/properties/description"
313313
},
314314
"default": {
315-
"$ref": "https://json-schema.org/draft-04/schema#/properties/default"
315+
"$ref": "http://json-schema.org/draft-04/schema#/properties/default"
316316
},
317317
"multipleOf": {
318-
"$ref": "https://json-schema.org/draft-04/schema#/properties/multipleOf"
318+
"$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf"
319319
},
320320
"maximum": {
321-
"$ref": "https://json-schema.org/draft-04/schema#/properties/maximum"
321+
"$ref": "http://json-schema.org/draft-04/schema#/properties/maximum"
322322
},
323323
"exclusiveMaximum": {
324-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
324+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
325325
},
326326
"minimum": {
327-
"$ref": "https://json-schema.org/draft-04/schema#/properties/minimum"
327+
"$ref": "http://json-schema.org/draft-04/schema#/properties/minimum"
328328
},
329329
"exclusiveMinimum": {
330-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
330+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
331331
},
332332
"maxLength": {
333-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
333+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
334334
},
335335
"minLength": {
336-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
336+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
337337
},
338338
"pattern": {
339-
"$ref": "https://json-schema.org/draft-04/schema#/properties/pattern"
339+
"$ref": "http://json-schema.org/draft-04/schema#/properties/pattern"
340340
},
341341
"maxItems": {
342-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
342+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
343343
},
344344
"minItems": {
345-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
345+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
346346
},
347347
"uniqueItems": {
348-
"$ref": "https://json-schema.org/draft-04/schema#/properties/uniqueItems"
348+
"$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems"
349349
},
350350
"maxProperties": {
351-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
351+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
352352
},
353353
"minProperties": {
354-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
354+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
355355
},
356356
"required": {
357-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/stringArray"
357+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/stringArray"
358358
},
359359
"enum": {
360-
"$ref": "https://json-schema.org/draft-04/schema#/properties/enum"
360+
"$ref": "http://json-schema.org/draft-04/schema#/properties/enum"
361361
},
362362
"additionalProperties": {
363363
"anyOf": [
@@ -371,7 +371,7 @@
371371
"default": {}
372372
},
373373
"type": {
374-
"$ref": "https://json-schema.org/draft-04/schema#/properties/type"
374+
"$ref": "http://json-schema.org/draft-04/schema#/properties/type"
375375
},
376376
"items": {
377377
"anyOf": [
@@ -801,49 +801,49 @@
801801
}
802802
},
803803
"title": {
804-
"$ref": "https://json-schema.org/draft-04/schema#/properties/title"
804+
"$ref": "http://json-schema.org/draft-04/schema#/properties/title"
805805
},
806806
"description": {
807-
"$ref": "https://json-schema.org/draft-04/schema#/properties/description"
807+
"$ref": "http://json-schema.org/draft-04/schema#/properties/description"
808808
},
809809
"default": {
810-
"$ref": "https://json-schema.org/draft-04/schema#/properties/default"
810+
"$ref": "http://json-schema.org/draft-04/schema#/properties/default"
811811
},
812812
"multipleOf": {
813-
"$ref": "https://json-schema.org/draft-04/schema#/properties/multipleOf"
813+
"$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf"
814814
},
815815
"maximum": {
816-
"$ref": "https://json-schema.org/draft-04/schema#/properties/maximum"
816+
"$ref": "http://json-schema.org/draft-04/schema#/properties/maximum"
817817
},
818818
"exclusiveMaximum": {
819-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
819+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
820820
},
821821
"minimum": {
822-
"$ref": "https://json-schema.org/draft-04/schema#/properties/minimum"
822+
"$ref": "http://json-schema.org/draft-04/schema#/properties/minimum"
823823
},
824824
"exclusiveMinimum": {
825-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
825+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
826826
},
827827
"maxLength": {
828-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
828+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
829829
},
830830
"minLength": {
831-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
831+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
832832
},
833833
"pattern": {
834-
"$ref": "https://json-schema.org/draft-04/schema#/properties/pattern"
834+
"$ref": "http://json-schema.org/draft-04/schema#/properties/pattern"
835835
},
836836
"maxItems": {
837-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
837+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
838838
},
839839
"minItems": {
840-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
840+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
841841
},
842842
"uniqueItems": {
843-
"$ref": "https://json-schema.org/draft-04/schema#/properties/uniqueItems"
843+
"$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems"
844844
},
845845
"enum": {
846-
"$ref": "https://json-schema.org/draft-04/schema#/properties/enum"
846+
"$ref": "http://json-schema.org/draft-04/schema#/properties/enum"
847847
}
848848
}
849849
}

schemas/1.1.0.json

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"title": "AsyncAPI 1.1.0 schema.",
33
"id": "http://asyncapi.hitchhq.com/v1/schema.json#",
4-
"$schema": "https://json-schema.org/draft-04/schema#",
4+
"$schema": "http://json-schema.org/draft-04/schema#",
55
"type": "object",
66
"required": [
77
"asyncapi",
@@ -308,58 +308,58 @@
308308
"type": "string"
309309
},
310310
"title": {
311-
"$ref": "https://json-schema.org/draft-04/schema#/properties/title"
311+
"$ref": "http://json-schema.org/draft-04/schema#/properties/title"
312312
},
313313
"description": {
314-
"$ref": "https://json-schema.org/draft-04/schema#/properties/description"
314+
"$ref": "http://json-schema.org/draft-04/schema#/properties/description"
315315
},
316316
"default": {
317-
"$ref": "https://json-schema.org/draft-04/schema#/properties/default"
317+
"$ref": "http://json-schema.org/draft-04/schema#/properties/default"
318318
},
319319
"multipleOf": {
320-
"$ref": "https://json-schema.org/draft-04/schema#/properties/multipleOf"
320+
"$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf"
321321
},
322322
"maximum": {
323-
"$ref": "https://json-schema.org/draft-04/schema#/properties/maximum"
323+
"$ref": "http://json-schema.org/draft-04/schema#/properties/maximum"
324324
},
325325
"exclusiveMaximum": {
326-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
326+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
327327
},
328328
"minimum": {
329-
"$ref": "https://json-schema.org/draft-04/schema#/properties/minimum"
329+
"$ref": "http://json-schema.org/draft-04/schema#/properties/minimum"
330330
},
331331
"exclusiveMinimum": {
332-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
332+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
333333
},
334334
"maxLength": {
335-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
335+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
336336
},
337337
"minLength": {
338-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
338+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
339339
},
340340
"pattern": {
341-
"$ref": "https://json-schema.org/draft-04/schema#/properties/pattern"
341+
"$ref": "http://json-schema.org/draft-04/schema#/properties/pattern"
342342
},
343343
"maxItems": {
344-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
344+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
345345
},
346346
"minItems": {
347-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
347+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
348348
},
349349
"uniqueItems": {
350-
"$ref": "https://json-schema.org/draft-04/schema#/properties/uniqueItems"
350+
"$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems"
351351
},
352352
"maxProperties": {
353-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
353+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
354354
},
355355
"minProperties": {
356-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
356+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
357357
},
358358
"required": {
359-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/stringArray"
359+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/stringArray"
360360
},
361361
"enum": {
362-
"$ref": "https://json-schema.org/draft-04/schema#/properties/enum"
362+
"$ref": "http://json-schema.org/draft-04/schema#/properties/enum"
363363
},
364364
"additionalProperties": {
365365
"anyOf": [
@@ -373,7 +373,7 @@
373373
"default": {}
374374
},
375375
"type": {
376-
"$ref": "https://json-schema.org/draft-04/schema#/properties/type"
376+
"$ref": "http://json-schema.org/draft-04/schema#/properties/type"
377377
},
378378
"items": {
379379
"anyOf": [
@@ -873,49 +873,49 @@
873873
}
874874
},
875875
"title": {
876-
"$ref": "https://json-schema.org/draft-04/schema#/properties/title"
876+
"$ref": "http://json-schema.org/draft-04/schema#/properties/title"
877877
},
878878
"description": {
879-
"$ref": "https://json-schema.org/draft-04/schema#/properties/description"
879+
"$ref": "http://json-schema.org/draft-04/schema#/properties/description"
880880
},
881881
"default": {
882-
"$ref": "https://json-schema.org/draft-04/schema#/properties/default"
882+
"$ref": "http://json-schema.org/draft-04/schema#/properties/default"
883883
},
884884
"multipleOf": {
885-
"$ref": "https://json-schema.org/draft-04/schema#/properties/multipleOf"
885+
"$ref": "http://json-schema.org/draft-04/schema#/properties/multipleOf"
886886
},
887887
"maximum": {
888-
"$ref": "https://json-schema.org/draft-04/schema#/properties/maximum"
888+
"$ref": "http://json-schema.org/draft-04/schema#/properties/maximum"
889889
},
890890
"exclusiveMaximum": {
891-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
891+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMaximum"
892892
},
893893
"minimum": {
894-
"$ref": "https://json-schema.org/draft-04/schema#/properties/minimum"
894+
"$ref": "http://json-schema.org/draft-04/schema#/properties/minimum"
895895
},
896896
"exclusiveMinimum": {
897-
"$ref": "https://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
897+
"$ref": "http://json-schema.org/draft-04/schema#/properties/exclusiveMinimum"
898898
},
899899
"maxLength": {
900-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
900+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
901901
},
902902
"minLength": {
903-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
903+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
904904
},
905905
"pattern": {
906-
"$ref": "https://json-schema.org/draft-04/schema#/properties/pattern"
906+
"$ref": "http://json-schema.org/draft-04/schema#/properties/pattern"
907907
},
908908
"maxItems": {
909-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveInteger"
909+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveInteger"
910910
},
911911
"minItems": {
912-
"$ref": "https://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
912+
"$ref": "http://json-schema.org/draft-04/schema#/definitions/positiveIntegerDefault0"
913913
},
914914
"uniqueItems": {
915-
"$ref": "https://json-schema.org/draft-04/schema#/properties/uniqueItems"
915+
"$ref": "http://json-schema.org/draft-04/schema#/properties/uniqueItems"
916916
},
917917
"enum": {
918-
"$ref": "https://json-schema.org/draft-04/schema#/properties/enum"
918+
"$ref": "http://json-schema.org/draft-04/schema#/properties/enum"
919919
}
920920
}
921921
}

0 commit comments

Comments
 (0)