Export
Exports a schema.
URI
/v1/registries/name/
registryName
/schemas/name/schemaName
/export
HTTP methods
GET
Operation ID: ExportSchema
Exports a schema.
Name | Type | Required | Description |
---|---|---|---|
registryName | String | True | The name of the schema registry. |
schemaName | String | True | The name of the schema. |
Name | Type | Required | Description |
---|---|---|---|
type | String | True | The type of schema to export. |
schemaVersion | String | False | Specifying this limits the results to only this schema version. |
Status code | Response model | Description |
---|---|---|
200 | ExportSchemaOutput | 200 response |
400 | ErrorOutput | 400 response |
401 | ErrorOutput | 401 response |
403 | ErrorOutput | 403 response |
404 | ErrorOutput | 404 response |
429 | ErrorOutput | 429 response |
500 | ErrorOutput | 500 response |
503 | ErrorOutput | 503 response |
OPTIONS
Name | Type | Required | Description |
---|---|---|---|
registryName | String | True | The name of the schema registry. |
schemaName | String | True | The name of the schema. |
Status code | Response model | Description |
---|---|---|
200 | None | 200 response |
Schemas
Response bodies
{ "Type": "string", "SchemaVersion": "string", "Content": "string", "SchemaName": "string", "SchemaArn": "string" }
Properties
ErrorOutput
Property | Type | Required | Description |
---|---|---|---|
Code | string | True | The error code. |
Message | string | True | The message string of the error output. |
ExportSchemaOutput
The schema to export.
Property | Type | Required | Description |
---|---|---|---|
Content | string | False | The content of the schema. |
SchemaArn | string | False | The ARN of the schema to export. |
SchemaName | string | False | The name of the schema to export. |
SchemaVersion | string | False | The version of the schema to export. |
Type | string | False | The type of schema to export. |