changedOutput schema / properties / data / description
Previous value: -"Structured Content extraction result"New value: +"Structured Web content extraction result"
changedOutput schema / properties / data / properties / extraction / properties / version / const
Previous value: -"apiacre-content-extract/2"New value: +"apiacre-content-extract/3"
addedOutput schema / properties / data / properties / links
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "detected": {
+ "maximum": 500,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "external": {
+ "maximum": 500,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "internal": {
+ "maximum": 500,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "items": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "external": {
+ "type": "boolean"
+ },
+ "text": {
+ "maxLength": 200,
+ "type": "string"
+ },
+ "url": {
+ "format": "uri",
+ "type": "string"
+ }
+ },
+ "required": [
+ "url",
+ "text",
+ "external"
+ ],
+ "type": "object"
+ },
+ "maxItems": 100,
+ "type": "array"
+ },
+ "returnLimit": {
+ "const": 100,
+ "type": "integer"
+ },
+ "returned": {
+ "maximum": 100,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "scanLimit": {
+ "const": 500,
+ "type": "integer"
+ },
+ "truncated": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "detected",
+ "returned",
+ "internal",
+ "external",
+ "truncated",
+ "scanLimit",
+ "returnLimit",
+ "items"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / data / properties / pageSignals
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "alternateLanguageCount": {
+ "maximum": 50,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "canonicalUrl": {
+ "format": "uri",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "feedCount": {
+ "maximum": 20,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "headings": {
+ "additionalProperties": false,
+ "properties": {
+ "h1": {
+ "items": {
+ "type": "string"
+ },
+ "maxItems": 10,
+ "type": "array"
+ },
+ "h2Count": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "h3Count": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "h1",
+ "h2Count",
+ "h3Count"
+ ],
+ "type": "object"
+ },
+ "structuredData": {
+ "additionalProperties": false,
+ "properties": {
+ "blocks": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "invalidBlocks": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "truncated": {
+ "type": "boolean"
+ },
+ "types": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "validBlocks": {
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "blocks",
+ "validBlocks",
+ "invalidBlocks",
+ "types",
+ "truncated"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "canonicalUrl",
+ "headings",
+ "structuredData",
+ "feedCount",
+ "alternateLanguageCount"
+ ],
+ "type": "object"
+}