mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
46 lines
967 B
JavaScript
46 lines
967 B
JavaScript
export default {
|
|
name: "Extension",
|
|
collection: "extensions",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
assetsUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
srcUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
registryId: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
packageUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
version: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
name: {
|
|
type: String,
|
|
default: "untitled"
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: "Description"
|
|
},
|
|
image: {
|
|
type: String,
|
|
default: "https://placehold.co/400x400"
|
|
},
|
|
created_at: {
|
|
type: Date,
|
|
required: true,
|
|
},
|
|
}
|
|
} |