In lexical semantics and computational linguistics, a subcategorisation lexicon enumerates the possible argument structures that a verb can combine with. For German, subcategorisation is crucial because verbargument patterns interact with word order, case marking, and modal particles. This page summarises the main types of subcategorisation frames for German verbs, illustrates typical examples, and outlines how such a lexicon can be built and used.
Below are the most frequent subcategorisation frames found in German verb lexicons. The notation follows the tradition of Lezi (valency) where each argument is represented by its case or clause type.
| Frame | Description | Typical Example |
|---|---|---|
| V | Intransitive verb, no verbal complement. | Er schlft. |
| V+NP[ACC] | Transitive verb taking a direct object. | Sie liest das Buch. |
| V+NP[DAT] | Verb that selects a dative argument (often a recipient or experiencer). | Er hilft dem Kind. |
| V+NP[ACC]+NP[DAT] | Ditranstive pattern accusative object (Theme) and dative object (Recipient). | Wir geben dem Mann das Buch. |
| V+PP[prep] | Verb selecting a prepositional phrase; the preposition is lexicalized. | Sie wartet auf den Zug. |
| V+S[INF] | Verb taking an infinitival complement (e.g., modal, perception). | Er versucht zu schlafen. |
| V+S[FIN] | Verb that selects a finite subordinate clause. | Ich glaube, dass er kommt. |
| V+NP[ACC]+S[INF] | Verb that takes both an object and an infinitival complement. | Sie lsst den Hund laufen. |
Pure intransitives do not assign a case to any NP. Many are motion or state verbs: schlafen, sterben, kommen. Some allow optional adverbials, but these are not part of the core valency.
These verbs require an accusative object. The object can be a concrete noun phrase or a pronoun. The verb may also allow additional complements (e.g., schreiben + zu-PP). Example:
Verbs such as helfen, danken, glauben select a dative argument without an accusative counterpart. Note that some can also take an accusative object when a preposition is added (helfen bei).
Classic ditransitive patterns include geben, schenken, zeigen. Word order is flexible: the dative may precede the accusative, especially in written German.
Some verbs embed a specific preposition, and the case of the PP is fixed by the preposition. Examples: abhngen von, teilnehmen an, warten auf. The preposition is part of the lexical entry, not a free argument.
Modal verbs (knnen, mssen), perception verbs (sehen, hren), and causative verbs (lassen, bringen) take a bare infinitive. The infinitive often inherits the case of a missing object (e.g., Ich sehe den Mann laufen).
Complementizers are typically dass, ob, or a question word. Verbs that select such clauses include glauben, behaupten, fragen.
Lexicons are often stored in XML (e.g., TEI), JSONLD, or CSV. A simple JSON example for the verb geben:
{ "lemma": "geben", "sense": "to give", "frames": [ {"pattern": ["NP[DAT]", "NP[ACC]"], "frequency": 842}, {"pattern": ["NP[ACC]"], "frequency": 57} ]}Many verbs combine with separable particles (aufstehen, zurckkommen) that can appear in different clause positions, affecting surface order without changing the underlying valency.
Verbs like sich erinnern use a reflexive pronoun that occupies the accusative slot. The lexicon must treat the reflexive element as part of the frame.
When a verb is nominalised (e.g., die Entscheidung), its argument structure is often expressed via genitive or prepositional complements, requiring crosscategory mapping.
Consider the verb fahren (to drive / to travel). It has two major senses with distinct frames:
Encoding separate sense IDs prevents the two frames from being conflated.
Research continues on richer representations such as construction grammar where the interaction between verb, particles, and word order is modelled jointly. Neural models that integrate valency embeddings show promise for improving lowresource German parsing.
By maintaining a detailed, sensedisambiguated subcategorisation lexicon, researchers and developers can more accurately capture the syntactic and semantic behaviour of German verbs, leading to better linguistic tools and applications.
