Skip to content

Commit dc16855

Browse files
authored
Merge pull request #453 from ddbeck/drop-old-schema-bits
Remove old Baseline definition schema fields
2 parents 3280cff + 5ad19b0 commit dc16855

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

index.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ type BaselineHighLow = "high" | "low";
2727
interface SupportStatus {
2828
/** Whether the feature is Baseline (low substatus), Baseline (high substatus), or not (false) */
2929
baseline?: BaselineHighLow | false;
30-
/** Whether the feature is Baseline (legacy) */
31-
is_baseline?: true | false;
32-
/** Date the feature achieved Baseline status (legacy) */
33-
since?: string;
3430
/** Date the feature achieved Baseline low status */
3531
baseline_low_date?: string;
3632
/** Browser versions that most-recently introduced the feature */

schemas/defs.schema.json

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -87,18 +87,6 @@
8787
"description": "Date the feature achieved Baseline low status",
8888
"type": "string"
8989
},
90-
"is_baseline": {
91-
"description": "Whether the feature is Baseline (legacy)",
92-
"enum": [
93-
true,
94-
false
95-
],
96-
"type": "boolean"
97-
},
98-
"since": {
99-
"description": "Date the feature achieved Baseline status (legacy)",
100-
"type": "string"
101-
},
10290
"support": {
10391
"additionalProperties": false,
10492
"description": "Browser versions that most-recently introduced the feature",

0 commit comments

Comments
 (0)