UNPKG

@mdf.js/openc2-core

Version:

MMS - API Core - OpenC2

75 lines 2.06 kB
/** * Copyright 2024 Mytra Control S.L. All rights reserved. * * Use of this source code is governed by an MIT-style license that can be found in the LICENSE file * or at https://opensource.org/licenses/MIT. */ export declare const commandContent: { $schema: string; $id: string; title: string; type: string; properties: { action: { title: string; description: string; type: string; enum: string[]; }; target: { $ref: string; }; args: { title: string; type: string; properties: { start_time: { title: string; type: string; minimum: number; }; stop_time: { title: string; type: string; minimum: number; }; duration: { title: string; type: string; minimum: number; }; response_requested: { title: string; $comment: string; type: string; enum: string[]; }; }; patternProperties: { '^x-[A-Za-z0-9_]*$': { type: string; }; }; minProperties: number; additionalProperties: boolean; }; actuator: { title: string; type: string; patternProperties: { '^x-[A-Za-z0-9_]*$': { type: string; }; }; minProperties: number; additionalProperties: boolean; }; command_id: { title: string; type: string; }; }; required: string[]; additionalProperties: boolean; }; //# sourceMappingURL=contentCommand.schema.d.ts.map