From 801ec367dc62a3d84bd86f8793de7651cb2c30d2 Mon Sep 17 00:00:00 2001 From: DJ Adams Date: Tue, 22 Jul 2025 17:30:56 +0100 Subject: [PATCH] Remove repeated example from types.md The exact same `Books` entity example appears both before and after the table showing the built-in types. I've removed the second one (as the one being less appropriate). --- cds/types.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/cds/types.md b/cds/types.md index 5e64199c1..6ef6efe5c 100644 --- a/cds/types.md +++ b/cds/types.md @@ -46,16 +46,6 @@ These types are used to define the structure of entities and services, and are m | `Map` | Mapped to *NCLOB* for HANA. | *JSON* type | | `Vector` (`dimension `) | Requires SAP HANA Cloud QRC 1/2024, or later | _REAL_VECTOR_ | -```cds -entity Books { - key ID : UUID; - title : String(111); - stock : Integer; - price : Price; -} -type Price : Decimal; -``` - These types are used to define the structure of entities and services, and are mapped to respective database types when the model is deployed. > (1) Concrete mappings to specific databases may differ.