Files
marka/registry/schema-org/Muscle.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

36 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Muscle",
"title": "Muscle",
"description": "A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement.",
"type": "object",
"allOf": [
{
"description": "Any part of the human body, typically a component of an anatomical system. Organs, tissues, and cells are all anatomical structures.",
"$ref": "schema:AnatomicalStructure"
}
],
"properties": {
"antagonist": {
"description": "The muscle whose action counteracts the specified muscle.",
"$ref": "schema:Muscle"
},
"bloodSupply": {
"description": "The blood vessel that carries blood from the heart to the muscle.",
"$ref": "schema:Vessel"
},
"insertion": {
"description": "The place of attachment of a muscle, or what the muscle moves.",
"$ref": "schema:AnatomicalStructure"
},
"muscleAction": {
"description": "The movement the muscle generates.",
"type": "string"
},
"nerve": {
"description": "The underlying innervation associated with the muscle.",
"$ref": "schema:Nerve"
}
}
}