{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SessionCost",
"title": "SessionCost",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "This is the type of cost, always 'session' for this class.",
"enum": [
"session"
]
},
"cost": {
"type": "number",
"description": "This is the cost of the component in USD."
}
},
"required": [
"type",
"cost"
]
}