Skip to content

Commit 6a70eee

Browse files
committed
Test more
1 parent 0cf48ef commit 6a70eee

11 files changed

+133
-13
lines changed

schema/v1/bugtracker.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
{ "required": ["web", "mailto"] }
2323
],
2424
"patternProperties": {
25-
"^[xX]_": {
25+
"^[xX]_.": {
2626
"description": "Custom key"
2727
}
2828
},

schema/v1/distribution.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"resources": { "$ref": "resources.schema.json" }
5252
},
5353
"patternProperties": {
54-
"^[xX]_": {
54+
"^[xX]_.": {
5555
"description": "Custom key"
5656
}
5757
},

schema/v1/extension.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
},
2828
"required": ["file", "version"],
2929
"patternProperties": {
30-
"^[xX]_": {
30+
"^[xX]_.": {
3131
"description": "Custom key"
3232
}
3333
},

schema/v1/meta-spec.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"version": {
99
"type": "string",
1010
"pattern": "^1[.]0[.][[:digit:]]+$",
11-
"description": "The version of the PGXN Meta Spec against which the document was generated."
11+
"description": "The version of the PGXN Meta Spec against which the document was generated. Must be 1.0.x."
1212
},
1313
"url": {
1414
"type": "string",
@@ -18,7 +18,7 @@
1818
},
1919
"required": ["version"],
2020
"patternProperties": {
21-
"^[xX]_": {
21+
"^[xX]_.": {
2222
"description": "Custom key"
2323
}
2424
},

schema/v1/no_index.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
{ "required": ["file", "directory"] }
3333
],
3434
"patternProperties": {
35-
"^[xX]_": {
35+
"^[xX]_.": {
3636
"description": "Custom key"
3737
}
3838
},

schema/v1/prereq_phase.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
}
2424
},
2525
"patternProperties": {
26-
"^[xX]_": {
26+
"^[xX]_.": {
2727
"description": "Custom key"
2828
}
2929
},

schema/v1/prereqs.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"minProperties": 1,
3030
"$comment": "Really should require at least one of the named properties; this allows for a single _x property. Good enough for now.",
3131
"patternProperties": {
32-
"^[xX]_": {
32+
"^[xX]_.": {
3333
"description": "Custom key"
3434
}
3535
},

schema/v1/repository.schema.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
},
1818
"type": {
1919
"type": "string",
20-
"format": "email",
2120
"description": "a lowercase string indicating the VCS used."
2221
}
2322
},
@@ -27,7 +26,7 @@
2726
{ "required": ["web", "url", "type"] }
2827
],
2928
"patternProperties": {
30-
"^[xX]_": {
29+
"^[xX]_.": {
3130
"description": "Custom key"
3231
}
3332
},

schema/v1/resources.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"repository": { "$ref": "repository.schema.json" }
1515
},
1616
"patternProperties": {
17-
"^[xX]_": {
17+
"^[xX]_.": {
1818
"description": "Custom key"
1919
}
2020
},

spec.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ are valid in the [List](#List) representation:
349349
mozilla_1_0 | Mozilla Public License, Version 1.0
350350
mozilla_1_1 | Mozilla Public License, Version 1.1
351351
openssl | OpenSSL License
352-
perl_5 | The Perl 5 License (Artistic 1 & GPL 1 or later)
352+
perl_5 | The Perl 5 License (Artistic 1 & GPL 1 or later)
353353
postgresql | The PostgreSQL License
354354
qpl_1_0 | Q Public License, Version 1.0
355355
ssleay | Original SSLeay License

0 commit comments

Comments
 (0)