46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
$schema: "http://json-schema.org/draft-06/schema#"
|
|
|
|
title: datastream v1 Error export schema
|
|
description: A gcloud export/import command YAML validation schema.
|
|
type: object
|
|
additionalProperties: false
|
|
properties:
|
|
COMMENT:
|
|
type: object
|
|
description: User specified info ignored by gcloud import.
|
|
additionalProperties: false
|
|
properties:
|
|
template-id:
|
|
type: string
|
|
region:
|
|
type: string
|
|
description:
|
|
type: string
|
|
date:
|
|
type: string
|
|
version:
|
|
type: string
|
|
UNKNOWN:
|
|
type: array
|
|
description: Unknown API fields that cannot be imported.
|
|
items:
|
|
type: string
|
|
details:
|
|
description: Additional information about the error.
|
|
$ref: DetailsValue.yaml
|
|
errorTime:
|
|
description: The time when the error occurred.
|
|
type: string
|
|
errorUuid:
|
|
description: |-
|
|
A unique identifier for this specific error, allowing it to be traced
|
|
throughout the system in logs and API responses.
|
|
type: string
|
|
message:
|
|
description: |-
|
|
A message containing more information about the error that occurred.
|
|
type: string
|
|
reason:
|
|
description: A title that explains the reason for the error.
|
|
type: string
|