mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-12 05:18:34 +03:00
9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
import Joi from 'joi'
|
|
|
|
const shapeSchema = Joi.object().keys({
|
|
name: Joi.string().required(),
|
|
items: Joi.array().required()
|
|
})
|
|
|
|
export default shapeSchema
|