lib/openactive/models/schema/work_based_program.rb in openactive-0.1.2 vs lib/openactive/models/schema/work_based_program.rb in openactive-0.2.0
- old
+ new
@@ -6,12 +6,20 @@
# @return [String]
def type
"schema:WorkBasedProgram"
end
- # @return [OpenActive::Models::Schema::MonetaryAmountDistribution]
+ # @return [OpenActive::Models::Schema::MonetaryAmountDistribution,URI]
define_property :training_salary, as: "trainingSalary", types: [
"OpenActive::Models::Schema::MonetaryAmountDistribution",
+ "URI",
+ ]
+
+ # @return [OpenActive::Models::Schema::CategoryCode,String,URI]
+ define_property :occupational_category, as: "occupationalCategory", types: [
+ "OpenActive::Models::Schema::CategoryCode",
+ "string",
+ "URI",
]
end
end
end
end