# mov.danabra.Greeting

> Published by [danabra.mov](https://lexicon.garden/identity/did:plc:fpruhuo22xkm5o7ttr2ktxdo)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:fpruhuo22xkm5o7ttr2ktxdo/mov.danabra.Greeting)
- [Documentation](https://lexicon.garden/lexicon/did:plc:fpruhuo22xkm5o7ttr2ktxdo/mov.danabra.Greeting/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:fpruhuo22xkm5o7ttr2ktxdo/mov.danabra.Greeting/examples)

## Definitions

### `mov.danabra.Greeting`

**Type**: `procedure`

A greeting component that displays a personalized hello message.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `name` | `string` | No | Name to greet. |

#### Output

**Encoding**: `application/json`

## Raw Schema

```json
{
  "id": "mov.danabra.Greeting",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "properties": {
            "name": {
              "type": "string",
              "maxLength": 640,
              "description": "Name to greet."
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "ref": "at.inlay.defs#response",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "description": "A greeting component that displays a personalized hello message."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
