{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Cooldowns", "description": "Per-board cooldown intervals (in seconds) between successive posts of each type.", "$id": "https://raw.githubusercontent.com/api-evangelist/4chan/refs/heads/main/json-schema/4chan-api-cooldowns-schema.json", "properties": { "threads": { "type": "integer", "description": "Minimum seconds between consecutive thread creations from the same poster.", "example": 600 }, "replies": { "type": "integer", "description": "Minimum seconds between consecutive replies from the same poster.", "example": 60 }, "images": { "type": "integer", "description": "Minimum seconds between consecutive image posts from the same poster.", "example": 60 } }, "type": "object" }