Properties
| Name | Type | Description |
|---|---|---|
| content | string | The content of the defense document. |
| contentType | string | The content type of the defense document. |
| defenseDocumentTypeCode | string | The document type code of the defense document. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DefenseDocument",
"title": "DefenseDocument",
"properties": {
"content": {
"description": "The content of the defense document.",
"format": "byte",
"type": "string"
},
"contentType": {
"description": "The content type of the defense document.",
"type": "string"
},
"defenseDocumentTypeCode": {
"description": "The document type code of the defense document.",
"type": "string"
}
},
"required": [
"defenseDocumentTypeCode",
"contentType",
"content"
],
"type": "object"
}