Root of the HTML document or fragment.
Record Key
tid
Timestamp-based ID
Properties
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"children"
],
"properties": {
"children": {
"type": "array",
"items": {
"refs": [
"#docType",
"#element",
"#text",
"#comment"
],
"type": "union"
}
}
}
},
"description": "Root of the HTML document or fragment."
}
An HTML attribute (https://developer.mozilla.org/en-US/docs/Glossary/Attribute)
Properties
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"name",
"value"
],
"properties": {
"name": {
"type": "string"
},
"value": {
"type": "string"
}
},
"description": "An HTML attribute (https://developer.mozilla.org/en-US/docs/Glossary/Attribute)"
}
An HTML Doctype node (https://developer.mozilla.org/en-US/docs/Glossary/Doctype)
This object has no properties defined.
View raw schema
{
"type": "object",
"properties": {},
"description": "An HTML Doctype node (https://developer.mozilla.org/en-US/docs/Glossary/Doctype)"
}
An HTML element node (https://developer.mozilla.org/en-US/docs/Web/API/Element)
Properties
No description available.
No description available.
No description available.
View raw schema
{
"type": "object",
"required": [
"tagName",
"attributes",
"children"
],
"properties": {
"tagName": {
"type": "string"
},
"children": {
"type": "array",
"items": {
"refs": [
"#element",
"#text",
"#comment"
],
"type": "union"
}
},
"attributes": {
"type": "array",
"items": {
"ref": "#attribute",
"type": "ref"
}
}
},
"description": "An HTML element node (https://developer.mozilla.org/en-US/docs/Web/API/Element)"
}
An HTML text node (https://developer.mozilla.org/en-US/docs/Web/API/Text)
Properties
No description available.
View raw schema
{
"type": "object",
"required": [
"value"
],
"properties": {
"value": {
"type": "string"
}
},
"description": "An HTML text node (https://developer.mozilla.org/en-US/docs/Web/API/Text)"
}