Sha256: 04407b0e3ec1d54391076164026792e8f9cde17aa3d38b6e2726db57c3879d6c
Contents?: true
Size: 1.45 KB
Versions: 12
Compression:
Stored size: 1.45 KB
Contents
{ "type": "object", "required": [ "id", "title", "content", "user", "board", "created_at", "updated_at" ], "properties": { "id": { "type": "integer" }, "title": { "type": "string" }, "content": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "user": { "type": "object", "requires": [ "id", "name", "email", "created_at", "updated_at" ], "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "email": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" } } }, "board": { "type": "object", "required": [ "id", "is_admin", "name", "encrypted_password", "created_at", "updated_at" ], "properties": { "id": { "type": "integer" }, "is_admin": { "type": "boolean" }, "name": { "type": "string" }, "encrypted_password": { "type": "string|nil" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" } } } } }
Version data entries
12 entries across 12 versions & 1 rubygems