{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OpportunityCreate", "title": "OpportunityCreate", "type": "object", "description": "Properties for creating a new opportunity.", "required": [ "name" ], "allOf": [ { "$ref": "#/components/schemas/OpportunityUpdate" }, { "type": "object", "properties": { "name": { "type": "string", "maxLength": 300, "description": "Subject or descriptive name (topic) for the opportunity." } } } ] }