Skip to content

ServiceProviderBasicDetail

Type: schema

TypeScript Definition

typescript
ServiceProviderBasicDetail: {{
            id: string;
            name: string;
            short_description: string;
            features: Record<string, never>[];
            /** @description The logo url of the service provider in dark mode. */
            logo_dark: string;
            /** @description The logo url of the service provider in light mode. */
            logo_light: string;
        };
        /**
         * ShipmentItem
         * @description Shipment item model
         */
}

OpenAPI Schema

json
{
  "title": "ServiceProviderBasicDetail",
  "type": "object",
  "externalDocs": {
    "url": "https://llm-docs.commercengine.io/storefront/schemas/ServiceProviderBasicDetail",
    "description": "API reference for the ServiceProviderBasicDetail schema"
  },
  "required": [
    "id",
    "name",
    "short_description",
    "features",
    "logo_dark",
    "logo_light"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "short_description": {
      "type": "string"
    },
    "features": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "logo_dark": {
      "description": "The logo url of the service provider in dark mode.",
      "type": "string"
    },
    "logo_light": {
      "description": "The logo url of the service provider in light mode.",
      "type": "string"
    }
  }
}

Auto-generated from OpenAPI spec and TypeScript definitions

Last updated: