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

adding some more mathematical shapes #187

Draft
wants to merge 5 commits into
base: v3
Choose a base branch
from
Draft
Changes from 1 commit
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
Prev Previous commit
Create rhombus.schema.tpl.json
Lyuba Zehl authored Aug 9, 2022
commit 4a44a0e3679050ce2669b4c63d518c448be5009c
24 changes: 24 additions & 0 deletions schemas/mathematicalShapes/rhombus.schema.tpl.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"_type": "https://openminds.ebrains.eu/sands/Rhombus",
"_categories": [
"mathematicalShapes"
],
"required": [
"height",
"side"
],
"properties": {
"height": {
"_instruction": "Define the height (distance between the major sides) of this rhombus.",
"_embeddedTypes": [
"https://openminds.ebrains.eu/core/QuantitativeValue"
]
},
"side": {
"_instruction": "Define the length of the sides of this rhombus.",
"_embeddedTypes": [
"https://openminds.ebrains.eu/core/QuantitativeValue"
]
}
}
}