diff --git a/docs/server/source/data-models/asset-model.md b/docs/server/source/data-models/asset-model.md index 312c6765..16188400 100644 --- a/docs/server/source/data-models/asset-model.md +++ b/docs/server/source/data-models/asset-model.md @@ -1,10 +1,11 @@ # The Digital Asset Model -To avoid redundant data in transactions, the digital asset model is different for `CREATE` and `TRANSFER` transactions. +The asset ID is the same as the ID of the CREATE transaction that defined the asset. -A digital asset's properties are defined in a `CREATE` transaction with the following model: +In the case of a CREATE transaction, the transaction ID is duplicated into the asset object for clarity and consistency in the database. The CREATE transaction also contains a user definable payload to describe the asset: ```json { + "id": "", "data": "" } ```