Skip to content

Commit

Permalink
Merge pull request #249 from asam-ev/72-Add-human-class-meta-data
Browse files Browse the repository at this point in the history
72 add human class meta data
  • Loading branch information
ClemensLinnhoff authored Dec 18, 2024
2 parents 55a62e1 + b082d80 commit de7f3b4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion schemas/asset_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
},
"vehicleClassData": {
"type": "object",
"description": "Vehicle specific data. This SHALL be filled if 'objectClass' is 'vehicle' based on the https://releases.asam.net/OpenSCENARIO/1.0.0/Model-Documentation/content/Axle.html[OpenSCENARIO vehicle definition].",
"description": "Vehicle specific data. This SHALL be filled if 'objectClass' is 'vehicle' based on the https://releases.asam.net/OpenSCENARIO/1.0.0/Model-Documentation/content/Vehicle.html[OpenSCENARIO vehicle definition].",
"properties": {
"vehicleCategory": {
"type": "string",
Expand Down Expand Up @@ -170,6 +170,17 @@
},
"required": ["vehicleCategory", "performance", "axles"]
},
"humanClassData": {
"type" : "object",
"description": "Human specific data. This SHALL be filled if 'objectClass' is 'human' based on the https://releases.asam.net/OpenSCENARIO/1.0.0/Model-Documentation/content/Pedestrian.html[OpenSCENARIO pedestrian definition].",
"properties": {
"mass": {
"type": "number",
"description": "The mass of a human. Unit: kg."
}
},
"required": ["mass"]
},
"animated": {
"type": "boolean",
"description": "Indicates whether the 3D model contains keyframe animations."
Expand Down

0 comments on commit de7f3b4

Please sign in to comment.