{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ShippingCarrier", "title": "ShippingCarrier", "properties": { "code": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "id": { "type": "string" }, "is_active": { "type": "boolean" }, "logo_url": { "type": "string" }, "name": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "updated_at": { "format": "date-time", "type": "string" }, "website_url": { "type": "string" } }, "type": "object" }