Item Db
From Dontopedia, the open, paraconsistent wiki. (Last updated 2026-06-08.)
Item Db has 23 facts recorded in Dontopedia across 2 references, with 7 live disagreements.
Mostly:inverse has column(3), has column(3), has primary key(2)
Maturity scale
raw canonical shape-checked rule-derived certifiedHas Primary Keyin disputehasPrimaryKey
Inherits Fromin disputeinheritsFrom
- Base[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Sql Alchemy Model[1]all time · A36facb2 8746 4feb 96f9 Bb45a10df50a
Purposein disputepurpose
- Table Schema for Storing Items[1]sourceall time · A36facb2 8746 4feb 96f9 Bb45a10df50a
- database-model[2]all time · 89b30e3f 97a9 4edb B64d Ae1125922714
Rdf:typein disputerdf:type
- Class[2]all time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Sql Alchemy Model[1]all time · A36facb2 8746 4feb 96f9 Bb45a10df50a
Used byin disputeusedBy
- Delete Item[1]sourceall time · A36facb2 8746 4feb 96f9 Bb45a10df50a
- Update Item[1]sourceall time · A36facb2 8746 4feb 96f9 Bb45a10df50a
Inverse Has Columnin disputeinverseHasColumn
- Description Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Id Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Name Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
Has Columnin disputehasColumn
- Description Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Id Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
- Name Column[2]sourceall time · 89b30e3f 97a9 4edb B64d Ae1125922714
Rdfs:labelrdfs:label
Mapped to TablemappedToTable
Has Attribute CounthasAttributeCount
- 3[1]all time · A36facb2 8746 4feb 96f9 Bb45a10df50a
Database TypedatabaseType
Defined BeforedefinedBefore
- Create All[2]all time · 89b30e3f 97a9 4edb B64d Ae1125922714
Inbound mentions (8)
Other subjects in dontopedia point AT this entity as a value. These are inverse relationships — e.g. "X motherOf this subject" — and answer questions the forward facts can't. Grouped by predicate.
belongsToBelongs to(3)
- Description Column
ex:description-column - Id Column
ex:id-column - Name Column
ex:name-column
databaseQueryDatabase Query(2)
- Delete Items Item Id
ex:delete-items-item_id - Put Items Item Id
ex:put-items-item_id
calledAfterCalled After(1)
- Create All
ex:create_all
correspondsToCorresponds to(1)
- Item
ex:Item
queriesQueries(1)
- Read Items
ex:read_items
Other facts (1)
The long tail: predicates that appear too rarely to warrant their own section. Filter or scroll to find a specific one. Each row links to its source.
| Predicate | Value | Ref |
|---|---|---|
| Has Tablename | items | [2] |
Timeline
Timeline axis is valid_time — when each source says the fact was true in the world, not when Dontopedia learned about it. Retracted rows are kept for provenance; coloured stripes indicate the context kind.
References (2)
- custom
ctx:claims/beam/a36facb2-8746-4feb-96f9-bb45a10df50a- full textbeam-chunktext/plain1 KB
doc:beam/a36facb2-8746-4feb-96f9-bb45a10df50aShow excerpt
@app.put("/items/{item_id}", response_model=Item) def update_item(item_id: int, item: Item, db=Depends(get_db)): db_item = db.query(ItemDB).filter(ItemDB.id == item_id).first() if db_item is None: raise HTTPException(status_…
- custom
ctx:claims/beam/89b30e3f-97a9-4edb-b64d-ae1125922714- full textbeam-chunktext/plain1 KB
doc:beam/89b30e3f-97a9-4edb-b64d-ae1125922714Show excerpt
# Define the Item model for the database class ItemDB(Base): __tablename__ = "items" id = Column(Integer, primary_key=True, index=True) name = Column(String, index=True) description = Column(String, index=True) Base.metadat…
See also
Keep researching
Missing something or suspicious of what's here? Kick off a research session — a Claude agent will investigate, cite its sources, and file new facts into a dedicated context you can review before accepting into the shared view.