mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
34 lines
718 B
JavaScript
34 lines
718 B
JavaScript
export default {
|
|
name: "Extension",
|
|
collection: "extensions",
|
|
schema: {
|
|
title: {
|
|
type: String,
|
|
default: "Untitled"
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: "Description"
|
|
},
|
|
image: {
|
|
type: String,
|
|
default: "https://placehold.co/400x400"
|
|
},
|
|
distURL: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
createdAt: {
|
|
type: Date,
|
|
required: true,
|
|
},
|
|
version: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
experimental: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
}
|
|
} |