From ef7412bd358ebce530705aa8ab466be9fb90d425 Mon Sep 17 00:00:00 2001 From: Jason Fox Date: Tue, 4 Jun 2024 09:53:39 +0200 Subject: [PATCH] Prettify --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 21bd613..78bd5a0 100644 --- a/README.md +++ b/README.md @@ -51,13 +51,14 @@ The tutorial uses [cUrl](https://ec.haxx.se/) commands throughout, but is also a # Understanding Entities and Relationships -> “The essence of philosophy is a sense of wonder at the interconnectedness of human beings to one another and to the universe that encompasses them.” +> “The essence of philosophy is a sense of wonder at the interconnectedness of human beings to one another and to the +> universe that encompasses them.” > -> ― Marcus Tullius Cicero, On Living and Dying Well +> ― Marcus Tullius Cicero, On Living and Dying Well Within the FIWARE platform, the context of an entity represents the state of a physical or conceptual object which -exists in the real world. The connection from one entity to another is expressed using a **Relationship**, enabling users -to make inferences across the whole knowledge graph of the system. +exists in the real world. The connection from one entity to another is expressed using a **Relationship**, enabling +users to make inferences across the whole knowledge graph of the system. ## Entities within a Farm Management Information System (FMIS) @@ -101,6 +102,7 @@ and the `fillingLevel` of the barn could be reduced and so on. An organic **Fert could change its `formula`, hay could be sold and the `fillingLevel` of the barn could be reduced and so on. > [!NOTE] +> > This tutorial uses the following typographic styling : > > - Entity types have been made **bold text**. @@ -194,6 +196,7 @@ This command will also import seed data (**Building**, **Person**, **Temperature **Herbicide** and **PartField**) on startup. > [!NOTE] +> > If you want to clean up and start over again you can do so with the following command: > > ```console @@ -484,12 +487,12 @@ response is a JSON array as shown. { "@context": "http://context/ngsi-context.jsonld", "id": "urn:ngsi-ld:TemperatureSensor:001", - "type": "TemperatureSensor", + "type": "TemperatureSensor" }, { "@context": "http://context/ngsi-context.jsonld", "id": "urn:ngsi-ld:FillingLevelSensor:001", - "type": "FillingLevelSensor", + "type": "FillingLevelSensor" } ] ```