mirror of
https://github.com/bellingcat/ukraine-timemap.git
synced 2026-06-17 07:48:33 +03:00
9 lines
163 B
JavaScript
9 lines
163 B
JavaScript
import Joi from "joi";
|
|
|
|
const shapeSchema = Joi.object().keys({
|
|
name: Joi.string().required(),
|
|
items: Joi.array().required(),
|
|
});
|
|
|
|
export default shapeSchema;
|