The data object

Every time you upload a piece of data to your super.AI storage, we create a data object containing useful information about the data, including a unique identifier.

Data object attributes

AttributeTypeDescription
idintegerIdentifier for the data point
ownerIdintegerIdentifier for the user who uploaded the data point
pathstringFolder path for where the data point is stored
mimeTypestringThe media type of the data point
statusstringCurrent status of the data point, either ACTIVE or DELETED
createdISO 8601 dateUTC timestamp for when the data was uploaded
updatedISO 8601 dateUTC timestamp for when the data was altered (e.g., deleted)
{
  "id": 12345,
  "ownerId": 1234,
  "path": "default/image0454.jpeg",
  "mimeType": "image/jpeg",
  "status": "ACTIVE",
  "created": "2020-01-27T14:10:41.000Z",
  "updated": "2020-01-27T14:10:41.000Z"
}