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

Standard update prerelease #263

Merged
merged 2 commits into from
Oct 7, 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
2 changes: 2 additions & 0 deletions standard_schema/prerelease/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
## Changes proposed for 8.4.0

### Added unitClass to Age
2 changes: 1 addition & 1 deletion standard_schema/prerelease/HED8.4.0.mediawiki
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ Each term in this vocabulary has a human-readable description and may include ad
*** Experimenter <nowiki>{hedId=HED_0012472} [Person who is the owner of the experiment and has its responsibility.]</nowiki>
** Agent-trait <nowiki>{hedId=HED_0012473} [A genetically, environmentally, or socially determined characteristic of an agent.]</nowiki>
*** Age <nowiki>{hedId=HED_0012474} [Length of time elapsed time since birth of the agent.]</nowiki>
**** <nowiki># {takesValue, valueClass=numericClass, hedId=HED_0012475}</nowiki>
**** <nowiki># {takesValue, valueClass=numericClass, unitClass=timeUnits, hedId=HED_0012475}</nowiki>
*** Agent-experience-level <nowiki>{hedId=HED_0012476} [Amount of skill or knowledge that the agent has as pertains to the task.]</nowiki>
**** Expert-level <nowiki>{relatedTag=Intermediate-experience-level, relatedTag=Novice-level, hedId=HED_0012477} [Having comprehensive and authoritative knowledge of or skill in a particular area related to the task.]</nowiki>
**** Intermediate-experience-level <nowiki>{relatedTag=Expert-level, relatedTag=Novice-level, hedId=HED_0012478} [Having a moderate amount of knowledge or skill related to the task.]</nowiki>
Expand Down
4 changes: 4 additions & 0 deletions standard_schema/prerelease/HED8.4.0.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4193,6 +4193,10 @@ Each term in this vocabulary has a human-readable description and may include ad
<name>valueClass</name>
<value>numericClass</value>
</attribute>
<attribute>
<name>unitClass</name>
<value>timeUnits</value>
</attribute>
<attribute>
<name>hedId</name>
<value>HED_0012475</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ HED_0012471 Experiment-participant 3 Agent-task-role Someone who takes part in
HED_0012472 Experimenter 3 Agent-task-role Person who is the owner of the experiment and has its responsibility.
HED_0012473 Agent-trait 2 Agent-property A genetically, environmentally, or socially determined characteristic of an agent.
HED_0012474 Age 3 Agent-trait Length of time elapsed time since birth of the agent.
HED_0012475 Age-# 4 Age takesValue, valueClass=numericClass Age and (valueClass some numericClass)
HED_0012475 Age-# 4 Age takesValue, valueClass=numericClass, unitClass=timeUnits Age and (valueClass some numericClass) and (unitClass some timeUnits)
HED_0012476 Agent-experience-level 3 Agent-trait Amount of skill or knowledge that the agent has as pertains to the task.
HED_0012477 Expert-level 4 Agent-experience-level relatedTag=Intermediate-experience-level, relatedTag=Novice-level Having comprehensive and authoritative knowledge of or skill in a particular area related to the task. Agent-experience-level and (relatedTag some Intermediate-experience-level) and (relatedTag some Novice-level)
HED_0012478 Intermediate-experience-level 4 Agent-experience-level relatedTag=Expert-level, relatedTag=Novice-level Having a moderate amount of knowledge or skill related to the task. Agent-experience-level and (relatedTag some Expert-level) and (relatedTag some Novice-level)
Expand Down