diff --git a/ed/algorithms/dom.json b/ed/algorithms/dom.json
index baeab25cc671..cf84acfe16cf 100644
--- a/ed/algorithms/dom.json
+++ b/ed/algorithms/dom.json
@@ -1190,20 +1190,20 @@
{
"name": "find a slot",
"href": "https://dom.spec.whatwg.org/#find-a-slot",
- "html": "To find a slot for a given slottable slottable and an optional open flag (unset unless stated otherwise), run these\nsteps:",
- "rationale": "if",
+ "html": "To find a slot for a given slottable slottable and an optional\nboolean open (default false):",
+ "rationale": ".algorithm",
"steps": [
{
- "html": "
If slottable’s parent is null, then return null.
"
+ "html": "If slottable’s parent is null, then return null.
"
},
{
- "html": "Let shadow be slottable’s parent’s shadow root.
"
+ "html": "Let shadow be slottable’s parent’s shadow root.
"
},
{
- "html": "If shadow is null, then return null.
"
+ "html": "If shadow is null, then return null.
"
},
{
- "html": "If the open flag is set and shadow’s mode is not \"open
\", then return null.
"
+ "html": "If open is true and shadow’s mode is not\n \"open
\", then return null.
"
},
{
"html": "If shadow’s slot assignment is \"manual
\", then\n return the slot in shadow’s descendants whose manually assigned nodes contains slottable, if any; otherwise\n null.
"
@@ -1216,11 +1216,11 @@
{
"name": "find slottables",
"href": "https://dom.spec.whatwg.org/#find-slotables",
- "html": "To find slottables for a given slot slot, run these steps:",
- "rationale": "let",
+ "html": "To find slottables for a given slot slot:",
+ "rationale": ".algorithm",
"steps": [
{
- "html": "Let result be an empty list.
"
+ "html": "Let result be « ».
"
},
{
"html": "Let root be slot’s root.
"
@@ -1233,11 +1233,8 @@
},
{
"html": "If root’s slot assignment is \"manual
\":",
- "rationale": "let",
+ "rationale": "for",
"steps": [
- {
- "html": "Let result be « ».
"
- },
{
"html": "For each slottable slottable of slot’s manually assigned nodes, if slottable’s parent is host, append slottable to result.
"
}
@@ -1256,30 +1253,30 @@
]
},
{
- "html": "Return result.
"
+ "html": "Return result.
"
}
]
},
{
"name": "find flattened slottables",
"href": "https://dom.spec.whatwg.org/#find-flattened-slotables",
- "html": "To find flattened slottables for a given slot slot, run these steps:",
- "rationale": "let",
+ "html": "To find flattened slottables for a given slot slot:",
+ "rationale": ".algorithm",
"steps": [
{
- "html": "Let result be an empty list.
"
+ "html": "Let result be « ».
"
},
{
- "html": "If slot’s root is not a shadow root, then return result.
"
+ "html": "If slot’s root is not a shadow root, then return result.
"
},
{
- "html": "Let slottables be the result of finding slottables given slot.
"
+ "html": "Let slottables be the result of finding slottables given slot.
"
},
{
- "html": "If slottables is the empty list, then append each slottable child of slot, in tree order, to slottables.
"
+ "html": "If slottables is the empty list, then append each slottable child of slot, in tree order, to slottables.
"
},
{
- "html": "For each node in slottables:",
+ "html": "For each node of slottables:",
"rationale": "if",
"steps": [
{
@@ -1287,28 +1284,28 @@
"rationale": "let",
"steps": [
{
- "html": "Let temporaryResult be the result of finding flattened slottables given node.
"
+ "html": "Let temporaryResult be the result of finding flattened slottables given node.
"
},
{
- "html": "Append each slottable in temporaryResult, in order, to result.
"
+ "html": "Append each slottable in temporaryResult, in order, to result.
"
}
]
},
{
- "html": "Otherwise, append node to result.
"
+ "html": "Otherwise, append node to result.
"
}
]
},
{
- "html": "Return result.
"
+ "html": "Return result.
"
}
]
},
{
"name": "assign slottables",
"href": "https://dom.spec.whatwg.org/#assign-slotables",
- "html": "To assign slottables for a slot slot,\nrun these steps:",
- "rationale": "let",
+ "html": "To assign slottables for a slot slot:",
+ "rationale": ".algorithm",
"steps": [
{
"html": "Let slottables be the result of finding slottables for slot.
"
@@ -1320,15 +1317,15 @@
"html": "Set slot’s assigned nodes to slottables.
"
},
{
- "html": "For each slottable in slottables, set slottable’s assigned slot to slot.
"
+ "html": "For each slottable of slottables, set slottable’s assigned slot to slot.
"
}
]
},
{
"name": "assign a slot",
"href": "https://dom.spec.whatwg.org/#assign-a-slot",
- "html": "To assign a slot, given a slottable slottable, run these\nsteps:",
- "rationale": "let",
+ "html": "To assign a slot, given a slottable slottable:",
+ "rationale": ".algorithm",
"steps": [
{
"html": "Let slot be the result of finding a slot with slottable.
"
@@ -1341,8 +1338,8 @@
{
"name": "signal a slot change",
"href": "https://dom.spec.whatwg.org/#signal-a-slot-change",
- "html": "To signal a slot change, for a slot slot, run these steps:",
- "rationale": "append",
+ "html": "To signal a slot change, for a slot slot:",
+ "rationale": ".algorithm",
"steps": [
{
"html": "Append slot to slot’s relevant agent’s signal slots.
"
diff --git a/ed/css/css-multicol.json b/ed/css/css-multicol.json
index b82939332536..babc004aae6c 100644
--- a/ed/css/css-multicol.json
+++ b/ed/css/css-multicol.json
@@ -1,12 +1,12 @@
{
"spec": {
- "title": "CSS Multi-column Layout Module Level 1",
- "url": "https://drafts.csswg.org/css-multicol-1/"
+ "title": "CSS Multi-column Layout Module Level 2",
+ "url": "https://drafts.csswg.org/css-multicol-2/"
},
"properties": [
{
"name": "column-width",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-width",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-width",
"value": "auto | ",
"initial": "auto",
"appliesTo": "block containers except table wrapper boxes",
@@ -19,14 +19,14 @@
{
"name": "auto",
"prose": "means that the column width will be determined by other properties (e.g., column-count, if it has a non-auto value).",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-width-auto",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-width-auto",
"type": "value",
"value": "auto"
},
{
"name": "",
"prose": "describes the optimal column width. The actual column width may be wider (to fill the available space), or narrower (only if the available space is smaller than the specified column width). Negative values are not allowed. Used values will be clamped to a minimum of 1px.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-width-length-0",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-width-length-0",
"type": "value",
"value": ""
}
@@ -38,7 +38,7 @@
},
{
"name": "column-count",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-count",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-count",
"value": "auto | ",
"initial": "auto",
"appliesTo": "block containers except table wrapper boxes",
@@ -51,14 +51,14 @@
{
"name": "auto",
"prose": "means that the number of columns will be determined by other properties (e.g., column-width, if it has a non-auto value).",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-count-auto",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-count-auto",
"type": "value",
"value": "auto"
},
{
"name": "",
"prose": "describes the optimal number of columns into which the content of the element will be flowed. Values must be greater than 0. If both column-width and column-count have non-auto values, the integer value describes the maximum number of columns.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-count-integer-1",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-count-integer-1",
"type": "value",
"value": ""
}
@@ -70,7 +70,7 @@
},
{
"name": "columns",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-columns",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-columns",
"value": "<'column-width'> || <'column-count'>",
"initial": "see individual properties",
"appliesTo": "see individual properties",
@@ -85,7 +85,7 @@
},
{
"name": "column-rule-color",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-color",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-rule-color",
"value": "",
"initial": "currentcolor",
"appliesTo": "multicol containers",
@@ -98,7 +98,7 @@
{
"name": "",
"prose": "Specifies the color of the column rule.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-rule-color-color",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-rule-color-color",
"type": "value",
"value": ""
}
@@ -110,7 +110,7 @@
},
{
"name": "column-rule-style",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-style",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-rule-style",
"value": "",
"initial": "none",
"appliesTo": "multicol containers",
@@ -126,7 +126,7 @@
},
{
"name": "column-rule-width",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-rule-width",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-rule-width",
"value": "",
"initial": "medium",
"appliesTo": "multicol containers",
@@ -142,7 +142,7 @@
},
{
"name": "column-rule",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-rule",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-rule",
"value": "<'column-rule-width'> || <'column-rule-style'> || <'column-rule-color'>",
"initial": "see individual properties",
"appliesTo": "see individual properties",
@@ -158,29 +158,43 @@
},
{
"name": "column-span",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-span",
- "value": "none | all",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-span",
+ "value": "none | | all | auto",
"initial": "none",
"appliesTo": "in-flow block-level elements",
"inherited": "no",
"percentages": "N/A",
- "computedValue": "specified keyword",
+ "computedValue": "specified value",
"canonicalOrder": "per grammar",
"animationType": "discrete",
"values": [
{
"name": "none",
"prose": "The element does not span multiple columns.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-span-none",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-span-none",
"type": "value",
"value": "none"
},
{
"name": "all",
"prose": "The element forces a column break and is taken out of flow to span across all columns of the nearest multicol ancestor in the same block formatting context. Content in the normal flow that appears before the element is automatically balanced across all columns in the immediately preceding multi-column line before the element appears, and any subsequent content flows into a new multi-column line after the element. The element establishes an independent formatting context.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-span-all",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-span-all",
"type": "value",
"value": "all"
+ },
+ {
+ "name": "",
+ "prose": "The element spans the specified number of columns. Values must be greater than 0. If the specified integer value is equal to, or larger than the number of columns in the multicol element, the number of columns spanned will be the same as if column-span: all had been specified. This definition is insufficient. Does column-span: 1 count as column-span: none, or does it create a spanner (which is a BFC)? Which columns does it span? How does that affect height calculations, and interact with column-fill",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-span-integer-1",
+ "type": "value",
+ "value": ""
+ },
+ {
+ "name": "auto",
+ "prose": "The number of columns spanned by the element depends on its min-content outer size in the inline direction of the multi-column container. If it is smaller than the used value of column-width, this is the same as if column-span: none had been specified. Otherwise, the number of columns spanned is the smallest positive integer n for which n × column-width + (n - 1) × column-gap is larger than the min-content outer size. If this would be larger than the number of columns, the number of columns spanned will be the same as if column-span: all had been specified. If column-span: 1 does not do the same as column-span: none, should this behave as column-span: 1 or as column-span: none when the element is small enough?",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-span-auto",
+ "type": "value",
+ "value": "auto"
}
],
"styleDeclaration": [
@@ -190,7 +204,7 @@
},
{
"name": "column-fill",
- "href": "https://drafts.csswg.org/css-multicol-1/#propdef-column-fill",
+ "href": "https://drafts.csswg.org/css-multicol-2/#propdef-column-fill",
"value": "auto | balance | balance-all",
"initial": "balance",
"appliesTo": "multicol containers",
@@ -203,21 +217,21 @@
{
"name": "balance",
"prose": "Balance content equally between columns, as far as possible. In fragmented contexts, only the last fragment is balanced.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-balance",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-fill-balance",
"type": "value",
"value": "balance"
},
{
"name": "balance-all",
"prose": "Balance content equally between columns, as far as possible. In fragmented contexts, all fragments are balanced.",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-balance-all",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-fill-balance-all",
"type": "value",
"value": "balance-all"
},
{
"name": "auto",
"prose": "fill columns sequentially",
- "href": "https://drafts.csswg.org/css-multicol-1/#valdef-column-fill-auto",
+ "href": "https://drafts.csswg.org/css-multicol-2/#valdef-column-fill-auto",
"type": "value",
"value": "auto"
}
@@ -229,6 +243,12 @@
}
],
"atrules": [],
- "selectors": [],
+ "selectors": [
+ {
+ "name": "::column",
+ "prose": "The ::column pseudo-element represents the individual columns in a multi-column container. It only exists on multi-column containers.",
+ "href": "https://drafts.csswg.org/css-multicol-2/#selectordef-column"
+ }
+ ],
"values": []
}
diff --git a/ed/dfns/dom.json b/ed/dfns/dom.json
index 5f4311b209b1..8393e802aeaa 100644
--- a/ed/dfns/dom.json
+++ b/ed/dfns/dom.json
@@ -4043,13 +4043,12 @@
"id": "find-a-slot",
"href": "https://dom.spec.whatwg.org/#find-a-slot",
"linkingText": [
- "find a slot",
- "finding a slot"
+ "find a slot"
],
"localLinkingText": [],
"type": "dfn",
"for": [],
- "access": "public",
+ "access": "private",
"informative": false,
"heading": {
"id": "finding-slots-and-slotables",
@@ -4063,8 +4062,7 @@
"id": "find-slotables",
"href": "https://dom.spec.whatwg.org/#find-slotables",
"linkingText": [
- "find slottables",
- "finding slottables"
+ "find slottables"
],
"localLinkingText": [],
"type": "dfn",
@@ -4083,8 +4081,7 @@
"id": "find-flattened-slotables",
"href": "https://dom.spec.whatwg.org/#find-flattened-slotables",
"linkingText": [
- "find flattened slottables",
- "finding flattened slottables"
+ "find flattened slottables"
],
"localLinkingText": [],
"type": "dfn",
diff --git a/ed/dfns/rfc8610.json b/ed/dfns/rfc8610.json
new file mode 100644
index 000000000000..98184899b5e2
--- /dev/null
+++ b/ed/dfns/rfc8610.json
@@ -0,0 +1,64 @@
+{
+ "spec": {
+ "title": "RFC 8610: Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures",
+ "url": "https://www.rfc-editor.org/rfc/rfc8610"
+ },
+ "dfns": [
+ {
+ "id": "appendix-D",
+ "href": "https://www.rfc-editor.org/rfc/rfc8610#appendix-D",
+ "linkingText": [
+ "any",
+ "uint",
+ "nint",
+ "int",
+ "bstr",
+ "bytes",
+ "tstr",
+ "text",
+ "tdate",
+ "time",
+ "number",
+ "biguint",
+ "bignint",
+ "bigint",
+ "integer",
+ "unsigned",
+ "decfrac",
+ "bigfloat",
+ "eb64url",
+ "eb64legacy",
+ "eb16",
+ "encoded-cbor",
+ "uri",
+ "b64url",
+ "b64legacy",
+ "regexp",
+ "mime-message",
+ "cbor-any",
+ "float16",
+ "float32",
+ "float64",
+ "float16-32",
+ "float32-64",
+ "float",
+ "false",
+ "true",
+ "bool",
+ "nil",
+ "null",
+ "undefined"
+ ],
+ "localLinkingText": [],
+ "type": "cddl-type",
+ "for": [],
+ "access": "public",
+ "informative": false,
+ "heading": {
+ "href": "https://www.rfc-editor.org/rfc/rfc8610",
+ "title": "RFC 8610: Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures"
+ },
+ "definedIn": "pre"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/ed/headings/vc-data-model-2.0.json b/ed/headings/vc-data-model-2.0.json
index 3083dd50d50a..c66f4f33b246 100644
--- a/ed/headings/vc-data-model-2.0.json
+++ b/ed/headings/vc-data-model-2.0.json
@@ -115,26 +115,26 @@
"number": "4.4"
},
{
- "id": "sd-jwt-claim-59LlZcNczUwLZXCxHFUWeN1mCdwuiMh_9h2x6KXspgM",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-59LlZcNczUwLZXCxHFUWeN1mCdwuiMh_9h2x6KXspgM",
+ "id": "sd-jwt-claim-a0DdhRMO81eEdRCdx_YFwmXIWZf8UOtpGfLGBnmz2Lw",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-a0DdhRMO81eEdRCdx_YFwmXIWZf8UOtpGfLGBnmz2Lw",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-wYueUyzEET25L1fcG1lasPgeJiDOBhyTsTorBHFGpi4",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wYueUyzEET25L1fcG1lasPgeJiDOBhyTsTorBHFGpi4",
+ "id": "sd-jwt-claim-X2aSBgTOvFLAQtOJzGjIZyMBd4PNuLKsK8G90sXNiKI",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-X2aSBgTOvFLAQtOJzGjIZyMBd4PNuLKsK8G90sXNiKI",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-uIs-mNoNEoKJG7MuM7NJQ2Okg4nTOVP-VqQNohp5jFM",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-uIs-mNoNEoKJG7MuM7NJQ2Okg4nTOVP-VqQNohp5jFM",
+ "id": "sd-jwt-claim-JW2m0L5KNDwKU45dpoRxYmPLkWoFyiBfxVMFqGrlcak",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-JW2m0L5KNDwKU45dpoRxYmPLkWoFyiBfxVMFqGrlcak",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-sCGfphck03JaWwe6Y0sn8DUf8J-OHP-t97OQYiMP_go",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-sCGfphck03JaWwe6Y0sn8DUf8J-OHP-t97OQYiMP_go",
+ "id": "sd-jwt-claim-1m9KCw4tsX_iCdxxcJWGmujYU-1c395FxzlCA0LqDqI",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1m9KCw4tsX_iCdxxcJWGmujYU-1c395FxzlCA0LqDqI",
"level": 3,
"title": "Claim: type"
},
@@ -146,26 +146,26 @@
"number": "4.5"
},
{
- "id": "sd-jwt-claim-1Hf2-I5pbDPyocxH3PSeLbx9xwSnXlIfqIWcTVEf5iQ",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1Hf2-I5pbDPyocxH3PSeLbx9xwSnXlIfqIWcTVEf5iQ",
+ "id": "sd-jwt-claim-ANGJIGWG_xdTi_xOwOUBI1AwpS6Kpp7Fur7YrU0xPUY",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ANGJIGWG_xdTi_xOwOUBI1AwpS6Kpp7Fur7YrU0xPUY",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-OY6xBL5qdbLtWBdz8aosKjGX5r3KuEFkVyrZThSduJA",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-OY6xBL5qdbLtWBdz8aosKjGX5r3KuEFkVyrZThSduJA",
+ "id": "sd-jwt-claim-DQwg5-EwPK0UPY3-yDrd8quAjE45ZDaWshU2PKbWnkY",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-DQwg5-EwPK0UPY3-yDrd8quAjE45ZDaWshU2PKbWnkY",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-7wvRzlUJHfK2hw9W-QVuJa0pebeekRe-7z6iwakrldo",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-7wvRzlUJHfK2hw9W-QVuJa0pebeekRe-7z6iwakrldo",
+ "id": "sd-jwt-claim-4Evc2eMSCDm4RuJOavNkDYspVZOJJtJUG0YYC-ONhEU",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4Evc2eMSCDm4RuJOavNkDYspVZOJJtJUG0YYC-ONhEU",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-yqEFMiBkGLh80csKIzxRLJ9NBAFxYozVQTVO2eUIBRw",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yqEFMiBkGLh80csKIzxRLJ9NBAFxYozVQTVO2eUIBRw",
+ "id": "sd-jwt-claim-yxsK55I2gfNhXb7ujmUOuKu9zW6GSRfaLwQU_x2ICb4",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yxsK55I2gfNhXb7ujmUOuKu9zW6GSRfaLwQU_x2ICb4",
"level": 3,
"title": "Claim: type"
},
@@ -177,32 +177,32 @@
"number": "4.6"
},
{
- "id": "sd-jwt-claim-9VHLCi_3C1RsuPadkBUdRhKlgOA3gVzKkNzBvbQfnlM",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-9VHLCi_3C1RsuPadkBUdRhKlgOA3gVzKkNzBvbQfnlM",
+ "id": "sd-jwt-claim-kPcaBCYUdPcp7byCGMx6zpkFWrwW5EqHf048gZh1YkI",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-kPcaBCYUdPcp7byCGMx6zpkFWrwW5EqHf048gZh1YkI",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-Z3OdEZhCToeWthnrE41Mtk1-eBgH_rtRMc75Ys_wib8",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Z3OdEZhCToeWthnrE41Mtk1-eBgH_rtRMc75Ys_wib8",
+ "id": "sd-jwt-claim-VffhslQsbZ-D30R1pKzT_bhhhUdcxxo9R7Mc0waecJ0",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-VffhslQsbZ-D30R1pKzT_bhhhUdcxxo9R7Mc0waecJ0",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-2KvvXuPTZ1ybXh6yvNGcyI60vECoUpvhGuX_bxy9LcI",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-2KvvXuPTZ1ybXh6yvNGcyI60vECoUpvhGuX_bxy9LcI",
+ "id": "sd-jwt-claim-AqRw-diFORuymeFyo0_5lv0tGZfqG5qUoT1Tb1-G2NY",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-AqRw-diFORuymeFyo0_5lv0tGZfqG5qUoT1Tb1-G2NY",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-lS_AHW4pYrGlR0Y8AllmbnEiFJVpeqoTZ4OH5upTBIo",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-lS_AHW4pYrGlR0Y8AllmbnEiFJVpeqoTZ4OH5upTBIo",
+ "id": "sd-jwt-claim-6D-OopIKgfv-SA8gCFr3XjdhR53L_NG6UGymi-TNI9U",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-6D-OopIKgfv-SA8gCFr3XjdhR53L_NG6UGymi-TNI9U",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-4IGf2qU18tS5VyOaEvmTycENBTMbDRQ55Jhyi3f3K78",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4IGf2qU18tS5VyOaEvmTycENBTMbDRQ55Jhyi3f3K78",
+ "id": "sd-jwt-claim-f9_T8mvRiu6crLGFMJlpI7J8L9G_yxupWbbaMBvjX20",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-f9_T8mvRiu6crLGFMJlpI7J8L9G_yxupWbbaMBvjX20",
"level": 3,
"title": "Claim: type"
},
@@ -214,56 +214,56 @@
"number": "4.7"
},
{
- "id": "sd-jwt-claim-ogETPChugIZ_Ta9aE3Plvu9-w28PAv0rb_5p7X7IixI",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ogETPChugIZ_Ta9aE3Plvu9-w28PAv0rb_5p7X7IixI",
+ "id": "sd-jwt-claim-V1TcXdXDJK2uq2h0VmNdlzRZJTcRrmVvhNGkykz2qZg",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-V1TcXdXDJK2uq2h0VmNdlzRZJTcRrmVvhNGkykz2qZg",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-EQPdjBe9DVC2h4yTAit_NmUcKkdmtvQtXn6GYcJQWaE",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-EQPdjBe9DVC2h4yTAit_NmUcKkdmtvQtXn6GYcJQWaE",
+ "id": "sd-jwt-claim-fl3S0_ms-fllf79ZVYGSNOsW3PHSmCJapswXshUbwWQ",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-fl3S0_ms-fllf79ZVYGSNOsW3PHSmCJapswXshUbwWQ",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-WVXZpSeaF0BLf64s5a596cWwykaJSnwhmmgVZG1X9gE",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-WVXZpSeaF0BLf64s5a596cWwykaJSnwhmmgVZG1X9gE",
+ "id": "sd-jwt-claim-eExnkSPwBfwwD-hmM8zY5MbhaXdhmr06wTi14y8P8-k",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-eExnkSPwBfwwD-hmM8zY5MbhaXdhmr06wTi14y8P8-k",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-CVoTdPgyRhX2trATSlNsxIhdz4l3u2O41zxrs6VFe-s",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-CVoTdPgyRhX2trATSlNsxIhdz4l3u2O41zxrs6VFe-s",
+ "id": "sd-jwt-claim-bc3FD1aX0SfwKl9bIoRkh8H9E9pDuFVFA0eAdh7JejI",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-bc3FD1aX0SfwKl9bIoRkh8H9E9pDuFVFA0eAdh7JejI",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-bBwF4UvQVl52m6H-A21ojytJzY186phG4yLNFXK_rXE",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-bBwF4UvQVl52m6H-A21ojytJzY186phG4yLNFXK_rXE",
+ "id": "sd-jwt-claim-hCHgOh7oQnIuCzbKCetZrT1Qe7EC-Q1M8gx-0Y4EljM",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-hCHgOh7oQnIuCzbKCetZrT1Qe7EC-Q1M8gx-0Y4EljM",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-W3yCQgeIaAv4cc1Dy3SDUH46NJMKpr2OqhpYvDJBxtM",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-W3yCQgeIaAv4cc1Dy3SDUH46NJMKpr2OqhpYvDJBxtM",
+ "id": "sd-jwt-claim-VK4LBbLqtdrm5UNtxe0dUAidugWbg-R1Qg00hcL2ZFw",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-VK4LBbLqtdrm5UNtxe0dUAidugWbg-R1Qg00hcL2ZFw",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-50EAbj4j2aTU8BjeGk-agztBRoe-0Po85r8eOwh1XsY",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-50EAbj4j2aTU8BjeGk-agztBRoe-0Po85r8eOwh1XsY",
+ "id": "sd-jwt-claim-8oPmJq5JhtPRbpusRapmHkXK6XoMOueFhN22nk-h2YM",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-8oPmJq5JhtPRbpusRapmHkXK6XoMOueFhN22nk-h2YM",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-3LxDmCAS_JzadFPoQ6vZpQauvuahLC_xVmhl-wQ8zXs",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-3LxDmCAS_JzadFPoQ6vZpQauvuahLC_xVmhl-wQ8zXs",
+ "id": "sd-jwt-claim-sxSRMVmvoAOG9-d-526Z3X4EuJTfqwgKhE_VTuy1wqw",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-sxSRMVmvoAOG9-d-526Z3X4EuJTfqwgKhE_VTuy1wqw",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-0j9XmXKMUcDIR0_iIfreP6BzoybBZJMw9fR95NmnkbU",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-0j9XmXKMUcDIR0_iIfreP6BzoybBZJMw9fR95NmnkbU",
+ "id": "sd-jwt-claim-wGhOelhoaKnibVSE-VoUzc6S4i4vcwSWgLMC53glgwQ",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wGhOelhoaKnibVSE-VoUzc6S4i4vcwSWgLMC53glgwQ",
"level": 3,
"title": "Claim: type"
},
@@ -275,26 +275,26 @@
"number": "4.8"
},
{
- "id": "sd-jwt-claim-Ube3CgdopiFNR3SXxoyrvs64BLMsB7SL_1j5bUSzzNY",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Ube3CgdopiFNR3SXxoyrvs64BLMsB7SL_1j5bUSzzNY",
+ "id": "sd-jwt-claim-wZjeXMRKQT3htgtRV5Qq_dyBjW7d-qB5EEchzfEKABA",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wZjeXMRKQT3htgtRV5Qq_dyBjW7d-qB5EEchzfEKABA",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-WZV8ltKgGgSuEcpdRKKIjW-SSkUak-876ckQpcJl_d4",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-WZV8ltKgGgSuEcpdRKKIjW-SSkUak-876ckQpcJl_d4",
+ "id": "sd-jwt-claim-COlC5mF67IaHDf9PW0RhQUaRYu2f-eCqx3agKW-oMFM",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-COlC5mF67IaHDf9PW0RhQUaRYu2f-eCqx3agKW-oMFM",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-3Aa47EpHkDVxOFFBaRFLy1H8y3CW24YmbsKT7ZfK4uQ",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-3Aa47EpHkDVxOFFBaRFLy1H8y3CW24YmbsKT7ZfK4uQ",
+ "id": "sd-jwt-claim-dHFwQXbOauQh3Exy7sE8B37Rs4IXvRNFl5Ix0Yf4dGs",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-dHFwQXbOauQh3Exy7sE8B37Rs4IXvRNFl5Ix0Yf4dGs",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-4OXWHQZo43NF-arRmIlOGBosZJFFPgMuW5hZGf3zz3Q",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4OXWHQZo43NF-arRmIlOGBosZJFFPgMuW5hZGf3zz3Q",
+ "id": "sd-jwt-claim-ikXotzO9J0PBc4WsEb8RIpJS72Zb_zfOXICFel_NVcw",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ikXotzO9J0PBc4WsEb8RIpJS72Zb_zfOXICFel_NVcw",
"level": 3,
"title": "Claim: type"
},
@@ -306,26 +306,26 @@
"number": "4.9"
},
{
- "id": "sd-jwt-claim-G75nOpmVhYIGbx-nHtB6_AWMnBgahiNnKcpMkzVUp88",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-G75nOpmVhYIGbx-nHtB6_AWMnBgahiNnKcpMkzVUp88",
+ "id": "sd-jwt-claim-UBuU4dP4toVVASEMDS70P7jMfJjuX9ymfFuz7UoX91o",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UBuU4dP4toVVASEMDS70P7jMfJjuX9ymfFuz7UoX91o",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-oN1YX8XffMNXagLr2NFn4fT7DfFN-HI6S24O3pdFGf4",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-oN1YX8XffMNXagLr2NFn4fT7DfFN-HI6S24O3pdFGf4",
+ "id": "sd-jwt-claim-1HW3lDtj8OJScEJwORyY6eeR5APqmbmKSM1Rlml6Oog",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1HW3lDtj8OJScEJwORyY6eeR5APqmbmKSM1Rlml6Oog",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-f8u2M1y08VeTQyZgqSBhFH_ahhmN7NoMxr9UoP7L_Qk",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-f8u2M1y08VeTQyZgqSBhFH_ahhmN7NoMxr9UoP7L_Qk",
+ "id": "sd-jwt-claim-llP9bApPdsdgit_TcrEUEbFipENZdA7wOJ8-P7StGKM",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-llP9bApPdsdgit_TcrEUEbFipENZdA7wOJ8-P7StGKM",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-M_vec-JsN0X7fLgz2m1dnLiaE7hBVZOj8uL9FkpZCBc",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-M_vec-JsN0X7fLgz2m1dnLiaE7hBVZOj8uL9FkpZCBc",
+ "id": "sd-jwt-claim-t3oZyVl78RwGg-ZwzcL6-6SjMS1qd1Leo3Luhv7ccoM",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-t3oZyVl78RwGg-ZwzcL6-6SjMS1qd1Leo3Luhv7ccoM",
"level": 3,
"title": "Claim: type"
},
@@ -403,20 +403,20 @@
"number": "5.2"
},
{
- "id": "sd-jwt-claim-ct-TTjdBqXugv8oKwcnzlKSUC2MqtTw10KeUqZTvy1U",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ct-TTjdBqXugv8oKwcnzlKSUC2MqtTw10KeUqZTvy1U",
+ "id": "sd-jwt-claim-G1vumFtAo4Qhum5XHjxfXm88BWucCZJ0f5BkSQI2qRk",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-G1vumFtAo4Qhum5XHjxfXm88BWucCZJ0f5BkSQI2qRk",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-tF7-Y87hp7gSNzE6CcUT2lH2tCAvNt9gO8hrYpfj9fA",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-tF7-Y87hp7gSNzE6CcUT2lH2tCAvNt9gO8hrYpfj9fA",
+ "id": "sd-jwt-claim-XYIBL4hLINx4-Y1QHiCZb2VE4y33RE50rmdPXv0EuEs",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-XYIBL4hLINx4-Y1QHiCZb2VE4y33RE50rmdPXv0EuEs",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-8XOoksD_OGbLdvZ81dyD_LzOTMShU4-9zZggpv9my2g",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-8XOoksD_OGbLdvZ81dyD_LzOTMShU4-9zZggpv9my2g",
+ "id": "sd-jwt-claim-lNfLwII-a7cPbkdvgxredXHBe36N0WXtjZot80Vp4Uw",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-lNfLwII-a7cPbkdvgxredXHBe36N0WXtjZot80Vp4Uw",
"level": 3,
"title": "Claim: id"
},
@@ -654,20 +654,20 @@
"number": "8.10"
},
{
- "id": "sd-jwt-claim-UVcBlpAxxgS_n7_apXx6aIzRXNfqRuBUi-zAf7HaX9I",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UVcBlpAxxgS_n7_apXx6aIzRXNfqRuBUi-zAf7HaX9I",
+ "id": "sd-jwt-claim-6jyRvGFrkJNDdoq8zwawKU-UBCMWdUcB0YhXOk_wKak",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-6jyRvGFrkJNDdoq8zwawKU-UBCMWdUcB0YhXOk_wKak",
"level": 3,
"title": "Claim: id"
},
{
- "id": "sd-jwt-claim-UhFPaY_ERvnw-VibFh3lImhVvfhqcUXAhZZEIu8Zau8",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UhFPaY_ERvnw-VibFh3lImhVvfhqcUXAhZZEIu8Zau8",
+ "id": "sd-jwt-claim-yMC5QRqimCDqU5APcC21PIxzObWsQZZasUcOzZI0YI4",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yMC5QRqimCDqU5APcC21PIxzObWsQZZasUcOzZI0YI4",
"level": 3,
"title": "Claim: type"
},
{
- "id": "sd-jwt-claim-Md6Tk3P4LUTIz1bdO8nBi_PsvpD-Jk-uYPTqpnfYb4k",
- "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Md6Tk3P4LUTIz1bdO8nBi_PsvpD-Jk-uYPTqpnfYb4k",
+ "id": "sd-jwt-claim-1uJ1nWohgiXRKy6KrVB--Ds9ulRyQJ46IyjxW9FV7AI",
+ "href": "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1uJ1nWohgiXRKy6KrVB--Ds9ulRyQJ46IyjxW9FV7AI",
"level": 3,
"title": "Claim: type"
},
diff --git a/ed/ids/rfc8610.json b/ed/ids/rfc8610.json
new file mode 100644
index 000000000000..115198ec4594
--- /dev/null
+++ b/ed/ids/rfc8610.json
@@ -0,0 +1,158 @@
+{
+ "spec": {
+ "title": "RFC 8610: Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures",
+ "url": "https://www.rfc-editor.org/rfc/rfc8610"
+ },
+ "ids": [
+ "https://www.rfc-editor.org/rfc/rfc8610#page-2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-3",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-4",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-5",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-1.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-1.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-6",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-7",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-8",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-9",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-10",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.1.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.1.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-11",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-12",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.2.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-13",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.2.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-14",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-2.2.4",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-15",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-16",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-17",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-18",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.4",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-19",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.5",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.5.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-20",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-21",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-22",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.5.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-23",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.5.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-24",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.5.4",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-25",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.6",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-26",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.7",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-27",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-28",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-29",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.3.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-30",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.3.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.4",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.5",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-31",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.8.6",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-32",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.9",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-33",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.10",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-34",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-3.11",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-35",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-36",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-4",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-4.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-4.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-37",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-4.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-5",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-38",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-6",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-6.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-39",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-40",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-7",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-7.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-ISO6093",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC2119",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC3552",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC3629",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC4648",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC5234",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC7049",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC7493",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8126",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8174",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-41",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8259",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-W3C.REC-xmlschema-2-20041028",
+ "https://www.rfc-editor.org/rfc/rfc8610#section-7.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-CDDL-Freezer",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-GRASP",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-IEEE754",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-JCR",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-PEG",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RELAXNG",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC7071",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC7950",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-42",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8007",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8152",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC8428",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-YAML",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-43",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-A",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-44",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-45",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-B",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-46",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-47",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-C",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-48",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-49",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-50",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-51",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-52",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-D",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-53",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-E",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-54",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-55",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-56",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-F",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-57",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.1",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.2",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.3",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-58",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.4",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-59",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.5",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-G.6",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-60",
+ "https://www.rfc-editor.org/rfc/rfc8610#appendix-H",
+ "https://www.rfc-editor.org/rfc/rfc8610#ref-RFC7071",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-61",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-62",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-63",
+ "https://www.rfc-editor.org/rfc/rfc8610#page-64"
+ ]
+}
\ No newline at end of file
diff --git a/ed/ids/vc-data-model-2.0.json b/ed/ids/vc-data-model-2.0.json
index 8fd9b759e995..343f29600e1a 100644
--- a/ed/ids/vc-data-model-2.0.json
+++ b/ed/ids/vc-data-model-2.0.json
@@ -468,16 +468,16 @@
"https://w3c.github.io/vc-data-model/#vc-tab1jose",
"https://w3c.github.io/vc-data-model/#vc-tab1cose",
"https://w3c.github.io/vc-data-model/#vc-tab1sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-1-tw0wqbc-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-59LlZcNczUwLZXCxHFUWeN1mCdwuiMh_9h2x6KXspgM",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wYueUyzEET25L1fcG1lasPgeJiDOBhyTsTorBHFGpi4",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-uIs-mNoNEoKJG7MuM7NJQ2Okg4nTOVP-VqQNohp5jFM",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-sCGfphck03JaWwe6Y0sn8DUf8J-OHP-t97OQYiMP_go",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-1-77egmi6-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-a0DdhRMO81eEdRCdx_YFwmXIWZf8UOtpGfLGBnmz2Lw",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-X2aSBgTOvFLAQtOJzGjIZyMBd4PNuLKsK8G90sXNiKI",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-JW2m0L5KNDwKU45dpoRxYmPLkWoFyiBfxVMFqGrlcak",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1m9KCw4tsX_iCdxxcJWGmujYU-1c395FxzlCA0LqDqI",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-72",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-subjects-24",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-73",
@@ -520,16 +520,16 @@
"https://w3c.github.io/vc-data-model/#vc-tab2jose",
"https://w3c.github.io/vc-data-model/#vc-tab2cose",
"https://w3c.github.io/vc-data-model/#vc-tab2sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-2-o8clzfx-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1Hf2-I5pbDPyocxH3PSeLbx9xwSnXlIfqIWcTVEf5iQ",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-OY6xBL5qdbLtWBdz8aosKjGX5r3KuEFkVyrZThSduJA",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-7wvRzlUJHfK2hw9W-QVuJa0pebeekRe-7z6iwakrldo",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yqEFMiBkGLh80csKIzxRLJ9NBAFxYozVQTVO2eUIBRw",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-2-4pdcg29-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ANGJIGWG_xdTi_xOwOUBI1AwpS6Kpp7Fur7YrU0xPUY",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-DQwg5-EwPK0UPY3-yDrd8quAjE45ZDaWshU2PKbWnkY",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4Evc2eMSCDm4RuJOavNkDYspVZOJJtJUG0YYC-ONhEU",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yxsK55I2gfNhXb7ujmUOuKu9zW6GSRfaLwQU_x2ICb4",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-type-1",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-81",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-82",
@@ -589,17 +589,17 @@
"https://w3c.github.io/vc-data-model/#vc-tab3jose",
"https://w3c.github.io/vc-data-model/#vc-tab3cose",
"https://w3c.github.io/vc-data-model/#vc-tab3sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-3-xw2r4m2-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-9VHLCi_3C1RsuPadkBUdRhKlgOA3gVzKkNzBvbQfnlM",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Z3OdEZhCToeWthnrE41Mtk1-eBgH_rtRMc75Ys_wib8",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-2KvvXuPTZ1ybXh6yvNGcyI60vECoUpvhGuX_bxy9LcI",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-lS_AHW4pYrGlR0Y8AllmbnEiFJVpeqoTZ4OH5upTBIo",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4IGf2qU18tS5VyOaEvmTycENBTMbDRQ55Jhyi3f3K78",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-3-snlcofv-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-kPcaBCYUdPcp7byCGMx6zpkFWrwW5EqHf048gZh1YkI",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-VffhslQsbZ-D30R1pKzT_bhhhUdcxxo9R7Mc0waecJ0",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-AqRw-diFORuymeFyo0_5lv0tGZfqG5qUoT1Tb1-G2NY",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-6D-OopIKgfv-SA8gCFr3XjdhR53L_NG6UGymi-TNI9U",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-f9_T8mvRiu6crLGFMJlpI7J8L9G_yxupWbbaMBvjX20",
"https://w3c.github.io/vc-data-model/#issue-container-generatedID-11",
"https://w3c.github.io/vc-data-model/#h-note-10",
"https://w3c.github.io/vc-data-model/#example-use-of-the-name-and-description-properties-0",
@@ -628,16 +628,16 @@
"https://w3c.github.io/vc-data-model/#vc-tab4jose",
"https://w3c.github.io/vc-data-model/#vc-tab4cose",
"https://w3c.github.io/vc-data-model/#vc-tab4sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-4-u6vgf8x-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ogETPChugIZ_Ta9aE3Plvu9-w28PAv0rb_5p7X7IixI",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-EQPdjBe9DVC2h4yTAit_NmUcKkdmtvQtXn6GYcJQWaE",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-WVXZpSeaF0BLf64s5a596cWwykaJSnwhmmgVZG1X9gE",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-CVoTdPgyRhX2trATSlNsxIhdz4l3u2O41zxrs6VFe-s",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-4-23v3vcw-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-V1TcXdXDJK2uq2h0VmNdlzRZJTcRrmVvhNGkykz2qZg",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-fl3S0_ms-fllf79ZVYGSNOsW3PHSmCJapswXshUbwWQ",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-eExnkSPwBfwwD-hmM8zY5MbhaXdhmr06wTi14y8P8-k",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-bc3FD1aX0SfwKl9bIoRkh8H9E9pDuFVFA0eAdh7JejI",
"https://w3c.github.io/vc-data-model/#example-expanded-use-of-the-issuer-property",
"https://w3c.github.io/vc-data-model/#vc-tab5unsigned",
"https://w3c.github.io/vc-data-model/#vc-tab5ecdsa-rdfc-2019",
@@ -647,17 +647,17 @@
"https://w3c.github.io/vc-data-model/#vc-tab5jose",
"https://w3c.github.io/vc-data-model/#vc-tab5cose",
"https://w3c.github.io/vc-data-model/#vc-tab5sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-5-i1gp2jv-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-bBwF4UvQVl52m6H-A21ojytJzY186phG4yLNFXK_rXE",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-W3yCQgeIaAv4cc1Dy3SDUH46NJMKpr2OqhpYvDJBxtM",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-50EAbj4j2aTU8BjeGk-agztBRoe-0Po85r8eOwh1XsY",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-3LxDmCAS_JzadFPoQ6vZpQauvuahLC_xVmhl-wQ8zXs",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-0j9XmXKMUcDIR0_iIfreP6BzoybBZJMw9fR95NmnkbU",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-5-8rmnre5-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-hCHgOh7oQnIuCzbKCetZrT1Qe7EC-Q1M8gx-0Y4EljM",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-VK4LBbLqtdrm5UNtxe0dUAidugWbg-R1Qg00hcL2ZFw",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-8oPmJq5JhtPRbpusRapmHkXK6XoMOueFhN22nk-h2YM",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-sxSRMVmvoAOG9-d-526Z3X4EuJTfqwgKhE_VTuy1wqw",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wGhOelhoaKnibVSE-VoUzc6S4i4vcwSWgLMC53glgwQ",
"https://w3c.github.io/vc-data-model/#issue-container-generatedID-12",
"https://w3c.github.io/vc-data-model/#h-note-11",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-property-21",
@@ -688,16 +688,16 @@
"https://w3c.github.io/vc-data-model/#vc-tab6jose",
"https://w3c.github.io/vc-data-model/#vc-tab6cose",
"https://w3c.github.io/vc-data-model/#vc-tab6sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-6-1bv91m2-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Ube3CgdopiFNR3SXxoyrvs64BLMsB7SL_1j5bUSzzNY",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-WZV8ltKgGgSuEcpdRKKIjW-SSkUak-876ckQpcJl_d4",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-3Aa47EpHkDVxOFFBaRFLy1H8y3CW24YmbsKT7ZfK4uQ",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-4OXWHQZo43NF-arRmIlOGBosZJFFPgMuW5hZGf3zz3Q",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-6-bty8awo-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-wZjeXMRKQT3htgtRV5Qq_dyBjW7d-qB5EEchzfEKABA",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-COlC5mF67IaHDf9PW0RhQUaRYu2f-eCqx3agKW-oMFM",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-dHFwQXbOauQh3Exy7sE8B37Rs4IXvRNFl5Ix0Yf4dGs",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ikXotzO9J0PBc4WsEb8RIpJS72Zb_zfOXICFel_NVcw",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-subjects-31",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-88",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-subjects-32",
@@ -726,16 +726,16 @@
"https://w3c.github.io/vc-data-model/#vc-tab7jose",
"https://w3c.github.io/vc-data-model/#vc-tab7cose",
"https://w3c.github.io/vc-data-model/#vc-tab7sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-7-drepj91-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-G75nOpmVhYIGbx-nHtB6_AWMnBgahiNnKcpMkzVUp88",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-oN1YX8XffMNXagLr2NFn4fT7DfFN-HI6S24O3pdFGf4",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-f8u2M1y08VeTQyZgqSBhFH_ahhmN7NoMxr9UoP7L_Qk",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-M_vec-JsN0X7fLgz2m1dnLiaE7hBVZOj8uL9FkpZCBc",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-7-c6k8pfl-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UBuU4dP4toVVASEMDS70P7jMfJjuX9ymfFuz7UoX91o",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1HW3lDtj8OJScEJwORyY6eeR5APqmbmKSM1Rlml6Oog",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-llP9bApPdsdgit_TcrEUEbFipENZdA7wOJ8-P7StGKM",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-t3oZyVl78RwGg-ZwzcL6-6SjMS1qd1Leo3Luhv7ccoM",
"https://w3c.github.io/vc-data-model/#issue-container-generatedID-13",
"https://w3c.github.io/vc-data-model/#h-note-12",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-89",
@@ -1009,15 +1009,15 @@
"https://w3c.github.io/vc-data-model/#vc-tab8jose",
"https://w3c.github.io/vc-data-model/#vc-tab8cose",
"https://w3c.github.io/vc-data-model/#vc-tab8sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-8-0m5qvjr-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-ct-TTjdBqXugv8oKwcnzlKSUC2MqtTw10KeUqZTvy1U",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-tF7-Y87hp7gSNzE6CcUT2lH2tCAvNt9gO8hrYpfj9fA",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-8XOoksD_OGbLdvZ81dyD_LzOTMShU4-9zZggpv9my2g",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-8-tm9wd7m-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-G1vumFtAo4Qhum5XHjxfXm88BWucCZJ0f5BkSQI2qRk",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-XYIBL4hLINx4-Y1QHiCZb2VE4y33RE50rmdPXv0EuEs",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-lNfLwII-a7cPbkdvgxredXHBe36N0WXtjZot80Vp4Uw",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-132",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-entities-14",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-verifiable-credential-133",
@@ -1583,15 +1583,15 @@
"https://w3c.github.io/vc-data-model/#vc-tab9jose",
"https://w3c.github.io/vc-data-model/#vc-tab9cose",
"https://w3c.github.io/vc-data-model/#vc-tab9sd-jwt",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-content-encoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-content-decoded",
- "https://w3c.github.io/vc-data-model/#sd-jwt-9-qz2tmg3-content-disclosures",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UVcBlpAxxgS_n7_apXx6aIzRXNfqRuBUi-zAf7HaX9I",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-UhFPaY_ERvnw-VibFh3lImhVvfhqcUXAhZZEIu8Zau8",
- "https://w3c.github.io/vc-data-model/#sd-jwt-claim-Md6Tk3P4LUTIz1bdO8nBi_PsvpD-Jk-uYPTqpnfYb4k",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-content-encoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-content-decoded",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-9-pgnbxfy-content-disclosures",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-6jyRvGFrkJNDdoq8zwawKU-UBCMWdUcB0YhXOk_wKak",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-yMC5QRqimCDqU5APcC21PIxzObWsQZZasUcOzZI0YI4",
+ "https://w3c.github.io/vc-data-model/#sd-jwt-claim-1uJ1nWohgiXRKy6KrVB--Ds9ulRyQJ46IyjxW9FV7AI",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-bearer-credentials-4",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-issuers-86",
"https://w3c.github.io/vc-data-model/#ref-for-dfn-holders-86",
diff --git a/ed/index.json b/ed/index.json
index da68c3900862..780d984e5513 100644
--- a/ed/index.json
+++ b/ed/index.json
@@ -1,7 +1,7 @@
{
"type": "crawl",
"title": "Reffy crawl",
- "date": "2025-01-20T06:41:59.752Z",
+ "date": "2025-01-20T09:54:28.670Z",
"options": {
"fallback": "ed/index.json",
"output": "report",
@@ -27,7 +27,6 @@
"css-borders-4",
"css-color-6",
"css-conditional-values-1",
- "css-display-4",
"css-env-1",
"css-extensions-1",
"css-forms-1",
@@ -36,7 +35,6 @@
"css-images-5",
"css-link-params-1",
"css-mixins-1",
- "css-multicol-2",
"css-page-4",
"css-position-4",
"css-shapes-2",
@@ -153,6 +151,7 @@
"at-driver",
"contentEditable",
"execCommand",
+ "element-timing",
"gamepad-extensions",
"long-animation-frames",
"mathml-aam",
@@ -204,7 +203,6 @@
"direct-sockets",
"document-picture-in-picture",
"document-policy",
- "element-timing",
"entries-api",
"eyedropper-api",
"fenced-frame",
@@ -293,6 +291,7 @@
"rfc8288",
"rfc8297",
"rfc8470",
+ "rfc8610",
"rfc8878",
"rfc8942",
"rfc9110",
@@ -360,6 +359,7 @@
"css-content-3",
"css-counter-styles-3",
"css-display-3",
+ "css-display-4",
"css-easing-1",
"css-easing-2",
"css-flexbox-1",
@@ -380,6 +380,7 @@
"css-logical-1",
"css-masking-1",
"css-multicol-1",
+ "css-multicol-2",
"css-namespaces-3",
"css-nav-1",
"css-nesting-1",
@@ -682,10 +683,10 @@
]
},
"stats": {
- "crawled": 651,
+ "crawled": 652,
"errors": 1
},
- "crawler": "reffy-18.1.2",
+ "crawler": "reffy-18.2.0",
"results": [
{
"url": "https://aomediacodec.github.io/afgs1-spec/",
@@ -1453,11 +1454,11 @@
],
"crawled": "https://dom.spec.whatwg.org/",
"crawlCacheInfo": {
- "lastModified": "Wed, 15 Jan 2025 08:49:32 GMT"
+ "lastModified": "Mon, 20 Jan 2025 09:37:29 GMT"
},
"generator": "bikeshed",
- "date": "15 January 2025",
- "revision": "369654b7697f08dfd813aee0ce9064ae7b24e3ec",
+ "date": "20 January 2025",
+ "revision": "e6bb17598dc78d31b2c3db86a8d9c568bd11d1de",
"algorithms": "algorithms/dom.json",
"links": "links/dom.json",
"refs": "refs/dom.json",
@@ -1816,68 +1817,6 @@
"ids": "ids/css-conditional-values-1.json",
"cddl": []
},
- {
- "url": "https://drafts.csswg.org/css-display-4/",
- "seriesComposition": "full",
- "shortname": "css-display-4",
- "series": {
- "shortname": "css-display",
- "currentSpecification": "css-display-3",
- "title": "CSS Display",
- "shortTitle": "CSS Display",
- "releaseUrl": "https://www.w3.org/TR/css-display/",
- "nightlyUrl": "https://drafts.csswg.org/css-display/"
- },
- "seriesVersion": "4",
- "seriesPrevious": "css-display-3",
- "organization": "W3C",
- "groups": [
- {
- "name": "Cascading Style Sheets (CSS) Working Group",
- "url": "https://www.w3.org/Style/CSS/"
- }
- ],
- "nightly": {
- "url": "https://drafts.csswg.org/css-display-4/",
- "status": "Editor's Draft",
- "alternateUrls": [
- "https://w3c.github.io/csswg-drafts/css-display-4/"
- ],
- "repository": "https://github.com/w3c/csswg-drafts",
- "sourcePath": "css-display-4/Overview.bs",
- "filename": "index.html"
- },
- "title": "CSS Display Module Level 4",
- "source": "spec",
- "shortTitle": "CSS Display 4",
- "categories": [
- "browser"
- ],
- "standing": "good",
- "tests": {
- "repository": "https://github.com/web-platform-tests/wpt",
- "testPaths": [
- "css/css-display"
- ]
- },
- "versions": [
- "https://drafts.csswg.org/css-display-4/"
- ],
- "crawled": "https://drafts.csswg.org/css-display-4/",
- "crawlCacheInfo": {
- "lastModified": "Sat, 18 Jan 2025 00:43:52 GMT"
- },
- "generator": "bikeshed",
- "date": "27 December 2024",
- "revision": "e104c6ff5bcd9490c50ab8bc1cd9646157e43cfe",
- "links": "links/css-display-4.json",
- "refs": "refs/css-display-4.json",
- "css": "css/css-display.json",
- "dfns": "dfns/css-display-4.json",
- "headings": "headings/css-display-4.json",
- "ids": "ids/css-display-4.json",
- "cddl": []
- },
{
"url": "https://drafts.csswg.org/css-env-1/",
"seriesComposition": "full",
@@ -2342,68 +2281,6 @@
"ids": "ids/css-mixins-1.json",
"cddl": []
},
- {
- "url": "https://drafts.csswg.org/css-multicol-2/",
- "seriesComposition": "delta",
- "shortname": "css-multicol-2",
- "series": {
- "shortname": "css-multicol",
- "currentSpecification": "css-multicol-1",
- "title": "CSS Multi-column Layout",
- "shortTitle": "CSS Multicol",
- "releaseUrl": "https://www.w3.org/TR/css-multicol/",
- "nightlyUrl": "https://drafts.csswg.org/css-multicol/"
- },
- "seriesVersion": "2",
- "shortTitle": "CSS Multicol 2",
- "seriesPrevious": "css-multicol-1",
- "organization": "W3C",
- "groups": [
- {
- "name": "Cascading Style Sheets (CSS) Working Group",
- "url": "https://www.w3.org/Style/CSS/"
- }
- ],
- "nightly": {
- "url": "https://drafts.csswg.org/css-multicol-2/",
- "status": "Editor's Draft",
- "alternateUrls": [
- "https://w3c.github.io/csswg-drafts/css-multicol-2/"
- ],
- "repository": "https://github.com/w3c/csswg-drafts",
- "sourcePath": "css-multicol-2/Overview.bs",
- "filename": "index.html"
- },
- "title": "CSS Multi-column Layout Module Level 2",
- "source": "spec",
- "categories": [
- "browser"
- ],
- "standing": "good",
- "tests": {
- "repository": "https://github.com/web-platform-tests/wpt",
- "testPaths": [
- "css/css-multicol"
- ]
- },
- "versions": [
- "https://drafts.csswg.org/css-multicol-2/"
- ],
- "crawled": "https://drafts.csswg.org/css-multicol-2/",
- "crawlCacheInfo": {
- "lastModified": "Sat, 18 Jan 2025 00:43:52 GMT"
- },
- "generator": "bikeshed",
- "date": "17 December 2024",
- "revision": "e104c6ff5bcd9490c50ab8bc1cd9646157e43cfe",
- "links": "links/css-multicol-2.json",
- "refs": "refs/css-multicol-2.json",
- "css": "css/css-multicol-2.json",
- "dfns": "dfns/css-multicol-2.json",
- "headings": "headings/css-multicol-2.json",
- "ids": "ids/css-multicol-2.json",
- "cddl": []
- },
{
"url": "https://drafts.csswg.org/css-page-4/",
"seriesComposition": "delta",
@@ -3067,7 +2944,7 @@
"dfns": "dfns/fido-v2.1.json",
"headings": "headings/fido-v2.1.json",
"ids": "ids/fido-v2.1.json",
- "error": "Error: Switch option without found: authorized, the authenticator sets the minPinLength return value to the current minimum PIN length value.\n \nhttps://fidoalliance.org/specs/fido-v2.1-ps-20210615/reffy/scripts/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/extract-algorithms.mjs:550:19\nArray.map ()\nserializeSteps (https://fidoalliance.org/specs/fido-v2.1-ps-20210615/reffy/scripts/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/extract-algorithms.mjs:544:53)\n at evaluate (evaluate at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:656:36), :6:28)\n at #evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js:388:19)\n at async ExecutionContext.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js:275:16)\n at async IsolatedWorld.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/IsolatedWorld.js:97:16)\n at async CdpFrame.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.js:345:20)\n at async CdpPage.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js:808:20)\n at async processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:656:25)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:380:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)"
+ "error": "Error: Switch option without found: authorized, the authenticator sets the minPinLength return value to the current minimum PIN length value.\n \nhttps://fidoalliance.org/specs/fido-v2.1-ps-20210615/reffy/scripts/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/extract-algorithms.mjs:550:19\nArray.map ()\nserializeSteps (https://fidoalliance.org/specs/fido-v2.1-ps-20210615/reffy/scripts/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/__/extract-algorithms.mjs:544:53)\n at evaluate (evaluate at processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:656:36), :6:28)\n at #evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js:387:19)\n at async ExecutionContext.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/ExecutionContext.js:274:16)\n at async IsolatedWorld.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/IsolatedWorld.js:97:16)\n at async CdpFrame.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/api/Frame.js:345:20)\n at async CdpPage.evaluate (file:///home/runner/work/webref/webref/node_modules/puppeteer-core/lib/esm/puppeteer/api/Page.js:808:20)\n at async processSpecification (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/util.js:656:25)\n at async crawlSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:107:22)\n at async processSpec (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/specs-crawler.js:380:22)\n at async ThrottledQueue.runThrottled (file:///home/runner/work/webref/webref/node_modules/reffy/src/lib/throttled-queue.js:78:22)"
},
{
"url": "https://fs.spec.whatwg.org/",
@@ -3319,9 +3196,9 @@
],
"crawled": "https://html.spec.whatwg.org/multipage/",
"crawlCacheInfo": {
- "lastModified": "Fri, 17 Jan 2025 01:19:08 GMT"
+ "lastModified": "Mon, 20 Jan 2025 08:55:10 GMT"
},
- "date": "17 January 2025",
+ "date": "20 January 2025",
"algorithms": "algorithms/html.json",
"links": "links/html.json",
"refs": "refs/html.json",
@@ -3685,11 +3562,11 @@
],
"crawled": "https://infra.spec.whatwg.org/",
"crawlCacheInfo": {
- "lastModified": "Fri, 10 Jan 2025 10:24:32 GMT"
+ "lastModified": "Mon, 20 Jan 2025 09:01:48 GMT"
},
"generator": "bikeshed",
- "date": "10 January 2025",
- "revision": "2c3dbcedcd741806f8b9558dcbda8ce729f504fc",
+ "date": "20 January 2025",
+ "revision": "d48003101f84f836d3058f7bb7ddf55fbf42268e",
"algorithms": "algorithms/infra.json",
"links": "links/infra.json",
"refs": "refs/infra.json",
@@ -3742,11 +3619,11 @@
],
"crawled": "https://mimesniff.spec.whatwg.org/",
"crawlCacheInfo": {
- "lastModified": "Mon, 15 Jul 2024 14:28:18 GMT"
+ "lastModified": "Mon, 20 Jan 2025 08:47:40 GMT"
},
"generator": "bikeshed",
- "date": "15 July 2024",
- "revision": "b47be44aba066f3ef03864d9ed24eb8c7b533758",
+ "date": "20 January 2025",
+ "revision": "e1d383843d0e08edc428174e9a298a527a10f4a5",
"algorithms": "algorithms/mimesniff.json",
"links": "links/mimesniff.json",
"refs": "refs/mimesniff.json",
@@ -3799,11 +3676,11 @@
],
"crawled": "https://notifications.spec.whatwg.org/",
"crawlCacheInfo": {
- "lastModified": "Thu, 07 Nov 2024 14:52:39 GMT"
+ "lastModified": "Mon, 20 Jan 2025 08:47:25 GMT"
},
"generator": "bikeshed",
- "date": "7 November 2024",
- "revision": "d7f3e1a5ba09006aafa310608ac7e7a096b2190a",
+ "date": "20 January 2025",
+ "revision": "da830b44d2f8c5889dd8ebdf80b1740029971d17",
"algorithms": "algorithms/notifications.json",
"links": "links/notifications.json",
"refs": "refs/notifications.json",
@@ -7985,7 +7862,7 @@
],
"crawled": "https://tc39.es/proposal-set-methods/",
"crawlCacheInfo": {
- "lastModified": "Sat, 06 Jul 2024 03:17:20 GMT"
+ "lastModified": "Sat, 06 Jul 2024 03:17:19 GMT"
},
"date": "6 July 2024",
"links": "links/tc39-set-methods.json",
@@ -8566,6 +8443,57 @@
"ids": "ids/execCommand.json",
"cddl": []
},
+ {
+ "url": "https://w3c.github.io/element-timing/",
+ "seriesComposition": "full",
+ "shortname": "element-timing",
+ "series": {
+ "shortname": "element-timing",
+ "currentSpecification": "element-timing",
+ "title": "Element Timing API",
+ "shortTitle": "Element Timing API",
+ "nightlyUrl": "https://w3c.github.io/element-timing/"
+ },
+ "organization": "W3C",
+ "groups": [
+ {
+ "name": "Web Performance Working Group",
+ "url": "https://www.w3.org/groups/wg/webperf/"
+ }
+ ],
+ "nightly": {
+ "url": "https://w3c.github.io/element-timing/",
+ "status": "Editor's Draft",
+ "alternateUrls": [],
+ "repository": "https://github.com/w3c/element-timing",
+ "sourcePath": "index.bs",
+ "filename": "index.html"
+ },
+ "title": "Element Timing API",
+ "source": "spec",
+ "shortTitle": "Element Timing API",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "versions": [
+ "https://w3c.github.io/element-timing/"
+ ],
+ "crawled": "https://w3c.github.io/element-timing/",
+ "crawlCacheInfo": {
+ "lastModified": "Fri, 10 Jan 2025 05:21:07 GMT"
+ },
+ "generator": "bikeshed",
+ "date": "9 January 2025",
+ "algorithms": "algorithms/element-timing.json",
+ "links": "links/element-timing.json",
+ "refs": "refs/element-timing.json",
+ "idl": "idl/element-timing.idl",
+ "dfns": "dfns/element-timing.json",
+ "headings": "headings/element-timing.json",
+ "ids": "ids/element-timing.json",
+ "cddl": []
+ },
{
"url": "https://w3c.github.io/gamepad/extensions.html",
"seriesComposition": "full",
@@ -8743,7 +8671,7 @@
"filename": "index.html"
},
"title": "Media Playback Quality",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Media Playback Quality",
"categories": [
"browser"
@@ -9083,8 +9011,8 @@
"series": {
"shortname": "web-nfc",
"currentSpecification": "web-nfc",
- "title": "Web NFC API",
- "shortTitle": "Web NFC API",
+ "title": "Web NFC",
+ "shortTitle": "Web NFC",
"nightlyUrl": "https://w3c.github.io/web-nfc/"
},
"organization": "W3C",
@@ -9103,8 +9031,8 @@
"filename": "index.html"
},
"title": "Web NFC",
- "source": "specref",
- "shortTitle": "Web NFC API",
+ "source": "spec",
+ "shortTitle": "Web NFC",
"categories": [
"browser"
],
@@ -9145,6 +9073,7 @@
"shortTitle": "Web Share Target API",
"nightlyUrl": "https://w3c.github.io/web-share-target/"
},
+ "standing": "good",
"organization": "W3C",
"groups": [
{
@@ -9154,19 +9083,18 @@
],
"nightly": {
"url": "https://w3c.github.io/web-share-target/",
- "status": "Editor's Draft",
+ "status": "Unofficial Proposal Draft",
"alternateUrls": [],
"repository": "https://github.com/w3c/web-share-target",
"sourcePath": "index.html",
"filename": "index.html"
},
"title": "Web Share Target API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Web Share Target API",
"categories": [
"browser"
],
- "standing": "good",
"versions": [
"https://w3c.github.io/web-share-target/"
],
@@ -10468,7 +10396,7 @@
"filename": "index.html"
},
"title": "Background Fetch",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Background Fetch",
"categories": [
"browser"
@@ -10636,7 +10564,7 @@
"filename": "index.html"
},
"title": "Client Hints Infrastructure",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Client Hints Infrastructure",
"categories": [
"browser"
@@ -10752,7 +10680,7 @@
"filename": "index.html"
},
"title": "Cookie Store API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Cookie Store API",
"categories": [
"browser"
@@ -10898,6 +10826,7 @@
"shortTitle": "CSS Parser API",
"nightlyUrl": "https://wicg.github.io/css-parser-api/"
},
+ "standing": "good",
"organization": "W3C",
"groups": [
{
@@ -10907,19 +10836,18 @@
],
"nightly": {
"url": "https://wicg.github.io/css-parser-api/",
- "status": "Draft Community Group Report",
+ "status": "Unofficial Proposal Draft",
"alternateUrls": [],
"repository": "https://github.com/WICG/css-parser-api",
"sourcePath": "index.bs",
"filename": "index.html"
},
"title": "CSS Parser API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "CSS Parser API",
"categories": [
"browser"
],
- "standing": "good",
"tests": {
"repository": "https://github.com/web-platform-tests/wpt",
"testPaths": [
@@ -11215,7 +11143,7 @@
"series": {
"shortname": "document-picture-in-picture",
"currentSpecification": "document-picture-in-picture",
- "title": "Document Picture-in-Picture",
+ "title": "Document Picture-in-Picture Specification",
"shortTitle": "Document Picture-in-Picture",
"nightlyUrl": "https://wicg.github.io/document-picture-in-picture/"
},
@@ -11235,7 +11163,7 @@
"filename": "index.html"
},
"title": "Document Picture-in-Picture Specification",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Document Picture-in-Picture",
"categories": [
"browser"
@@ -11293,7 +11221,7 @@
"filename": "index.html"
},
"title": "Document Policy",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Document Policy",
"categories": [
"browser"
@@ -11322,63 +11250,6 @@
"ids": "ids/document-policy.json",
"cddl": []
},
- {
- "url": "https://wicg.github.io/element-timing/",
- "seriesComposition": "full",
- "shortname": "element-timing",
- "series": {
- "shortname": "element-timing",
- "currentSpecification": "element-timing",
- "title": "Element Timing API",
- "shortTitle": "Element Timing API",
- "nightlyUrl": "https://wicg.github.io/element-timing/"
- },
- "organization": "W3C",
- "groups": [
- {
- "name": "Web Platform Incubator Community Group",
- "url": "https://www.w3.org/community/wicg/"
- }
- ],
- "nightly": {
- "url": "https://wicg.github.io/element-timing/",
- "status": "Draft Community Group Report",
- "alternateUrls": [],
- "repository": "https://github.com/WICG/element-timing",
- "sourcePath": "index.bs",
- "filename": "index.html"
- },
- "title": "Element Timing API",
- "source": "specref",
- "shortTitle": "Element Timing API",
- "categories": [
- "browser"
- ],
- "standing": "good",
- "tests": {
- "repository": "https://github.com/web-platform-tests/wpt",
- "testPaths": [
- "element-timing"
- ]
- },
- "versions": [
- "https://wicg.github.io/element-timing/"
- ],
- "crawled": "https://w3c.github.io/element-timing/",
- "crawlCacheInfo": {
- "lastModified": "Mon, 06 Jan 2025 10:12:40 GMT"
- },
- "generator": "bikeshed",
- "date": "6 January 2025",
- "algorithms": "algorithms/element-timing.json",
- "links": "links/element-timing.json",
- "refs": "refs/element-timing.json",
- "idl": "idl/element-timing.idl",
- "dfns": "dfns/element-timing.json",
- "headings": "headings/element-timing.json",
- "ids": "ids/element-timing.json",
- "cddl": []
- },
{
"url": "https://wicg.github.io/entries-api/",
"seriesComposition": "full",
@@ -11406,7 +11277,7 @@
"filename": "index.html"
},
"title": "File and Directory Entries API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "File and Directory Entries API",
"categories": [
"browser"
@@ -11569,7 +11440,7 @@
"filename": "index.html"
},
"title": "File System Access",
- "source": "specref",
+ "source": "spec",
"shortTitle": "File System Access",
"categories": [
"browser"
@@ -11787,7 +11658,7 @@
"filename": "index.html"
},
"title": "Idle Detection API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Idle Detection API",
"categories": [
"browser"
@@ -11890,14 +11761,14 @@
],
"nightly": {
"url": "https://wicg.github.io/input-device-capabilities/",
- "status": "Draft Community Group Report",
+ "status": "Editor's Draft",
"alternateUrls": [],
"repository": "https://github.com/WICG/input-device-capabilities",
"sourcePath": "index.html",
"filename": "index.html"
},
"title": "Input Device Capabilities",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Input Device Capabilities",
"categories": [
"browser"
@@ -12068,7 +11939,7 @@
"filename": "isolated-contexts.html"
},
"title": "Isolated Contexts",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Isolated Contexts",
"standing": "good",
"versions": [
@@ -12116,7 +11987,7 @@
"filename": "index.html"
},
"title": "JS Self-Profiling API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "JS Self-Profiling API",
"categories": [
"browser"
@@ -12173,7 +12044,7 @@
"filename": "index.html"
},
"title": "Keyboard Lock",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Keyboard Lock",
"categories": [
"browser"
@@ -12231,7 +12102,7 @@
"filename": "index.html"
},
"title": "Keyboard Map",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Keyboard Map",
"categories": [
"browser"
@@ -12269,8 +12140,8 @@
"series": {
"shortname": "layout-instability",
"currentSpecification": "layout-instability",
- "title": "Layout Instability",
- "shortTitle": "Layout Instability",
+ "title": "Layout Instability API",
+ "shortTitle": "Layout Instability API",
"nightlyUrl": "https://wicg.github.io/layout-instability/"
},
"organization": "W3C",
@@ -12289,8 +12160,8 @@
"filename": "index.html"
},
"title": "Layout Instability API",
- "source": "specref",
- "shortTitle": "Layout Instability",
+ "source": "spec",
+ "shortTitle": "Layout Instability API",
"categories": [
"browser"
],
@@ -12326,8 +12197,8 @@
"series": {
"shortname": "local-font-access",
"currentSpecification": "local-font-access",
- "title": "Local Font Access",
- "shortTitle": "Local Font Access",
+ "title": "Local Font Access API",
+ "shortTitle": "Local Font Access API",
"nightlyUrl": "https://wicg.github.io/local-font-access/"
},
"organization": "W3C",
@@ -12346,8 +12217,8 @@
"filename": "index.html"
},
"title": "Local Font Access API",
- "source": "specref",
- "shortTitle": "Local Font Access",
+ "source": "spec",
+ "shortTitle": "Local Font Access API",
"categories": [
"browser"
],
@@ -12398,7 +12269,7 @@
"filename": "index.html"
},
"title": "Manifest Incubations",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Manifest Incubations",
"categories": [
"browser"
@@ -12651,7 +12522,7 @@
"filename": "index.html"
},
"title": "Network Information API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Network Information API",
"categories": [
"browser"
@@ -12810,7 +12681,7 @@
"filename": "index.html"
},
"title": "Page Lifecycle",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Page Lifecycle",
"categories": [
"browser"
@@ -12928,7 +12799,7 @@
"filename": "index.html"
},
"title": "Web Periodic Background Synchronization",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Web Periodic Background Synchronization",
"categories": [
"browser"
@@ -12987,7 +12858,7 @@
"filename": "index.html"
},
"title": "Requesting Permissions",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Requesting Permissions",
"categories": [
"browser"
@@ -13045,7 +12916,7 @@
"filename": "index.html"
},
"title": "Relinquishing Permissions",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Relinquishing Permissions",
"categories": [
"browser"
@@ -13140,6 +13011,7 @@
"shortTitle": "preferCurrentTab",
"nightlyUrl": "https://wicg.github.io/prefer-current-tab/"
},
+ "standing": "good",
"organization": "W3C",
"groups": [
{
@@ -13149,19 +13021,18 @@
],
"nightly": {
"url": "https://wicg.github.io/prefer-current-tab/",
- "status": "Draft Community Group Report",
+ "status": "Unofficial Proposal Draft",
"alternateUrls": [],
"repository": "https://github.com/WICG/prefer-current-tab",
"sourcePath": "index.html",
"filename": "index.html"
},
"title": "preferCurrentTab",
- "source": "specref",
+ "source": "spec",
"shortTitle": "preferCurrentTab",
"categories": [
"browser"
],
- "standing": "good",
"versions": [
"https://wicg.github.io/prefer-current-tab/"
],
@@ -13431,7 +13302,7 @@
"filename": "index.html"
},
"title": "Prioritized Task Scheduling",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Prioritized Task Scheduling",
"categories": [
"browser"
@@ -13605,7 +13476,7 @@
"filename": "index.html"
},
"title": "Accelerated Shape Detection in Images",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Accelerated Shape Detection in Images",
"categories": [
"browser"
@@ -13663,7 +13534,7 @@
"filename": "text.html"
},
"title": "Accelerated Text Detection in Images",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Accelerated Text Detection in Images",
"categories": [
"browser"
@@ -13767,7 +13638,7 @@
"filename": "index.html"
},
"title": "Origin-bound one-time codes delivered via SMS",
- "source": "specref",
+ "source": "spec",
"categories": [
"browser"
],
@@ -13856,8 +13727,8 @@
"organization": "W3C",
"groups": [
{
- "name": "Web Platform Incubator Community Group",
- "url": "https://www.w3.org/community/wicg/"
+ "name": "Audio Community Group",
+ "url": "https://www.w3.org/community/audio-comgp/"
}
],
"nightly": {
@@ -13869,7 +13740,7 @@
"filename": "index.html"
},
"title": "Web Speech API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Web Speech API",
"categories": [
"browser"
@@ -14255,7 +14126,7 @@
"filename": "index.html"
},
"title": "Web App Launch Handler API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Web App Launch Handler API",
"categories": [
"browser"
@@ -14740,7 +14611,7 @@
"filename": "index.html"
},
"title": "WebUSB API",
- "source": "specref",
+ "source": "spec",
"shortTitle": "WebUSB API",
"categories": [
"browser"
@@ -14799,7 +14670,7 @@
"filename": "index.html"
},
"title": "Window Controls Overlay",
- "source": "specref",
+ "source": "spec",
"shortTitle": "Window Controls Overlay",
"categories": [
"browser"
@@ -15333,9 +15204,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc6797",
"crawlCacheInfo": {
- "lastModified": "Fri, 17 Jan 2025 13:38:37 GMT"
+ "lastModified": "Fri, 10 Jan 2025 13:31:01 GMT"
},
- "date": "17 January 2025",
+ "date": "10 January 2025",
"links": "links/rfc6797.json",
"ids": "ids/rfc6797.json",
"cddl": []
@@ -15425,9 +15296,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc7239",
"crawlCacheInfo": {
- "lastModified": "Thu, 16 Jan 2025 11:05:31 GMT"
+ "lastModified": "Thu, 09 Jan 2025 06:51:20 GMT"
},
- "date": "16 January 2025",
+ "date": "9 January 2025",
"links": "links/rfc7239.json",
"ids": "ids/rfc7239.json",
"cddl": []
@@ -15471,9 +15342,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc7469",
"crawlCacheInfo": {
- "lastModified": "Sat, 18 Jan 2025 12:15:29 GMT"
+ "lastModified": "Sat, 11 Jan 2025 05:45:10 GMT"
},
- "date": "18 January 2025",
+ "date": "11 January 2025",
"links": "links/rfc7469.json",
"ids": "ids/rfc7469.json",
"cddl": []
@@ -15980,6 +15851,53 @@
"ids": "ids/rfc8470.json",
"cddl": []
},
+ {
+ "url": "https://www.rfc-editor.org/rfc/rfc8610",
+ "seriesComposition": "full",
+ "shortname": "rfc8610",
+ "series": {
+ "shortname": "rfc8610",
+ "currentSpecification": "rfc8610",
+ "title": "Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures",
+ "shortTitle": "CDDL",
+ "nightlyUrl": "https://www.rfc-editor.org/rfc/rfc8610"
+ },
+ "shortTitle": "CDDL",
+ "organization": "IETF",
+ "groups": [
+ {
+ "name": "Concise Binary Object Representation Maintenance and Extensions Working Group",
+ "url": "https://datatracker.ietf.org/wg/cbor/"
+ }
+ ],
+ "nightly": {
+ "url": "https://www.rfc-editor.org/rfc/rfc8610",
+ "status": "Proposed Standard",
+ "alternateUrls": [
+ "https://datatracker.ietf.org/doc/html/rfc8610",
+ "https://tools.ietf.org/html/rfc8610"
+ ],
+ "filename": "rfc8610.html"
+ },
+ "title": "RFC 8610: Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures",
+ "source": "ietf",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "versions": [
+ "https://www.rfc-editor.org/rfc/rfc8610"
+ ],
+ "crawled": "https://www.rfc-editor.org/rfc/rfc8610",
+ "crawlCacheInfo": {
+ "lastModified": "Tue, 14 Jan 2025 02:03:41 GMT"
+ },
+ "date": "14 January 2025",
+ "links": "links/rfc8610.json",
+ "dfns": "dfns/rfc8610.json",
+ "ids": "ids/rfc8610.json",
+ "cddl": []
+ },
{
"url": "https://www.rfc-editor.org/rfc/rfc8878",
"seriesComposition": "full",
@@ -16019,9 +15937,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc8878",
"crawlCacheInfo": {
- "lastModified": "Sun, 19 Jan 2025 16:27:42 GMT"
+ "lastModified": "Sun, 12 Jan 2025 00:47:59 GMT"
},
- "date": "19 January 2025",
+ "date": "12 January 2025",
"links": "links/rfc8878.json",
"refs": "refs/rfc8878.json",
"headings": "headings/rfc8878.json",
@@ -16067,9 +15985,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc8942",
"crawlCacheInfo": {
- "lastModified": "Wed, 15 Jan 2025 21:40:49 GMT"
+ "lastModified": "Wed, 08 Jan 2025 04:37:26 GMT"
},
- "date": "15 January 2025",
+ "date": "8 January 2025",
"links": "links/rfc8942.json",
"refs": "refs/rfc8942.json",
"headings": "headings/rfc8942.json",
@@ -16375,9 +16293,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc9163",
"crawlCacheInfo": {
- "lastModified": "Fri, 17 Jan 2025 05:27:38 GMT"
+ "lastModified": "Thu, 09 Jan 2025 04:36:17 GMT"
},
- "date": "17 January 2025",
+ "date": "9 January 2025",
"algorithms": "algorithms/rfc9163.json",
"links": "links/rfc9163.json",
"refs": "refs/rfc9163.json",
@@ -16532,9 +16450,9 @@
],
"crawled": "https://www.rfc-editor.org/rfc/rfc9649",
"crawlCacheInfo": {
- "lastModified": "Fri, 17 Jan 2025 09:38:40 GMT"
+ "lastModified": "Tue, 14 Jan 2025 12:42:52 GMT"
},
- "date": "17 January 2025",
+ "date": "14 January 2025",
"algorithms": "algorithms/rfc9649.json",
"links": "links/rfc9649.json",
"refs": "refs/rfc9649.json",
@@ -20167,6 +20085,74 @@
"ids": "ids/css-display-3.json",
"cddl": []
},
+ {
+ "url": "https://www.w3.org/TR/css-display-4/",
+ "seriesComposition": "full",
+ "shortname": "css-display-4",
+ "series": {
+ "shortname": "css-display",
+ "currentSpecification": "css-display-3",
+ "title": "CSS Display",
+ "shortTitle": "CSS Display",
+ "releaseUrl": "https://www.w3.org/TR/css-display/",
+ "nightlyUrl": "https://drafts.csswg.org/css-display/"
+ },
+ "seriesVersion": "4",
+ "seriesPrevious": "css-display-3",
+ "organization": "W3C",
+ "groups": [
+ {
+ "name": "Cascading Style Sheets (CSS) Working Group",
+ "url": "https://www.w3.org/Style/CSS/"
+ }
+ ],
+ "release": {
+ "url": "https://www.w3.org/TR/css-display-4/",
+ "status": "First Public Working Draft",
+ "filename": "Overview.html"
+ },
+ "nightly": {
+ "url": "https://drafts.csswg.org/css-display-4/",
+ "status": "Editor's Draft",
+ "alternateUrls": [
+ "https://w3c.github.io/csswg-drafts/css-display-4/"
+ ],
+ "repository": "https://github.com/w3c/csswg-drafts",
+ "sourcePath": "css-display-4/Overview.bs",
+ "filename": "index.html"
+ },
+ "title": "CSS Display Module Level 4",
+ "source": "w3c",
+ "shortTitle": "CSS Display 4",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "tests": {
+ "repository": "https://github.com/web-platform-tests/wpt",
+ "testPaths": [
+ "css/css-display"
+ ]
+ },
+ "versions": [
+ "https://www.w3.org/TR/css-display-4/",
+ "https://drafts.csswg.org/css-display-4/"
+ ],
+ "crawled": "https://drafts.csswg.org/css-display-4/",
+ "crawlCacheInfo": {
+ "lastModified": "Sat, 18 Jan 2025 00:43:52 GMT"
+ },
+ "generator": "bikeshed",
+ "date": "27 December 2024",
+ "revision": "e104c6ff5bcd9490c50ab8bc1cd9646157e43cfe",
+ "links": "links/css-display-4.json",
+ "refs": "refs/css-display-4.json",
+ "css": "css/css-display.json",
+ "dfns": "dfns/css-display-4.json",
+ "headings": "headings/css-display-4.json",
+ "ids": "ids/css-display-4.json",
+ "cddl": []
+ },
{
"url": "https://www.w3.org/TR/css-easing-1/",
"seriesComposition": "full",
@@ -21532,12 +21518,79 @@
"revision": "e104c6ff5bcd9490c50ab8bc1cd9646157e43cfe",
"links": "links/css-multicol-1.json",
"refs": "refs/css-multicol-1.json",
- "css": "css/css-multicol.json",
"dfns": "dfns/css-multicol-1.json",
"headings": "headings/css-multicol-1.json",
"ids": "ids/css-multicol-1.json",
"cddl": []
},
+ {
+ "url": "https://www.w3.org/TR/css-multicol-2/",
+ "seriesComposition": "full",
+ "shortname": "css-multicol-2",
+ "series": {
+ "shortname": "css-multicol",
+ "currentSpecification": "css-multicol-1",
+ "title": "CSS Multi-column Layout",
+ "shortTitle": "CSS Multicol",
+ "releaseUrl": "https://www.w3.org/TR/css-multicol/",
+ "nightlyUrl": "https://drafts.csswg.org/css-multicol/"
+ },
+ "seriesVersion": "2",
+ "shortTitle": "CSS Multicol 2",
+ "seriesPrevious": "css-multicol-1",
+ "organization": "W3C",
+ "groups": [
+ {
+ "name": "Cascading Style Sheets (CSS) Working Group",
+ "url": "https://www.w3.org/Style/CSS/"
+ }
+ ],
+ "release": {
+ "url": "https://www.w3.org/TR/css-multicol-2/",
+ "status": "First Public Working Draft",
+ "filename": "Overview.html"
+ },
+ "nightly": {
+ "url": "https://drafts.csswg.org/css-multicol-2/",
+ "status": "Editor's Draft",
+ "alternateUrls": [
+ "https://w3c.github.io/csswg-drafts/css-multicol-2/"
+ ],
+ "repository": "https://github.com/w3c/csswg-drafts",
+ "sourcePath": "css-multicol-2/Overview.bs",
+ "filename": "index.html"
+ },
+ "title": "CSS Multi-column Layout Module Level 2",
+ "source": "w3c",
+ "categories": [
+ "browser"
+ ],
+ "standing": "good",
+ "tests": {
+ "repository": "https://github.com/web-platform-tests/wpt",
+ "testPaths": [
+ "css/css-multicol"
+ ]
+ },
+ "versions": [
+ "https://www.w3.org/TR/css-multicol-2/",
+ "https://drafts.csswg.org/css-multicol-2/"
+ ],
+ "crawled": "https://drafts.csswg.org/css-multicol-2/",
+ "crawlCacheInfo": {
+ "lastModified": "Sat, 18 Jan 2025 00:43:52 GMT"
+ },
+ "generator": "bikeshed",
+ "date": "17 December 2024",
+ "revision": "e104c6ff5bcd9490c50ab8bc1cd9646157e43cfe",
+ "links": "links/css-multicol-2.json",
+ "refs": "refs/css-multicol-2.json",
+ "css": "css/css-multicol.json",
+ "dfns": "dfns/css-multicol-2.json",
+ "headings": "headings/css-multicol-2.json",
+ "ids": "ids/css-multicol-2.json",
+ "cddl": []
+ },
{
"url": "https://www.w3.org/TR/css-namespaces-3/",
"seriesComposition": "full",
@@ -27319,7 +27372,7 @@
],
"crawled": "https://w3c.github.io/graphics-aam/",
"crawlCacheInfo": {
- "lastModified": "Wed, 11 Dec 2024 17:52:06 GMT"
+ "lastModified": "Wed, 11 Dec 2024 17:52:05 GMT"
},
"generator": "respec",
"date": "11 December 2024",
@@ -27575,7 +27628,7 @@
],
"crawled": "https://w3c.github.io/html-aam/",
"crawlCacheInfo": {
- "lastModified": "Thu, 16 Jan 2025 14:19:53 GMT"
+ "lastModified": "Thu, 16 Jan 2025 14:19:52 GMT"
},
"generator": "respec",
"date": "16 January 2025",
@@ -29968,7 +30021,7 @@
],
"crawled": "https://w3c.github.io/mse-byte-stream-format-mpeg-audio/",
"crawlCacheInfo": {
- "lastModified": "Tue, 23 Jul 2024 08:09:25 GMT"
+ "lastModified": "Tue, 23 Jul 2024 08:09:24 GMT"
},
"generator": "respec",
"date": "23 July 2024",
@@ -34938,7 +34991,7 @@
],
"release": {
"url": "https://www.w3.org/TR/vc-data-integrity/",
- "status": "Candidate Recommendation Snapshot",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"nightly": {
@@ -37122,7 +37175,7 @@
],
"release": {
"url": "https://www.w3.org/TR/webgpu/",
- "status": "Candidate Recommendation Snapshot",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"nightly": {
@@ -38426,7 +38479,7 @@
],
"release": {
"url": "https://www.w3.org/TR/WGSL/",
- "status": "Candidate Recommendation Snapshot",
+ "status": "Candidate Recommendation Draft",
"filename": "Overview.html"
},
"title": "WebGPU Shading Language",
diff --git a/ed/links/rfc8610.json b/ed/links/rfc8610.json
new file mode 100644
index 000000000000..9a73e1230bf1
--- /dev/null
+++ b/ed/links/rfc8610.json
@@ -0,0 +1,38 @@
+{
+ "spec": {
+ "title": "RFC 8610: Concise Data Definition Language (CDDL): A Notational Convention to Express Concise Binary Object Representation (CBOR) and JSON Data Structures",
+ "url": "https://www.rfc-editor.org/rfc/rfc8610"
+ },
+ "links": {
+ "rawlinks": {
+ "https://datatracker.ietf.org/doc/rfc8610": {},
+ "https://datatracker.ietf.org/ipr/search/?rfc=8610&submit=rfc": {},
+ "https://github.com/cabo/cbor-diag": {},
+ "https://trustee.ietf.org/license-info": {},
+ "https://www.rfc-editor.org/": {},
+ "https://www.rfc-editor.org/bcp/bcp14": {},
+ "https://www.rfc-editor.org/bcp/bcp26": {},
+ "https://www.rfc-editor.org/bcp/bcp72": {},
+ "https://www.rfc-editor.org/bcp/bcp78": {},
+ "https://www.rfc-editor.org/info/rfc2119": {},
+ "https://www.rfc-editor.org/info/rfc3552": {},
+ "https://www.rfc-editor.org/info/rfc3629": {},
+ "https://www.rfc-editor.org/info/rfc4648": {},
+ "https://www.rfc-editor.org/info/rfc5234": {},
+ "https://www.rfc-editor.org/info/rfc7049": {},
+ "https://www.rfc-editor.org/info/rfc7071": {},
+ "https://www.rfc-editor.org/info/rfc7493": {},
+ "https://www.rfc-editor.org/info/rfc7950": {},
+ "https://www.rfc-editor.org/info/rfc8007": {},
+ "https://www.rfc-editor.org/info/rfc8126": {},
+ "https://www.rfc-editor.org/info/rfc8152": {},
+ "https://www.rfc-editor.org/info/rfc8174": {},
+ "https://www.rfc-editor.org/info/rfc8259": {},
+ "https://www.rfc-editor.org/info/rfc8428": {},
+ "https://www.rfc-editor.org/info/rfc8610": {},
+ "https://www.w3.org/TR/2004/REC-xmlschema-2-20041028": {},
+ "https://yaml.org/spec/1.2/spec.html": {}
+ },
+ "autolinks": {}
+ }
+}
\ No newline at end of file