Variable descriptorMapItemSchemaConst

descriptorMapItemSchema: {
    additionalProperties: false;
    properties: {
        format: {
            type: "string";
        };
        id: {
            type: "string";
        };
        path: {
            type: "string";
        };
        path_nested: {
            type: "object";
        };
    };
    required: readonly ["id", "format", "path"];
    type: "object";
} = ...

Type declaration

  • Readonly additionalProperties: false
  • Readonly properties: {
        format: {
            type: "string";
        };
        id: {
            type: "string";
        };
        path: {
            type: "string";
        };
        path_nested: {
            type: "object";
        };
    }
    • Readonly format: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly id: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly path: {
          type: "string";
      }
      • Readonly type: "string"
    • Readonly path_nested: {
          type: "object";
      }
      • Readonly type: "object"
  • Readonly required: readonly ["id", "format", "path"]
  • Readonly type: "object"