Properties
| Name | Type | Description |
|---|---|---|
| token | string | The unique identifier for the Resource. |
| name | string | The name of the Resource. |
| provider | string | The cloud provider. |
| service | string | The cloud service. |
| account_id | string | The cloud account identifier. |
| region | string | The region of the resource. |
| cost | string | The cost associated with the resource. |
| metadata | object | Additional metadata about the resource. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Resource",
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "The unique identifier for the Resource."
},
"name": {
"type": "string",
"description": "The name of the Resource."
},
"provider": {
"type": "string",
"description": "The cloud provider."
},
"service": {
"type": "string",
"description": "The cloud service."
},
"account_id": {
"type": "string",
"description": "The cloud account identifier."
},
"region": {
"type": "string",
"description": "The region of the resource."
},
"cost": {
"type": "string",
"description": "The cost associated with the resource."
},
"metadata": {
"type": "object",
"description": "Additional metadata about the resource."
}
}
}