# Primitives

### Money

Monetary value (compatible with [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217))

```javascript
// Example Money

{
    "amount": "24.00",
    "currency": "JOD"
}
```

### DateTime

A String timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601)

```javascript
// Example DateTime

"2021-01-09T15:10:39.064734+00:00"
```

### Address

Geographic and contact identifiers for order invoicing and fulfillment

```javascript
// Example Address

{
    "name": "John Doe",
    "city": "Amman",
    "email": "john.doe@gmail.com",
    "country": "Jordan",
    "postcode": "1234",
    "telephone": "+447591234567",
    "line1": "12 Some Place",
    "line2": "Some Neighbourhood",
    "lng": "35.91250621679689",
    "lat": "31.94451475545495",
}
```

### BilingualString

String in both English and Arabic

```javascript
// BilingualString Example

{
    "en": "hello",
    "ar": "مرحباً"
}
```
