{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ActivityPub Accept/Reject", "type": "object", "required": ["@context", "type", "id", "actor", "object"], "properties": { "@context": { "type": "string" }, "type": { "type": "string", "enum": ["Accept", "Reject"] }, "id": { "type": "string" }, "actor": { "type": "string" }, "object": { "type": "object" } }, "additionalProperties": true }