Google Cloud Healthcare · Schema
Location
A resource that represents a Google Cloud location.
HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud
Properties
| Name | Type | Description |
|---|---|---|
| displayName | string | The friendly name for this location, typically a nearby city name. For example, "Tokyo". |
| labels | object | Cross-service attributes for the location. For example {"cloud.googleapis.com/region": "us-east1"} |
| locationId | string | The canonical id for this location. For example: `"us-east1"`. |
| metadata | object | Service-specific metadata. For example the available capacity at the given location. |
| name | string | Resource name for the location, which may vary between implementations. For example: `"projects/example-project/locations/us-east1"` |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Location",
"description": "A resource that represents a Google Cloud location.",
"properties": {
"displayName": {
"description": "The friendly name for this location, typically a nearby city name. For example, \"Tokyo\".",
"type": "string"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Cross-service attributes for the location. For example {\"cloud.googleapis.com/region\": \"us-east1\"}",
"type": "object"
},
"locationId": {
"description": "The canonical id for this location. For example: `\"us-east1\"`.",
"type": "string"
},
"metadata": {
"additionalProperties": {
"description": "Properties of the object. Contains field @type with type URL."
},
"description": "Service-specific metadata. For example the available capacity at the given location.",
"type": "object"
},
"name": {
"description": "Resource name for the location, which may vary between implementations. For example: `\"projects/example-project/locations/us-east1\"`",
"type": "string"
}
},
"type": "object"
}