Skip to content

Commit

Permalink
Fix text style
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-fox committed Nov 21, 2024
1 parent 7ef5396 commit cac78c8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The tutorial uses [cUrl](https://ec.haxx.se/) commands throughout, but is also a
- [Creating an exclusive registration](#creating-an-exclusive-registration)
- [Auxiliary registration](#auxiliary-registration)
- [Reading Crop Data](#reading-crop-data)
- [Creating an Auxilary registration](#creating-an-auxilary-registration)
- [Creating an Auxiliary registration](#creating-an-auxilary-registration)
</details>

# NGSI-LD Registrations
Expand Down Expand Up @@ -76,11 +76,11 @@ where and which NGSI-LD API endpoints (or subset of endpoints) are available fro
broker then uses this information from the registry to access and aggregate information to be returned - for example
merging two views of an entity to retrieve the full information when making a **GET** request.

The actual source of any context data is hidden from the end-user since NGSI-LD interactions are purely based around
The actual source of any context data is hidden from the end user since NGSI-LD interactions are purely based around
interfaces, this enables the creation of a hierarchy of context brokers - **Broker A** requests data from **Broker B**
which in turn requests data from **Broker C** and so on. Securing the data space using distribute trust mechanisms is
vital since no central control that can be assumed. Furthermore the standard JSON-LD concepts of `@context` and
expansion/compaction operations mean that data can always be retrieved using the preferred terminology of the end-user.
expansion/compaction operations mean that data can always be retrieved using the preferred terminology of the end user.

There are four basic types of registration in NGSI-LD - these are described in more detail below:

Expand Down Expand Up @@ -1019,11 +1019,11 @@ The weather forecast context broker has more information and its values have a m
]
```

### Creating an Auxilary registration
### Creating an Auxiliary registration

#### 1️⃣9️⃣ Request:

An auxilary registration can be made on the **Farmer** context broker to only receive **live** information from the weather forecaster if it does not hold information locally. The `mode` is set to `"auxilary"`, and since the IoT Agent is only accepting **GET** requests the `"operations` attribute is set to `"retrieveOps"` only.
An auxiliary registration can be made on the **Farmer** context broker to only receive **live** information from the weather forecaster if it does not hold information locally. The `mode` is set to `"auxilary"`, and since the IoT Agent is only accepting **GET** requests the `"operations` attribute is set to `"retrieveOps"` only.

```console
curl -L 'http://localhost:1026/ngsi-ld/v1/csourceRegistrations/' \
Expand Down

0 comments on commit cac78c8

Please sign in to comment.