> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/project-object.md).

# Project Object

## Description

Details for a project.

## Properties

### createdDate

Date, in ISO 8601 format, at which the project was created.

Type: `string`

### isDefault

Indicates whether the project is the default project for the account.

Type: `boolean`

### lastModifiedDate

Date, in ISO 8601 format, at which the project was last modified.

Type: `string`

### lastModifiedBy

User that last modified the project details (name, etc.)

Type: `string`

### name

Name of the project.

Type: `string`

### notifications

Notification settings for the project.

Type: [ProjectNotificationsSettings](/data-types/projectnotificationssettings-object.md) object

### projectId

ID of the project.

Type: `string`

### reportEmails

List of email addresses used to send action reports.

Type: Array of `string`

### rss

RSS settings for the project.

Type: [ProjectRssFeed](/data-types/projectrssfeed-object.md) object

### status

Status of the project.

Type: `string`

Valid Values:

* `active`
* `archived`

## Sample JSON

```javascript
{
    "projectId": "proj-12345678",
    "name": "Customer 1",
    "status": "active",
    
    "isDefault": false,
    
    "createdDate": "2019-05-05T12:00:00:Z",
    "lastModifiedDate": "2020-01-21T14:00:00:Z",
    "lastModifiedBy": "u-12345678",
    
    "notifications": {
        "accountNotifications": "allow"
    },
    "rss": {
        "status": "not-created"
    },
    "reportEmails": [
        "user1@example.com",
        "user2@example.com"
    ]
}
```
