{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-resource-schema.json", "title": "Resource", "description": "Contains an IoT SiteWise Monitor resource ID for a portal or project.", "type": "object", "properties": { "portal": { "allOf": [ { "$ref": "#/components/schemas/PortalResource" }, { "description": "A portal resource." } ] }, "project": { "allOf": [ { "$ref": "#/components/schemas/ProjectResource" }, { "description": "A project resource." } ] } } }