mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
15 lines
369 B
CoffeeScript
15 lines
369 B
CoffeeScript
|
c = require './../schemas'
|
||
|
|
||
|
AnalyticsStripeInvoiceSchema = c.object {
|
||
|
title: 'Analytics Stripe Invoice'
|
||
|
}
|
||
|
|
||
|
_.extend AnalyticsStripeInvoiceSchema.properties,
|
||
|
_id: {type: 'string'}
|
||
|
date: {type: 'integer'}
|
||
|
properties: {type: 'object'}
|
||
|
|
||
|
c.extendBasicProperties AnalyticsStripeInvoiceSchema, 'analytics.stripe.invoice'
|
||
|
|
||
|
module.exports = AnalyticsStripeInvoiceSchema
|