Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
223 changes: 209 additions & 14 deletions api-reference/v1-openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1617,10 +1617,32 @@
"type": "string"
},
"title": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Title extracted from the page, can be a string or array of strings"
},
"description": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Description extracted from the page, can be a string or array of strings"
},
"favicon": {
"type": "string"
Expand Down Expand Up @@ -2272,10 +2294,32 @@
"type": "object",
"properties": {
"title": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Title extracted from the page, can be a string or array of strings"
},
"description": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Description extracted from the page, can be a string or array of strings"
},
"sourceURL": {
"type": "string"
Expand Down Expand Up @@ -3057,6 +3101,27 @@
"type": "string",
"format": "uri"
},
"keywords": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Keywords extracted from the page, can be a string or array of strings"
},
"ogLocaleAlternate": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternative locales for the page"
},
"<any other metadata> ": {
"type": "string"
},
Expand Down Expand Up @@ -3190,21 +3255,86 @@
"type": "object",
"properties": {
"title": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Title extracted from the page, can be a string or array of strings"
},
"description": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Description extracted from the page, can be a string or array of strings"
},
"language": {
"type": "string",
"nullable": true
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"nullable": true,
"description": "Language extracted from the page, can be a string or array of strings"
},
"sourceURL": {
"type": "string",
"format": "uri"
},
"keywords": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Keywords extracted from the page, can be a string or array of strings"
},
"ogLocaleAlternate": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternative locales for the page"
},
"<any other metadata> ": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Other metadata extracted from HTML, can be a string or array of strings"
},
"statusCode": {
"type": "integer",
Expand Down Expand Up @@ -3323,21 +3453,86 @@
"type": "object",
"properties": {
"title": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Title extracted from the page, can be a string or array of strings"
},
"description": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Description extracted from the page, can be a string or array of strings"
},
"language": {
"type": "string",
"nullable": true
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"nullable": true,
"description": "Language extracted from the page, can be a string or array of strings"
},
"sourceURL": {
"type": "string",
"format": "uri"
},
"keywords": {
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Keywords extracted from the page, can be a string or array of strings"
},
"ogLocaleAlternate": {
"type": "array",
"items": {
"type": "string"
},
"description": "Alternative locales for the page"
},
"<any other metadata> ": {
"type": "string"
"oneOf": [
{
"type": "string"
},
{
"type": "array",
"items": {
"type": "string"
}
}
],
"description": "Other metadata extracted from HTML, can be a string or array of strings"
},
"statusCode": {
"type": "integer",
Expand Down
Loading