@mitre-attack/attack-data-model
Version:
A TypeScript API for the MITRE ATT&CK data model
22 lines (19 loc) • 950 B
JavaScript
import {
stixListOfString
} from "./chunk-KFUJRXYX.js";
// src/schemas/common/property-schemas/attack-attribution.ts
import { z } from "zod/v4";
var xMitreIdentity = "identity--c78cb6e5-0c4b-4611-8297-d1b8b55e40b5";
var xMitreIdentitySchema = z.literal(xMitreIdentity).meta({ description: "STIX Identity for The MITRE Corporation" });
var xMitreModifiedByRefSchema = xMitreIdentitySchema.meta({
description: "The STIX ID of the MITRE identity object. Used to track the identity of the MITRE organization, which created the current version of the object. Previous versions of the object may have been created by other individuals or organizations."
});
var xMitreContributorsSchema = stixListOfString.meta({
description: "People and organizations who have contributed to the object. Not found on objects of type `relationship`."
});
export {
xMitreIdentity,
xMitreIdentitySchema,
xMitreModifiedByRefSchema,
xMitreContributorsSchema
};