{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schema.efast.digital/efast-messages/simple-reply/1.0.0/efast-simple-reply.schema.json",
  "title": "Message",
  "type": "object",
  "properties": {
    "subject": {
      "type": "string",
      "minLength": 1,
      "maxLength": 255
    },
    "body": {
      "type": "string",
      "minLength": 1,
      "maxLength": 10000
    }
  },
  "required": ["subject", "body"]
}