From ReplyTo.schema.yaml (ratatoskr/ReplyTo.schema
)
---
$id: https://skeleton.botmd.io/ratatoskr/ReplyTo.schema
$schema: http://json-schema.org/draft-07/schema#
title: ReplyTo
description: >-
This is the schema for the ReplyTo metadata representing replyee message information
type: object
additionalProperties: false
properties:
delivery_uid:
title: Replyee Delivery UID
description: The UID of the replyee delivery object. Used when replyee edits/deletes their message.
type:
- "null"
- string
replied_on:
title: Replied on datetime
description: Replied On datetime to track when we "copied" the replyee message (may be used to check if original message was edited post-reply)
type: string
format: date-time
author:
title: Replyee name
description: Name of replyee to render on Frontend
type: string
minLength: 1
replyee_message:
$ref: "/ratatoskr/Message.schema"
#end replyee_message