# dev.sensorthings.featureOfInterest

> Published by [sensorthings.dev](https://lexicon.garden/identity/did:plc:gqcmwsromoknyigx2afqcvqk)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:gqcmwsromoknyigx2afqcvqk/dev.sensorthings.featureOfInterest)
- [Documentation](https://lexicon.garden/lexicon/did:plc:gqcmwsromoknyigx2afqcvqk/dev.sensorthings.featureOfInterest/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:gqcmwsromoknyigx2afqcvqk/dev.sensorthings.featureOfInterest/examples)

## Definitions

### `dev.sensorthings.featureOfInterest`

**Type**: `record`

The real-world feature that an Observation is about.

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | Yes |  |
| `feature` | `unknown` | Yes | GeoJSON geometry or other spatial representation of the feature |
| `createdAt` | `string` (datetime) | Yes |  |
| `description` | `string` | No |  |
| `encodingType` | `string` | Yes | Encoding of the feature field, e.g. application/vnd.geo+json |

## Raw Schema

```json
{
  "id": "dev.sensorthings.featureOfInterest",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "encodingType",
          "feature",
          "createdAt"
        ],
        "properties": {
          "name": {
            "type": "string",
            "maxLength": 256
          },
          "feature": {
            "type": "unknown",
            "description": "GeoJSON geometry or other spatial representation of the feature"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          },
          "description": {
            "type": "string",
            "maxLength": 2048
          },
          "encodingType": {
            "type": "string",
            "maxLength": 128,
            "description": "Encoding of the feature field, e.g. application/vnd.geo+json"
          }
        }
      },
      "description": "The real-world feature that an Observation is about."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
