Seo
Type: schema
TypeScript Definition
typescript
Seo: {{
slug: string;
title: string | null;
description: string | null;
keywords: string[] | null;
};
/**
* ShipmentItem
* @description Shipment item model
*/
}OpenAPI Schema
json
{
"title": "Seo",
"type": "object",
"externalDocs": {
"url": "https://llm-docs.commercengine.io/storefront/schemas/Seo",
"description": "API reference for the Seo schema"
},
"required": [
"slug",
"title",
"description",
"keywords"
],
"properties": {
"slug": {
"type": "string"
},
"title": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"keywords": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
}
}Auto-generated from OpenAPI spec and TypeScript definitions