Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create an IndividualElement class #937

Merged
merged 3 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions model/Core/Classes/IndividualElement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
SPDX-License-Identifier: Community-Spec-1.0

# IndividualElement

## Summary

A concrete subclass of Element used by Individuals in the
Core profile.

## Description

Individuals, such as NoneElement and NoAssertionElement, need to reference a
concrete subclass of Element.

This class provides the type used by the individuals defined in the Core profile.

## Metadata

- name: IndividualElement
- SubclassOf: Element
- Instantiability: Concrete
2 changes: 1 addition & 1 deletion model/Core/Individuals/NoAssertionElement.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ no assertion is being made about any potential descendants of Element1.
## Metadata

- name: NoAssertionElement
- type: Element
- type: IndividualElement

## Property Values

Expand Down
2 changes: 1 addition & 1 deletion model/Core/Individuals/NoneElement.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Element1 has no descendants.
## Metadata

- name: NoneElement
- type: Element
- type: IndividualElement

## Property Values

Expand Down
Loading