freshworks · Schema

Product

Properties

Name Type Description
id integer Unique ID of the product.
name string Name of the product.
description string Description of the product.
created_at string Timestamp when the product was created.
updated_at string Timestamp when the product was last updated.
View JSON Schema on GitHub

JSON Schema

freshworks-product-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Product",
  "title": "Product",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique ID of the product."
    },
    "name": {
      "type": "string",
      "description": "Name of the product."
    },
    "description": {
      "type": "string",
      "description": "Description of the product."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the product was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when the product was last updated."
    }
  }
}