{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RegisterStreamConsumerOutput", "title": "RegisterStreamConsumerOutput", "type": "object", "required": [ "Consumer" ], "properties": { "Consumer": { "allOf": [ { "$ref": "#/components/schemas/Consumer" }, { "description": "An object that represents the details of the consumer you registered. When you register a consumer, it gets an ARN that is generated by Kinesis Data Streams." } ] } } }