src/attachments/schemas/attachment.schema.ts
Properties |
| _id |
Type : string
|
Decorators :
@Prop({type: String})
|
| caption |
Type : string
|
Decorators :
@ApiProperty({type: String, description: 'Attachment caption to show in frontend.'})
|
| datasetId |
Type : string
|
Decorators :
@ApiProperty({type: String, required: false})
|
| id |
Type : string
|
Decorators :
@ApiProperty({type: String, default: () => })
|
| proposalId |
Type : string
|
Decorators :
@ApiProperty({type: String, required: false})
|
| sampleId |
Type : string
|
Decorators :
@ApiProperty({type: String, required: false})
|
| thumbnail |
Type : string
|
Decorators :
@ApiProperty({type: String, description: 'A small, base64-encoded image. Must have a MIME content-header; e.g. 'data:image/png;base64,{the-image-in-base64}'.'})
|
| accessGroups |
Type : string[]
|
Default value : []
|
Decorators :
@ApiProperty({type: undefined, description: 'Optional additional groups which have read access to the data. Users which are members in one of the groups listed here are allowed to access this data. The special group 'public' makes data available to all users.'})
|
|
Inherited from
OwnableClass
|
|
Defined in
OwnableClass:26
|
| Optional instrumentGroup |
Type : string
|
Decorators :
@ApiProperty({type: String, required: false, description: 'Optional additional groups which have read and write access to the data. Users which are members in one of the groups listed here are allowed to access this data.'})
|
|
Inherited from
OwnableClass
|
|
Defined in
OwnableClass:38
|
| ownerGroup |
Type : string
|
Decorators :
@ApiProperty({type: String, description: 'Defines the group which owns the data, and therefore has unrestricted access to this data. Usually a pgroup like p12151'})
|
|
Inherited from
OwnableClass
|
|
Defined in
OwnableClass:15
|
| createdAt |
Type : Date
|
Decorators :
@ApiProperty({type: Date, description: 'Date and time when this record was created. This property is added and maintained by mongoose.'})
|
|
Inherited from
QueryableClass
|
|
Defined in
QueryableClass:40
|
|
NOTE: createdAt and updatedAt properties are handled automatically by mongoose when timestamps flag is set to true on a schema(https://mongoosejs.com/docs/guide.html#timestamps). We still need to keep the fields available here because of the response model and swagger documentation. They are not required so we don't need to provide them manually on create/update. |
| createdBy |
Type : string
|
Decorators :
@ApiProperty({type: String, description: 'Indicate the user who created this record. This property is added and maintained by the system.'})
|
|
Inherited from
QueryableClass
|
|
Defined in
QueryableClass:15
|
| updatedAt |
Type : Date
|
Decorators :
@ApiProperty({type: Date, description: 'Date and time when this record was updated last. This property is added and maintained by mongoose.'})
|
|
Inherited from
QueryableClass
|
|
Defined in
QueryableClass:50
|
| updatedBy |
Type : string
|
Decorators :
@ApiProperty({type: String, description: 'Indicate the user who updated this record last. This property is added and maintained by the system.'})
|
|
Inherited from
QueryableClass
|
|
Defined in
QueryableClass:26
|
import { Prop, Schema, SchemaFactory } from "@nestjs/mongoose";
import { ApiProperty } from "@nestjs/swagger";
import { Document } from "mongoose";
import { OwnableClass } from "src/common/schemas/ownable.schema";
import { v4 as uuidv4 } from "uuid";
export type AttachmentDocument = Attachment & Document;
@Schema({
collection: "Attachment",
toJSON: {
getters: true,
},
timestamps: true,
})
export class Attachment extends OwnableClass {
@ApiProperty({ type: String, default: () => uuidv4() })
@Prop({
type: String,
default: () => uuidv4(),
sparse: true,
})
id: string;
@Prop({
type: String,
})
_id: string;
@ApiProperty({
type: String,
description:
"A small, base64-encoded image. Must have a MIME content-header; e.g. 'data:image/png;base64,{the-image-in-base64}'.",
})
@Prop({ type: String })
thumbnail: string;
@ApiProperty({
type: String,
description: "Attachment caption to show in frontend.",
})
@Prop({ type: String })
caption: string;
@ApiProperty({ type: String, required: false })
@Prop({ type: String, ref: "Dataset", required: false })
datasetId: string;
@ApiProperty({ type: String, required: false })
@Prop({ type: String, ref: "Proposal", required: false })
proposalId: string;
@ApiProperty({ type: String, required: false })
@Prop({ type: String, ref: "Sample", required: false })
sampleId: string;
}
export const AttachmentSchema = SchemaFactory.createForClass(Attachment);