// src/schemas/common/property-schemas/attack-statuses.tsimport { z } from"zod";
var xMitreDeprecatedSchema = z.boolean({
error: "x_mitre_deprecated must be a boolean."
}).meta({ description: "Indicates whether the object has been deprecated." });
export {
xMitreDeprecatedSchema
};