Information about a resource for a project.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codestar/refs/heads/main/json-schema/codestar-resource-schema.json", "title": "Resource", "description": "Information about a resource for a project.", "type": "object", "properties": { "id": { "allOf": [ { "$ref": "#/components/schemas/ResourceId" }, { "description": "The Amazon Resource Name (ARN) of the resource." } ] } }, "required": [ "id" ] }