UNPKG

@mitre-attack/attack-data-model

Version:

A TypeScript API for the MITRE ATT&CK data model

42 lines (41 loc) 6.63 kB
export { AttackBaseSDO, AttackBaseSMO, AttackBaseSRO, attackBaseDomainObjectSchema, attackBaseMetaObjectSchema, attackBaseRelationshipObjectSchema } from './common/attack-core.js'; export { emptyStixListErrorMessage, nonEmptyRequiredString, stixListOfString } from './common/property-schemas/generics.js'; export { XMitreContributors, XMitreModifiedByRef, xMitreContributorsSchema, xMitreIdentity, xMitreIdentitySchema, xMitreModifiedByRefSchema } from './common/property-schemas/attack-attribution.js'; export { AttackDomain, XMitreDomains, attackDomainSchema, xMitreDomainsSchema } from './common/property-schemas/attack-domains.js'; export { AttackIdType, StixTypesWithAttackIds, XMitreOldAttackId, attackIdExamples, attackIdMessages, attackIdPatterns, createAttackIdSchema, createOldMitreAttackIdSchema, getAttackIdExample, stixTypeToAttackIdMapping, xMitreOldAttackIdSchema } from './common/property-schemas/attack-id.js'; export { XMitrePlatform, XMitrePlatforms, xMitrePlatformSchema, xMitrePlatformsSchema } from './common/property-schemas/attack-platforms.js'; export { XMitreDeprecated, xMitreDeprecatedSchema } from './common/property-schemas/attack-statuses.js'; export { XMitreAttackSpecVersion, XMitreVersion, xMitreAttackSpecVersionSchema, xMitreVersionSchema } from './common/property-schemas/attack-versioning.js'; export { ObjectMarkingRefs, StixCreatedByRef, objectMarkingRefsSchema, stixCreatedByRefSchema } from './common/property-schemas/stix-attribution.js'; export { Aliases, Description, Name, aliasesSchema, descriptionSchema, nameSchema } from './common/property-schemas/stix-common-properties.js'; export { Extension, ExtensionDefinition, Extensions, extensionDefinitionSchema, extensionObjectTypeSchema, extensionSchema, extensionTypeSchema, extensionsSchema } from './common/property-schemas/stix-extensions.js'; export { ExternalReference, ExternalReferences, createAttackExternalReferencesSchema, externalReferenceSchema, externalReferencesSchema } from './common/property-schemas/stix-external-references.js'; export { GranularMarking, granularMarkingSchema } from './common/property-schemas/stix-granular-marking.js'; export { StixIdentifier, TypeSpecificStixIdentifier, createStixIdValidator, stixIdentifierSchema } from './common/property-schemas/stix-id.js'; export { KillChainName, KillChainPhase, killChainNameSchema, killChainPhaseSchema } from './common/property-schemas/stix-kill-chains.js'; export { AttackMotivationOV, AttackResourceLevelOV, IdentityClassOV, ImplementationLanguageOV, IndicatorTypeOV, IndustrySectorOV, MalwareCapabilityOV, MalwareTypeOV, MitreCollectionLayerOV, PatternTypeOV, ProcessorArchitectureOV, ToolTypeOV } from './common/property-schemas/stix-open-vocabulary.js'; export { StixCreatedTimestamp, StixModifiedTimestamp, StixTimestamp, stixCreatedTimestampSchema, stixModifiedTimestampSchema, stixTimestampSchema } from './common/property-schemas/stix-timestamp.js'; export { StixType, createMultiStixTypeValidator, createStixTypeValidator, stixTypeSchema, stixTypeToTypeName } from './common/property-schemas/stix-type.js'; export { StixSpecVersion, stixSpecVersionSchema } from './common/property-schemas/stix-versioning.js'; export { SDO, SRO, stixDomainObjectSchema, stixRelationshipObjectSchema } from './common/stix-core.js'; export { Analytic, analyticSchema } from './sdo/analytic.schema.js'; export { Asset, RelatedAsset, RelatedAssets, XMitreSectors, assetSchema, relatedAssetSchema, relatedAssetsSchema, xMitreSectorsSchema } from './sdo/asset.schema.js'; export { Campaign, CampaignPartial, XMitreFirstSeenCitation, XMitreLastSeenCitation, campaignBaseSchema, campaignPartialSchema, campaignSchema, xMitreFirstSeenCitationSchema, xMitreLastSeenCitationSchema } from './sdo/campaign.schema.js'; export { Collection, ObjectVersionReference, collectionSchema, objectVersionReferenceSchema } from './sdo/collection.schema.js'; export { DataComponent, XMitreDataSourceRef, XMitreLogSources, dataComponentSchema, xMitreDataSourceRefSchema, xMitreLogSourcesSchema } from './sdo/data-component.schema.js'; export { DetectionStrategy, detectionStrategySchema } from './sdo/detection-strategy.schema.js'; export { Group, GroupPartial, groupBaseSchema, groupPartialSchema, groupSchema } from './sdo/group.schema.js'; export { Identity, identitySchema } from './sdo/identity.schema.js'; export { DataSource, XMitreCollectionLayers, dataSourceSchema, xMitreCollectionLayersSchema } from './sdo/data-source.schema.js'; export { Malware, MalwarePartial, malwareBaseSchema, malwarePartialSchema, malwareSchema, stixArtifactType, stixFileType } from './sdo/malware.schema.js'; export { Matrix, XMitreTacticRefs, matrixSchema, xMitreTacticRefsSchema } from './sdo/matrix.schema.js'; export { Mitigation, mitigationSchema } from './sdo/mitigation.schema.js'; export { Software, softwareSchema } from './sdo/software.schema.js'; export { Tactic, XMitreShortName, tacticSchema, xMitreShortNameSchema } from './sdo/tactic.schema.js'; export { Technique, XMitreDataSource, XMitreDataSources, XMitreDefenseBypasses, XMitreDetection, XMitreEffectivePermissions, XMitreImpactType, XMitreIsSubtechnique, XMitreNetworkRequirements, XMitrePermissionsRequired, XMitreRemoteSupport, XMitreSystemRequirements, XMitreTacticType, techniqueBaseSchema, techniquePartialSchema, techniqueSchema, xMitreDataSourceSchema, xMitreDataSourcesSchema, xMitreDefenseBypassesSchema, xMitreDetectionSchema, xMitreEffectivePermissionsSchema, xMitreImpactTypeSchema, xMitreIsSubtechniqueSchema, xMitreNetworkRequirementsSchema, xMitrePermissionsRequiredSchema, xMitreRemoteSupportSchema, xMitreSystemRequirementsSchema, xMitreTacticTypeSchema } from './sdo/technique.schema.js'; export { Tool, ToolPartial, toolBaseSchema, toolPartialSchema, toolSchema } from './sdo/tool.schema.js'; export { AttackObject, AttackObjects, StixBundle, attackObjectsSchema, stixBundleSchema } from './sdo/stix-bundle.schema.js'; export { MarkingDefinition, TlpMarkingDefinition, TlpMarkingObject, baseMarkingDefinitionSchema, markingDefinitionSchema, statementMarkingObjectSchema, tlpAmberSchema, tlpGreenSchema, tlpMarkingDefinitionSchema, tlpMarkingObjectSchema, tlpRedSchema, tlpWhiteSchema } from './smo/marking-definition.schema.js'; export { Relationship, RelationshipCombination, RelationshipPartial, RelationshipType, createRelationshipValidationRefinement, invalidRelationships, isValidRelationship, relationshipBaseSchema, relationshipChecks, relationshipPartialSchema, relationshipSchema, relationshipTypeSchema, validRelationshipObjectTypes } from './sro/relationship.schema.js'; import 'zod/v4'; import 'zod';