# exchange.recipe.profile

> Published by [recipe.exchange](https://lexicon.garden/identity/did:plc:4cx7ts7lqgjtsfquo53qo3sz)

✓ This is the authoritative definition for this NSID.

## Description

Profile information for recipe.exchange users

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4cx7ts7lqgjtsfquo53qo3sz/exchange.recipe.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4cx7ts7lqgjtsfquo53qo3sz/exchange.recipe.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4cx7ts7lqgjtsfquo53qo3sz/exchange.recipe.profile/examples)

## Definitions

### `exchange.recipe.profile`

**Type**: `record`

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `about` | `string` | No | Biography or description of the profile |
| `email` | `string` (email) | No |  |
| `links` | `array` | No |  |
| `phone` | `string` | No |  |
| `address` | `object` | No |  |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the profile was created |
| `updatedAt` | `string` (datetime) | No | Timestamp when this recipe was last updated |
| `profileType` | `union` | Yes |  |
| `businessType` | `union` | No |  |

## Raw Schema

```json
{
  "id": "exchange.recipe.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt",
          "profileType"
        ],
        "properties": {
          "about": {
            "type": "string",
            "maxLength": 2000,
            "description": "Biography or description of the profile"
          },
          "email": {
            "type": "string",
            "format": "email",
            "maxLength": 255
          },
          "links": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "title",
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "format": "uri",
                  "maxLength": 2048
                },
                "title": {
                  "type": "string",
                  "maxLength": 100
                }
              }
            },
            "maxLength": 5
          },
          "phone": {
            "type": "string",
            "maxLength": 20
          },
          "address": {
            "type": "object",
            "properties": {
              "city": {
                "type": "string"
              },
              "state": {
                "type": "string"
              },
              "country": {
                "type": "string"
              },
              "street1": {
                "type": "string"
              },
              "street2": {
                "type": "string"
              },
              "latitude": {
                "type": "number"
              },
              "longitude": {
                "type": "number"
              },
              "postalCode": {
                "type": "string"
              }
            }
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the profile was created"
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when this recipe was last updated"
          },
          "profileType": {
            "refs": [
              "exchange.recipe.defs#profileTypePersonal",
              "exchange.recipe.defs#profileTypeBusiness"
            ],
            "type": "union"
          },
          "businessType": {
            "refs": [
              "exchange.recipe.defs#businessTypeRestaurant",
              "exchange.recipe.defs#businessTypeCafe",
              "exchange.recipe.defs#businessTypeFoodTruck",
              "exchange.recipe.defs#businessTypeCatering",
              "exchange.recipe.defs#businessTypePersonalChef",
              "exchange.recipe.defs#businessTypeMealService",
              "exchange.recipe.defs#businessTypeProducer",
              "exchange.recipe.defs#businessTypeRetailer",
              "exchange.recipe.defs#businessTypeMarketVendor",
              "exchange.recipe.defs#businessTypeFarm",
              "exchange.recipe.defs#businessTypeEducator",
              "exchange.recipe.defs#businessTypeNutritionist",
              "exchange.recipe.defs#businessTypeContentCreator",
              "exchange.recipe.defs#businessTypeConsultant",
              "exchange.recipe.defs#businessTypeEquipmentManufacturer",
              "exchange.recipe.defs#businessTypeSupplier",
              "exchange.recipe.defs#businessTypeInstitution",
              "exchange.recipe.defs#businessTypeNonprofit",
              "exchange.recipe.defs#businessTypeCommunityOrg",
              "exchange.recipe.defs#businessTypeHomeCook",
              "exchange.recipe.defs#businessTypeProfessional"
            ],
            "type": "union"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Profile information for recipe.exchange users"
}
```
