From c1f86062522a98554ddf3e5bcab2d4ec2c36db2d Mon Sep 17 00:00:00 2001 From: Britta Stallknecht Date: Mon, 8 Dec 2025 13:51:55 +0000 Subject: [PATCH 1/4] feat: add MaritalStatus as new IdentityAttribute --- _docs_integrate/attribute-values.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/_docs_integrate/attribute-values.md b/_docs_integrate/attribute-values.md index 9f9c7fda6..0f26f0993 100644 --- a/_docs_integrate/attribute-values.md +++ b/_docs_integrate/attribute-values.md @@ -250,6 +250,17 @@ A short phrase that describes the position an employee has within an organizatio | `@type` | `"JobTitle"` | ✓ | | | `value` | `string` | ✓ | max. length: 100 | +## MaritalStatus + +The marital status of a natural person. + +**Properties** + +| Name | Type | Required | Validation | +| ------- | ----------------- | :------: | -------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `@type` | `"MaritalStatus"` | ✓ | | +| `value` | `string` | ✓ | one of: `"single"`, `"married"`, `"separated"`, `"divorced"`, `"widowed"`, `"civilPartnership"`, `"civilPartnershipDissolved"`, `"civilPartnerDeceased"` | + ## MiddleName In various cultures, a middle name is a portion of a personal name that is written between the person's first given name and their surname. From ad881afae7d5036412fd836c7c25dc905cd9686a Mon Sep 17 00:00:00 2001 From: Britta Stallknecht Date: Mon, 8 Dec 2025 14:16:37 +0000 Subject: [PATCH 2/4] feat: improve description of MaritalStatus --- _docs_integrate/attribute-values.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/_docs_integrate/attribute-values.md b/_docs_integrate/attribute-values.md index 0f26f0993..723920471 100644 --- a/_docs_integrate/attribute-values.md +++ b/_docs_integrate/attribute-values.md @@ -252,7 +252,10 @@ A short phrase that describes the position an employee has within an organizatio ## MaritalStatus -The marital status of a natural person. +The marital status represents the current legal relationship of a natural person. + +Please be advised that the possible values are defined by the public laws and administrative standards that may vary between countries. +{: .notice--info} **Properties** From e8edcf6f17efaa8696998f834a4d7bacb9b61498 Mon Sep 17 00:00:00 2001 From: Britta Stallknecht Date: Tue, 9 Dec 2025 14:42:26 +0000 Subject: [PATCH 3/4] feat: add link to list of possible marital statuses --- _docs_integrate/attribute-values.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_docs_integrate/attribute-values.md b/_docs_integrate/attribute-values.md index 723920471..dac0b9161 100644 --- a/_docs_integrate/attribute-values.md +++ b/_docs_integrate/attribute-values.md @@ -255,6 +255,7 @@ A short phrase that describes the position an employee has within an organizatio The marital status represents the current legal relationship of a natural person. Please be advised that the possible values are defined by the public laws and administrative standards that may vary between countries. +For example, the [list of possible marital statuses in Germany](https://www.destatis.de/DE/Themen/Gesellschaft-Umwelt/Bevoelkerung/Haushalte-Familien/Glossar/familienstand.html) can be found on the website of the German Federal Statistical Office. {: .notice--info} **Properties** From c93df30486314211f1804da9d40bddca60524cbb Mon Sep 17 00:00:00 2001 From: Britta Stallknecht Date: Tue, 9 Dec 2025 15:10:52 +0000 Subject: [PATCH 4/4] refactor: move source to different place --- _docs_integrate/attribute-values.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/_docs_integrate/attribute-values.md b/_docs_integrate/attribute-values.md index dac0b9161..81178bdf0 100644 --- a/_docs_integrate/attribute-values.md +++ b/_docs_integrate/attribute-values.md @@ -255,15 +255,14 @@ A short phrase that describes the position an employee has within an organizatio The marital status represents the current legal relationship of a natural person. Please be advised that the possible values are defined by the public laws and administrative standards that may vary between countries. -For example, the [list of possible marital statuses in Germany](https://www.destatis.de/DE/Themen/Gesellschaft-Umwelt/Bevoelkerung/Haushalte-Familien/Glossar/familienstand.html) can be found on the website of the German Federal Statistical Office. {: .notice--info} **Properties** -| Name | Type | Required | Validation | -| ------- | ----------------- | :------: | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `@type` | `"MaritalStatus"` | ✓ | | -| `value` | `string` | ✓ | one of: `"single"`, `"married"`, `"separated"`, `"divorced"`, `"widowed"`, `"civilPartnership"`, `"civilPartnershipDissolved"`, `"civilPartnerDeceased"` | +| Name | Type | Required | Validation | +| ------- | ----------------- | :------: | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `@type` | `"MaritalStatus"` | ✓ | | +| `value` | `string` | ✓ | one of: `"single"`, `"married"`, `"separated"`, `"divorced"`, `"widowed"`, `"civilPartnership"`, `"civilPartnershipDissolved"`, `"civilPartnerDeceased"` (these values are based on the [list of possible marital statuses in Germany](https://www.destatis.de/DE/Themen/Gesellschaft-Umwelt/Bevoelkerung/Haushalte-Familien/Glossar/familienstand.html) that can be found on the website of the German Federal Statistical Office) | ## MiddleName