{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EmbeddedContent", "title": "EmbeddedContent", "type": "object", "additionalProperties": true, "properties": { "entityId": { "type": "integer", "format": "int64", "example": "500123" }, "entityType": { "type": "string", "example": "example_value" }, "entity": { "$ref": "#/components/schemas/Embeddable" } } }