{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/MetaResourceVersionInfo", "title": "MetaResourceVersionInfo", "required": [ "resourceVersionList" ], "type": "object", "properties": { "orgId": { "type": "string", "description": "Organization ID used for this operation.", "format": "uuid", "example": "97cdbf45-ebe2-4687-8341-44d5c7abf101" }, "resourceVersionList": { "type": "array", "description": "List of all resources, and it's supported versions available to subscribe.", "items": { "$ref": "#/components/schemas/ResourceVersion" } } } }