Properties
| Name | Type | Description |
|---|---|---|
| created_at | object | |
| kind | object | |
| name | string | Name of the schema |
| schema_id | object | |
| source | string | Source of the schema |
| validation_enabled | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api-shield_public_schema",
"title": "api-shield_public_schema",
"properties": {
"created_at": {
"$ref": "#/components/schemas/api-shield_schemas-timestamp"
},
"kind": {
"$ref": "#/components/schemas/api-shield_kind"
},
"name": {
"description": "Name of the schema",
"example": "petstore schema",
"type": "string"
},
"schema_id": {
"$ref": "#/components/schemas/api-shield_schemas-uuid"
},
"source": {
"description": "Source of the schema",
"example": "<schema file bytes>",
"type": "string"
},
"validation_enabled": {
"$ref": "#/components/schemas/api-shield_validation_enabled"
}
},
"required": [
"schema_id",
"name",
"kind",
"created_at"
],
"type": "object"
}