{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-structure/codeartifact-domain-summary-structure.json",
"name": "DomainSummary",
"description": " Information about a domain, including its name, Amazon Resource Name (ARN), and status. The ListDomains operation returns a list of DomainSummary objects. ",
"type": "object",
"properties": {
"name": {
"allOf": [
{
"$ref": "#/components/schemas/DomainName"
},
{
"description": " The name of the domain. "
}
]
},
"owner": {
"allOf": [
{
"$ref": "#/components/schemas/AccountId"
},
{
"description": " The 12-digit account number of the Amazon Web Services account that owns the domain. It does not include dashes or spaces. "
}
]
},
"arn": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": " The ARN of the domain. "
}
]
},
"status": {
"allOf": [
{
"$ref": "#/components/schemas/DomainStatus"
},
{
"description": " A string that contains the status of the domain. "
}
]
},
"createdTime": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": " A timestamp that contains the date and time the domain was created. "
}
]
},
"encryptionKey": {
"allOf": [
{
"$ref": "#/components/schemas/Arn"
},
{
"description": " The key used to encrypt the domain. "
}
]
}
}
}