surveys
Data license: All Rights Reserved · Data source: krisyotam.com · About: Kris Yotam
3 rows
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
| id ▼ | slug | title | description | state | created_at | updated_at |
|---|---|---|---|---|---|---|
| 1 | anonymous-feedback | Anonymous Feedback | Leave feedback on my writing, site, ideas, or anything else. Your feedback is anonymous unless you choose to include contact information. | active | 2026-01-22 03:18:11 | 2026-01-22 07:51:02 |
| 2 | contact | Contact Form | Get in touch with me directly. | active | 2026-01-22 03:18:11 | 2026-01-22 07:51:02 |
| 3 | home-comment | Home Page Comment | Submit a comment to be featured on the home page. You must provide a name, occupation, and profile picture URL. | active | 2026-01-22 03:18:11 | 2026-01-22 07:51:02 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE surveys (
id INTEGER PRIMARY KEY AUTOINCREMENT,
slug TEXT UNIQUE NOT NULL,
title TEXT NOT NULL,
description TEXT,
state TEXT DEFAULT 'active',
created_at TEXT NOT NULL DEFAULT (datetime('now')),
updated_at TEXT NOT NULL DEFAULT (datetime('now'))
);