ValidationResponse
This page is generated from the exact OpenAPI component schema. It does not add undocumented validation or product behavior.
| Property | Required | Type | Description |
|---|---|---|---|
valid | Yes | boolean | — |
manifestSha256 | Yes | Sha256 | — |
itemCount | Yes | integer | — |
issues | Yes | array | — |
publicationAttestation | Yes | composed | — |
json
{
"type": "object",
"additionalProperties": false,
"required": [
"valid",
"manifestSha256",
"itemCount",
"issues",
"publicationAttestation"
],
"properties": {
"valid": {
"type": "boolean"
},
"manifestSha256": {
"$ref": "#/components/schemas/Sha256"
},
"itemCount": {
"type": "integer",
"minimum": 0
},
"issues": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Issue"
}
},
"publicationAttestation": {
"oneOf": [
{
"$ref": "#/components/schemas/PublicationAttestationRequirement"
},
{
"type": "null"
}
]
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema"
}
